19 lines
573 B
Lua
19 lines
573 B
Lua
-----------------------------------
|
|
-- Ability: Heel
|
|
-- Commands the pet to cease attacking and return to you.
|
|
-- Obtained: Beastmaster Level 10
|
|
-- Recast Time: 5 seconds
|
|
-- Duration: N/A
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.checkPetCommand(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.useHeel(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|