landsandboat/scripts/items/stirge_belt.lua

21 lines
526 B
Lua

-----------------------------------
-- ID: 15933
-- Stirge Belt
-- Enchantment: 60Min, Costume - Bat
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
if not target:canUseMisc(xi.zoneMisc.COSTUME) then
return xi.msg.basic.CANT_BE_USED_IN_AREA
end
return 0
end
itemObject.onItemUse = function(target, user)
target:addStatusEffect(xi.effect.COSTUME, { power = 256, duration = 3600, origin = user })
end
return itemObject