17 lines
416 B
Lua
17 lines
416 B
Lua
-----------------------------------
|
|
-- ID: 5482
|
|
-- Thief Die
|
|
-- Teaches the job ability Rogue's Roll
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return target:canLearnAbility(xi.jobAbility.ROGUES_ROLL)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addLearnedAbility(xi.jobAbility.ROGUES_ROLL)
|
|
end
|
|
|
|
return itemObject
|