17 lines
420 B
Lua
17 lines
420 B
Lua
-----------------------------------
|
|
-- ID: 5498
|
|
-- Casters Die
|
|
-- Teaches the job ability Casters Roll
|
|
-----------------------------------
|
|
---@type TItem
|
|
local itemObject = {}
|
|
|
|
itemObject.onItemCheck = function(target, item, caster)
|
|
return target:canLearnAbility(xi.jobAbility.CASTERS_ROLL)
|
|
end
|
|
|
|
itemObject.onItemUse = function(target)
|
|
target:addLearnedAbility(xi.jobAbility.CASTERS_ROLL)
|
|
end
|
|
|
|
return itemObject
|