landsandboat/scripts/items/nomad_cap.lua

21 lines
600 B
Lua
Raw Permalink Normal View History

2021-01-18 12:51:02 -05:00
-----------------------------------
2022-11-02 14:53:01 +01:00
-- ID: 16119
-- Nomad Cap
-- Transports the user to their Home Nation
-- TODO: Confirm wiki claims of random zone destinations among a same nation.
-----------------------------------
require('scripts/globals/teleports')
-----------------------------------
---@type TItem
local itemObject = {}
2016-01-16 01:26:33 -05:00
itemObject.onItemCheck = function(target, item, caster)
return 0
end
2016-01-16 01:26:33 -05:00
2026-02-19 22:48:02 -07:00
itemObject.onItemUse = function(target, user)
target:addStatusEffect(xi.effect.TELEPORT, { power = xi.teleport.id.HOME_NATION, duration = 4, origin = user, icon = 0 })
end
2021-01-17 11:55:03 -05:00
return itemObject