You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.8 KiB
65 lines
1.8 KiB
|
4 years ago
|
-------------------------------------------------------------------------------
|
||
|
|
-- Module Declaration
|
||
|
|
--
|
||
|
|
|
||
|
|
local mod, CL = BigWigs:NewBoss("Ammunae", 644, 128)
|
||
|
|
if not mod then return end
|
||
|
|
mod:RegisterEnableMob(39731)
|
||
|
|
mod.engageId = 1074
|
||
|
|
mod.respawnTime = 30
|
||
|
|
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
-- Initialization
|
||
|
|
--
|
||
|
|
|
||
|
|
function mod:GetOptions()
|
||
|
|
return {
|
||
|
|
76043, -- Wither
|
||
|
|
80968, -- Consume Life Energy
|
||
|
|
75790, -- Rampant Growth
|
||
|
|
}
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:OnBossEnable()
|
||
|
|
self:Log("SPELL_CAST_START", "Wither", 76043)
|
||
|
|
self:Log("SPELL_AURA_APPLIED", "WitherApplied", 76043)
|
||
|
|
self:Log("SPELL_AURA_REMOVED", "WitherRemoved", 76043)
|
||
|
|
|
||
|
|
self:Log("SPELL_AURA_APPLIED", "ConsumeLifeEnergy", 80968)
|
||
|
|
self:Log("SPELL_AURA_REMOVED", "ConsumeLifeEnergyOver", 80968)
|
||
|
|
|
||
|
|
self:Log("SPELL_CAST_START", "RampantGrowth", 75790)
|
||
|
|
end
|
||
|
|
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
-- Event Handlers
|
||
|
|
--
|
||
|
|
|
||
|
|
function mod:Wither(args)
|
||
|
|
self:MessageOld(args.spellId, "red", self:Interrupter() and "alarm", CL.casting:format(args.spellName))
|
||
|
|
self:CDBar(args.spellId, 19)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:WitherApplied(args)
|
||
|
|
self:TargetMessageOld(args.spellId, args.destName, "orange", "alert", nil, nil, self:Dispeller("magic"))
|
||
|
|
self:TargetBar(args.spellId, 10, args.destName)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:WitherRemoved(args)
|
||
|
|
self:StopBar(args.spellName, args.destName)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:ConsumeLifeEnergy(args)
|
||
|
|
self:TargetMessageOld(args.spellId, args.destName, "yellow", "long", nil, nil, self:Healer())
|
||
|
|
self:TargetBar(args.spellId, 4, args.destName)
|
||
|
|
self:CDBar(args.spellId, 20)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:ConsumeLifeEnergyOver(args)
|
||
|
|
self:StopBar(args.spellName, args.destName)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:RampantGrowth(args)
|
||
|
|
self:MessageOld(args.spellId, "yellow", "info", CL.casting:format(args.spellName))
|
||
|
|
end
|