19 lines
563 B
Lua
19 lines
563 B
Lua
-----------------------------------
|
|
-- Ability: Tame
|
|
-- Makes target docile and more susceptible to charm.
|
|
-- Obtained: Beastmaster Level 30
|
|
-- Recast Time: 10:00
|
|
-- Duration: Instant
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.checkTame(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.useTame(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|