landsandboat/scripts/items/scroll_of_foe_sirvente.lua

17 lines
415 B
Lua

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