19 lines
526 B
Lua
19 lines
526 B
Lua
-----------------------------------
|
|
-- Ability: Spontaneity
|
|
-- Reduces casting time for the next magic spell the target casts.
|
|
-- Obtained: Red Mage Level 95
|
|
-- Recast Time: 10:00
|
|
-- Duration: 1:00
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return 0, 0
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.red_mage.useSpontaneity(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|