----------------------------------- -- ID: 5485 -- Beastmaster Die -- Teaches the job ability Beast Roll ----------------------------------- ---@type TItem local itemObject = {} itemObject.onItemCheck = function(target, item, caster) return target:canLearnAbility(xi.jobAbility.BEAST_ROLL) end itemObject.onItemUse = function(target) target:addLearnedAbility(xi.jobAbility.BEAST_ROLL) end return itemObject