19 lines
484 B
Lua
19 lines
484 B
Lua
-----------------------------------
|
|
-- Ability: Chi Blast
|
|
-- Releases Chi to attack an enemy.
|
|
-- Obtained: Monk Level 41
|
|
-- Recast Time: 3:00
|
|
-- Duration: Instant
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return 0, 0
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
return xi.job_utils.monk.useChiBlast(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|