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