landsandboat/scripts/items/trick_staff_ii.lua

17 lines
342 B
Lua

-----------------------------------
-- ID: 17587
-- Trick Staff II
-- Transports the user to their Home Point
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return 0
end
itemObject.onItemUse = function(target)
target:warp()
end
return itemObject