landsandboat/scripts/items/scroll_of_foe_requiem_v.lua

17 lines
419 B
Lua

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