19 lines
563 B
Lua
19 lines
563 B
Lua
-----------------------------------
|
|
-- Ability: Ancient Circle
|
|
-- Grants resistance, defense, and attack against dragons to party members within the area of effect.
|
|
-- Obtained: Dragoon Level 5
|
|
-- Recast Time: 5:00
|
|
-- Duration: 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.dragoon.useAncientCircle(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|