landsandboat/scripts/items/twilight_cloak.lua

20 lines
508 B
Lua

-----------------------------------
-- ID: 11363
-- Equip: Twilight Cloak
-- Able to cast "Impact"
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
end
itemObject.onItemEquip = function(target, item)
target:addSpell(xi.magic.spell.IMPACT, { silentLog = true, saveToDB = false })
end
itemObject.onItemUnequip = function(target, item)
target:delSpell(xi.magic.spell.IMPACT, { saveToDB = false })
end
return itemObject