19 lines
643 B
Lua
19 lines
643 B
Lua
-----------------------------------
|
|
-- Ability: Benediction
|
|
-- Restores a large amount of HP and removes (almost) all status ailments for party members within area of effect.
|
|
-- Obtained: White Mage Level 1
|
|
-- Recast Time: 1:00:00
|
|
-- Duration: Instant
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.white_mage.checkBenediction(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.white_mage.useBenediction(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|