19 lines
513 B
Lua
19 lines
513 B
Lua
-----------------------------------
|
|
-- Ability: Mantra
|
|
-- Increases the max. HP of party members within area of effect.
|
|
-- Obtainable: Monk Level 75
|
|
-- Recast Time: 0:10:00
|
|
-- Duration: 0:03:00
|
|
-----------------------------------
|
|
---@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.useMantra(player, target, ability)
|
|
end
|
|
|
|
return abilityObject
|