landsandboat/scripts/items/black_mage_die.lua

17 lines
424 B
Lua

-----------------------------------
-- ID: 5480
-- Black Mage Die
-- Teaches the job ability Wizard's Roll
-----------------------------------
---@type TItem
local itemObject = {}
itemObject.onItemCheck = function(target, item, caster)
return target:canLearnAbility(xi.jobAbility.WIZARDS_ROLL)
end
itemObject.onItemUse = function(target)
target:addLearnedAbility(xi.jobAbility.WIZARDS_ROLL)
end
return itemObject