22 lines
748 B
Lua
22 lines
748 B
Lua
-----------------------------------
|
|
-- Ability: Angon
|
|
-- Expends an Angon to lower an enemy's defense.
|
|
-- Obtained: Dragoon Level 75
|
|
-- Recast Time: 0:03:00
|
|
-- Duration: 0:00:30 (+0:00:15 for each merit, cap is 0:01:30)
|
|
-- Effect: Physical defense of target approximately -20% (51/256).
|
|
-- Range: 10.0 yalms
|
|
-- Notes: Only fails if it can't apply the def down status.
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.dragoon.abilityCheckAngon(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.dragoon.useAngon(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|