landsandboat/scripts/items/bottle_of_hi-ether_drops.lua

22 lines
566 B
Lua

-----------------------------------
-- ID: 5358
-- Item: Hi-Ether Drop
-- Item Effect: Restores 45 MP
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
if target:hasStatusEffect(xi.effect.MEDICINE) then
return xi.msg.basic.ITEM_NO_USE_MEDICATED
end
return 0
end
itemObject.onItemUse = function(target, user)
target:addMP(45 * xi.settings.main.ITEM_POWER)
target:addStatusEffect(xi.effect.MEDICINE, { duration = 300, origin = user })
end
return itemObject