19 lines
609 B
Lua
19 lines
609 B
Lua
-----------------------------------
|
|
-- Ability: Majesty
|
|
-- Description: Increases Cure potency and reduces Cure recast time. Additionally, causes Cure and Protect spells to affect party members in area of effect.
|
|
-- Obtained: PLD Level 70
|
|
-- Recast Time: 00:01:00
|
|
-- Duration: 00:03: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.paladin.useMajesty(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|