2016-01-16 01:26:33 -05:00
|
|
|
-----------------------------------
|
|
|
|
|
-- Ability: Quickstep
|
|
|
|
|
-- Lowers target's evasion. If successful, you will earn two Finishing Moves.
|
|
|
|
|
-- Obtained: Dancer Level 20
|
|
|
|
|
-- TP Required: 10%
|
|
|
|
|
-- Recast Time: 00:05
|
|
|
|
|
-- Duration: First Step lasts 1 minute, each following Step extends its current duration by 30 seconds.
|
|
|
|
|
-----------------------------------
|
2024-08-25 10:24:42 -04:00
|
|
|
---@type TAbility
|
2022-10-06 17:14:01 +03:00
|
|
|
local abilityObject = {}
|
2016-01-16 01:26:33 -05:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
2023-02-17 20:12:07 +01:00
|
|
|
return xi.job_utils.dancer.checkStepAbility(player, target, ability)
|
2018-08-07 19:36:44 -04:00
|
|
|
end
|
2015-04-24 16:13:06 +08:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
2025-11-12 08:31:36 -07:00
|
|
|
return xi.job_utils.dancer.useStepAbility(player, target, ability, action, xi.effect.LETHARGIC_DAZE_1)
|
2018-08-07 19:36:44 -04:00
|
|
|
end
|
2021-01-17 10:31:48 -05:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
return abilityObject
|