landsandboat/scripts/items/scroll_of_fire_carol_ii.lua

17 lines
419 B
Lua

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