2016-01-16 01:26:33 -05:00
|
|
|
-----------------------------------
|
|
|
|
|
-- Ability: Hide
|
|
|
|
|
-- User becomes invisible.
|
|
|
|
|
-- Obtained: Thief Level 45
|
|
|
|
|
-- Recast Time: 5:00
|
|
|
|
|
-- Duration: Random
|
|
|
|
|
-----------------------------------
|
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)
|
2020-07-27 19:35:52 -07:00
|
|
|
return 0, 0
|
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)
|
2025-10-26 04:16:05 -06:00
|
|
|
return xi.job_utils.thief.useHide(player, target, ability)
|
2020-03-19 18:41:42 -07:00
|
|
|
end
|
2021-01-17 10:31:48 -05:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
return abilityObject
|