21 lines
514 B
Lua
21 lines
514 B
Lua
-----------------------------------
|
|
-- ID: 4113
|
|
-- Item: Potion +1
|
|
-- Item Effect: Restores 60 HP
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
if target:getHP() == target:getMaxHP() then
|
|
return xi.msg.basic.ITEM_UNABLE_TO_USE
|
|
end
|
|
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:messageBasic(xi.msg.basic.RECOVERS_HP, 0, target:addHP(60 * xi.settings.main.ITEM_POWER))
|
|
end
|
|
|
|
return itemObject
|