19 lines
521 B
Lua
19 lines
521 B
Lua
-----------------------------------
|
|
-- Ability: Fealty
|
|
-- Grants a powerful resistance to enfeebling magic.
|
|
-- Obtained: Paladin Level 75
|
|
-- Recast Time: 0:10:00
|
|
-- Duration: 0:01:00
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return 0, 0
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
|
return xi.job_utils.paladin.useFealty(player, target, ability, action)
|
|
end
|
|
|
|
return abilityObject
|