19 lines
545 B
Lua
19 lines
545 B
Lua
-----------------------------------
|
|
-- Ability: Gelus
|
|
-- Increases resistance against wind and deals ice damage.
|
|
-- Obtained: Rune Fencer Level 5
|
|
-- Recast Time: 0:05
|
|
-- Duration: 5:00
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
return 0, 0
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
|
return xi.job_utils.rune_fencer.useRuneEnchantment(player, target, ability, xi.effect.GELUS)
|
|
end
|
|
|
|
return abilityObject
|