2016-01-16 01:26:33 -05:00
|
|
|
-----------------------------------
|
|
|
|
|
-- Ability: Shadowbind
|
|
|
|
|
-- Roots enemy in place.
|
|
|
|
|
-- Obtained: Ranger Level 40
|
|
|
|
|
-- Recast Time: 5:00
|
|
|
|
|
-- Duration: 00:30
|
|
|
|
|
-----------------------------------
|
2024-08-25 10:24:42 -04:00
|
|
|
---@type TAbility
|
2022-10-06 17:14:01 +03:00
|
|
|
local abilityObject = {}
|
2015-04-24 16:13:06 +08:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
2024-06-05 18:00:57 +03:00
|
|
|
return xi.job_utils.ranger.checkShadowbind(player, target, ability)
|
2018-08-07 19:36:44 -04:00
|
|
|
end
|
2015-04-24 16:13:06 +08:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
2024-06-05 18:00:57 +03:00
|
|
|
return xi.job_utils.ranger.useShadowbind(player, target, ability, action)
|
2018-08-07 19:36:44 -04:00
|
|
|
end
|
2021-01-17 10:31:48 -05:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
return abilityObject
|