landsandboat/scripts/items/scroll_of_light_carol_ii.lua

17 lines
423 B
Lua

-----------------------------------
-- ID: 5060
-- Scroll of Light Carol II
-- Teaches the song Light Carol II
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnSpell(xi.magic.spell.LIGHT_CAROL_II)
end
itemObject.onItemUse = function(target)
target:addSpell(xi.magic.spell.LIGHT_CAROL_II)
end
return itemObject