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