19 lines
607 B
Lua
19 lines
607 B
Lua
-----------------------------------
|
|
-- Ability: Asylum
|
|
-- Description: Grants party members a powerful resistance to enfeebling magic and Dispel effects.
|
|
-- Obtained: WHM Level 96
|
|
-- Recast Time: 01:00:00
|
|
-- Duration: 0:00:30
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.white_mage.checkAsylum(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.white_mage.useAsylum(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|