19 lines
605 B
Lua
19 lines
605 B
Lua
-----------------------------------
|
|
-- Ability: Familiar
|
|
-- Enhances your pet's powers and increases the duration of Charm.
|
|
-- Obtained: Beastmaster Level 1
|
|
-- Recast Time: 1:00:00
|
|
-- Duration: 0:30:00
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.checkFamiliar(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
|
return xi.job_utils.beastmaster.useFamiliar(player, target, ability, action)
|
|
end
|
|
|
|
return abilityObject
|