landsandboat/scripts/items/ranger_die.lua

17 lines
420 B
Lua

-----------------------------------
-- ID: 5487
-- Ranger Die
-- Teaches the job ability Hunter's Roll
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnAbility(xi.jobAbility.HUNTERS_ROLL)
end
itemObject.onItemUse = function(target)
target:addLearnedAbility(xi.jobAbility.HUNTERS_ROLL)
end
return itemObject