23 lines
570 B
Lua
23 lines
570 B
Lua
-----------------------------------
|
|
-- ID: 21074
|
|
-- Item: Kupo Rod
|
|
-- Enchantment: Moogle Blessing (removes Weakness)
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
if not target:hasStatusEffect(xi.effect.WEAKNESS) then
|
|
return xi.msg.basic.ITEM_UNABLE_TO_USE
|
|
else
|
|
return 0
|
|
end
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
if target:hasStatusEffect(xi.effect.WEAKNESS) then
|
|
target:delStatusEffect(xi.effect.WEAKNESS)
|
|
end
|
|
end
|
|
|
|
return itemObject
|