landsandboat/scripts/items/scroll_of_blade_madrigal.lua

17 lines
423 B
Lua

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