landsandboat/scripts/items/scroll_of_water_carol.lua

17 lines
411 B
Lua

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