landsandboat/scripts/items/scroll_of_sword_madrigal.lua

17 lines
423 B
Lua

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