landsandboat/scripts/items/scroll_of_foe_requiem.lua

17 lines
411 B
Lua

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