landsandboat/scripts/items/scroll_of_magic_finale.lua

17 lines
415 B
Lua

-----------------------------------
-- ID: 5070
-- Scroll of Magic Finale
-- Teaches the song Magic Finale
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.MAGIC_FINALE)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.MAGIC_FINALE)
end
return itemObject