19 lines
608 B
Lua
19 lines
608 B
Lua
-----------------------------------
|
|
-- Ability: Unleash
|
|
-- Description: Increases the accuracy of Charm and reduces the recast times of Sic and Ready.
|
|
-- Obtained: BST Level 96
|
|
-- Recast Time: 01:00:00
|
|
-- Duration: 0:01:00
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.checkUnleash(player, target, ability)
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.beastmaster.useUnleash(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|