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