2016-01-16 01:26:33 -05:00
|
|
|
-----------------------------------
|
|
|
|
|
-- Ability: Diffusion
|
|
|
|
|
-- Grants the effect of your next support Blue Magic spell to party members within range.
|
|
|
|
|
-- Obtained: Blue Mage Level 75
|
|
|
|
|
-- Recast Time: 10:00
|
|
|
|
|
-- Duration: 1:00, or until the next blue magic spell is cast.
|
|
|
|
|
-----------------------------------
|
2024-08-25 10:24:42 -04:00
|
|
|
---@type TAbility
|
2022-10-06 17:14:01 +03:00
|
|
|
local abilityObject = {}
|
2016-01-16 01:26:33 -05:00
|
|
|
|
2022-10-06 17:14:01 +03:00
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
2024-06-13 20:54:02 +03:00
|
|
|
xi.job_utils.blue_mage.checkDiffusion(player, target, ability)
|
2018-08-07 19:36:44 -04:00
|
|
|
end
|
2016-01-16 01:26:33 -05:00
|
|
|
|
2024-06-13 20:54:02 +03:00
|
|
|
abilityObject.onUseAbility = function(player, target, ability, action)
|
2025-10-26 04:16:05 -06:00
|
|
|
return xi.job_utils.blue_mage.useDiffusion(player, target, ability, action)
|
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
|