19 lines
505 B
Lua
19 lines
505 B
Lua
-----------------------------------
|
|
-- Ability: Sentinel
|
|
-- Reduces physical damage taken and increases enmity.
|
|
-- Obtained: Paladin Level 30
|
|
-- Recast Time: 5:00
|
|
-- Duration: 0:30
|
|
-----------------------------------
|
|
---@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.useSentinel(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|