18 lines
524 B
Lua
18 lines
524 B
Lua
-----------------------------------
|
|
-- Ability: Leave
|
|
-- Sets your pet free.
|
|
-- Obtained: Beastmaster Level 35
|
|
-- Recast Time: 10 seconds
|
|
-----------------------------------
|
|
---@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.useLeave(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|