landsandboat/scripts/items/federation_earring.lua
Rosienaikanaro f633cb8c8b Synergy Waystone Earrings
Adds the 12 synergy waystone earrings, their proper teleport animations, and the correct arrival locations.
2025-01-03 11:58:20 -05:00

17 lines
427 B
Lua

-----------------------------------
-- ID: 16041
-- Federation Earring
-- Enchantment: "Teleport" (Windurst Waters)
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, param, caster)
return 0
end
itemObject.onItemUse = function(target)
target:addStatusEffectEx(xi.effect.TELEPORT, 0, xi.teleport.id.FEDERATION_EARRING, 0, 4)
end
return itemObject