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