26 lines
695 B
Lua
26 lines
695 B
Lua
-----------------------------------
|
|
-- ID: 5831
|
|
-- Item: Lucid Elixir II
|
|
-- Item Effect: Restores 75% of HP and MP
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
if
|
|
target:getMaxHP() == target:getHP() and
|
|
target:getMaxMP() == target:getMP()
|
|
then
|
|
return xi.msg.basic.ITEM_UNABLE_TO_USE_2
|
|
end
|
|
|
|
return 0
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addHP(target:getMaxHP() * 0.75 * xi.settings.main.ITEM_POWER)
|
|
target:addMP(target:getMaxMP() * 0.75 * xi.settings.main.ITEM_POWER)
|
|
target:messageBasic(xi.msg.basic.RECOVERS_HP_AND_MP)
|
|
end
|
|
|
|
return itemObject
|