19 lines
601 B
Lua
19 lines
601 B
Lua
-----------------------------------
|
|
-- Ability: Composure
|
|
-- Increases accuracy and lengthens recast time. Enhancement effects gained through white and black magic you cast on yourself last longer.
|
|
-- Obtained: Red Mage Level 50
|
|
-- Recast Time: 5:00
|
|
-- Duration: 120 minutes
|
|
-----------------------------------
|
|
---@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.useComposure(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|