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