----------------------------------- -- ID: 4721 -- Scroll of Repose -- Teaches the white magic Repose ----------------------------------- ---@type TItem local itemObject = {} itemObject.onItemCheck = function(target, item, caster) return target:canLearnSpell(xi.magic.spell.REPOSE) end itemObject.onItemUse = function(target) target:addSpell(xi.magic.spell.REPOSE) end return itemObject