landsandboat/scripts/actions/abilities/shadowbind.lua

20 lines
550 B
Lua
Raw Permalink Normal View History

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
-----------------------------------
---@type TAbility
local abilityObject = {}
2015-04-24 16:13:06 +08:00
abilityObject.onAbilityCheck = function(player, target, ability)
return xi.job_utils.ranger.checkShadowbind(player, target, ability)
end
2015-04-24 16:13:06 +08:00
abilityObject.onUseAbility = function(player, target, ability, action)
return xi.job_utils.ranger.useShadowbind(player, target, ability, action)
end
2021-01-17 10:31:48 -05:00
return abilityObject