29 lines
758 B
Lua
29 lines
758 B
Lua
-----------------------------------
|
|
-- ID: 5433
|
|
-- Item: Dusty Elixir
|
|
-- Item Effect: Instantly restores 25% of HP and MP
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
local result = 0
|
|
local mHP = target:getMaxHP()
|
|
local cHP = target:getHP()
|
|
local mMP = target:getMaxMP()
|
|
local cMP = target:getMP()
|
|
|
|
if mHP == cHP and mMP == cMP then
|
|
result = 56 -- Does not let player use item if their hp and mp are full
|
|
end
|
|
|
|
return result
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addHP(target:getMaxHP() * .25)
|
|
target:addMP(target:getMaxMP() * .25)
|
|
target:messageBasic(xi.msg.basic.RECOVERS_HP_AND_MP)
|
|
end
|
|
|
|
return itemObject
|