bdd-creature/classes/dataholders/statholder.lua
2024-08-02 09:06:50 +02:00

17 lines
No EOL
408 B
Lua

local StatHolder = Object:extend()
function StatHolder:new(key, datas)
self.key = key
self.datas = datas
self.commands = {}
end
function StatHolder:applyCommand(command, args)
self.commands[command] = args
end
function StatHolder:reduce(level)
return self.commands.base + ((self.commands.lvl or 0) * level) + (self.commands.add or 0) + (self.commands.bonus or 0)
end
return StatHolder