landsandboat/scripts/items/custom_top_+1.lua

22 lines
596 B
Lua

-----------------------------------
-- ID: 11274
-- Item: custom top +1
-- Teleport's user to Purgonorgo Isle
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
local result = 0
if not target:hasVisitedZone(xi.zone.BIBIKI_BAY) then
result = xi.msg.basic.ITEM_UNABLE_TO_USE_2
end
return result
end
itemObject.onItemUse = function(target, user)
target:addStatusEffect(xi.effect.TELEPORT, { power = xi.teleport.id.PURGONORGO, duration = 3, origin = user, icon = 0 })
end
return itemObject