landsandboat/scripts/items/bottle_of_ether_drops.lua

22 lines
563 B
Lua

-----------------------------------
-- ID: 5357
-- Item: Ether Drop
-- Item Effect: Restores 15 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(15 * xi.settings.main.ITEM_POWER)
target:addStatusEffect(xi.effect.MEDICINE, { duration = 300, origin = user })
end
return itemObject