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
|
|
--------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Millificent Manastorm", 1544, 1688)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(101976)
|
|
mod.engageId = 1847
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Locals
|
|
--
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
201159, -- Delta Finger Laser X-treme
|
|
201240, -- Elementium Squirrel Bomb
|
|
201392, -- Thorium Rocket Chicken
|
|
201572, -- Millificent's Rage
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_AURA_APPLIED", "DeltaFinger", 201159)
|
|
self:Log("SPELL_CAST_SUCCESS", "SquirrelBomb", 201240, 201432) -- normal, overloaded
|
|
self:Log("SPELL_CAST_SUCCESS", "RocketChicken", 201392, 201438) -- normal, reinforced
|
|
self:Log("SPELL_AURA_APPLIED", "MillificentsRage", 201572)
|
|
end
|
|
|
|
function mod:OnEngage()
|
|
self:Bar(201159, 5) -- Delta Finger Laser X-treme
|
|
self:CDBar(201240, 7) -- Elementium Squirrel Bomb
|
|
self:CDBar(201392, 24) -- Thorium Rocket Chicken
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:DeltaFinger(args)
|
|
self:TargetMessageOld(args.spellId, args.destName, "orange")
|
|
self:Bar(args.spellId, 8.5)
|
|
end
|
|
|
|
function mod:SquirrelBomb()
|
|
self:MessageOld(201240, "yellow", "info")
|
|
self:CDBar(201240, 18)
|
|
end
|
|
|
|
function mod:RocketChicken(args)
|
|
self:MessageOld(201392, "red", "alarm")
|
|
self:CDBar(201392, args.spellId == 201438 and 9.7 or 18)
|
|
end
|
|
|
|
function mod:MillificentsRage(args)
|
|
self:MessageOld(args.spellId, "cyan", "warning")
|
|
self:CDBar(201240, 5) -- Overloaded Squirrel Bomb
|
|
self:CDBar(201392, 13.5) -- Reinforced Rocket Chicken
|
|
end
|
|
|