19 lines
514 B
Lua
19 lines
514 B
Lua
-----------------------------------
|
|
-- Ability: High Jump
|
|
-- Performs a high jumping attack on enemy.
|
|
-- Obtained: Dragoon Level 35
|
|
-- Recast Time: 2:00
|
|
-- Duration: Instant
|
|
-----------------------------------
|
|
---@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.dragoon.useHighJump(player, target, ability, action)
|
|
end
|
|
|
|
return abilityObject
|