33 lines
1,004 B
Lua
33 lines
1,004 B
Lua
-----------------------------------
|
|
-- Ability: Ebullience
|
|
-- Enhances the potency of your next black magic spell.
|
|
-- Obtained: Scholar Level 55
|
|
-- Recast Time: Stratagem Charge
|
|
-- Duration: 1 black magic spell or 60 seconds, whichever occurs first
|
|
--
|
|
-- Level |Charges |Recharge Time per Charge
|
|
-- ----- -------- ---------------
|
|
-- 10 |1 |4:00 minutes
|
|
-- 30 |2 |2:00 minutes
|
|
-- 50 |3 |1:20 minutes
|
|
-- 70 |4 |1:00 minute
|
|
-- 90 |5 |48 seconds
|
|
-----------------------------------
|
|
---@type TAbility
|
|
local abilityObject = {}
|
|
|
|
abilityObject.onAbilityCheck = function(player, target, ability)
|
|
if player:hasStatusEffect(xi.effect.EBULLIENCE) then
|
|
return xi.msg.basic.EFFECT_ALREADY_ACTIVE, 0
|
|
end
|
|
|
|
return 0, 0
|
|
end
|
|
|
|
abilityObject.onUseAbility = function(player, target, ability)
|
|
player:addStatusEffect(xi.effect.EBULLIENCE, { power = 1, duration = 60, origin = player })
|
|
|
|
return xi.effect.EBULLIENCE
|
|
end
|
|
|
|
return abilityObject
|