19 lines
556 B
Lua
19 lines
556 B
Lua
-----------------------------------
|
|
-- Ability: Gauge
|
|
-- Checks to see if an enemy can be charmed.
|
|
-- Obtained: Beastmaster Level 10
|
|
-- Recast Time: 0:30
|
|
-- Duration: Instant
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.checkGauge(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.useGauge(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|