landsandboat/scripts/actions/abilities/deep_breathing.lua
2026-02-24 09:02:57 +01:00

19 lines
643 B
Lua

-----------------------------------
-- Ability: Deep Breathing
-- Enhances the effect of next breath used by wyvern.
-- Obtained: Dragoon Level 75
-- Recast Time: 5 minutes
-- Duration: 0:03:00 or until the next breath is executed
-----------------------------------
---@type TAbility
local abilityObject = {}
abilityObject.onAbilityCheck = function(player, target, ability)
return xi.job_utils.dragoon.abilityCheckDeepBreathing(player, target, ability)
end
abilityObject.onUseAbility = function(player, target, ability, action)
return xi.job_utils.dragoon.useDeepBreathing(player, target, ability, action)
end
return abilityObject