17 lines
418 B
Lua
17 lines
418 B
Lua
-----------------------------------
|
|
-- 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
|