19 lines
602 B
Lua
19 lines
602 B
Lua
-----------------------------------
|
|
-- Ability: Snarl
|
|
-- Transfers hate to your pet. Only works on pets invoked with the "Call Beast" ability.
|
|
-- Obtained: Beastmaster Level 45
|
|
-- Recast Time: 30 seconds
|
|
-- Duration: N/A
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.checkSnarl(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.useSnarl(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|