landsandboat/scripts/items/scroll_of_logical_etude.lua

17 lines
419 B
Lua

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