landsandboat/scripts/actions/abilities/majesty.lua
sruon 2000fdf5e2 Abilities return granted status effect
Co-Authored-By: atom0s <atom0s@users.noreply.github.com>
2025-10-26 04:20:28 -06:00

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