Adds the 12 synergy waystone earrings, their proper teleport animations, and the correct arrival locations.
17 lines
427 B
Lua
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
|