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.
67 lines
1.7 KiB
67 lines
1.7 KiB
|
|
--------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Gug'rokk", 1175, 889)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(74790)
|
|
mod.engageId = 1654
|
|
mod.respawnTime = 30
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Locals
|
|
--
|
|
|
|
local blastCount = 0
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
150776, -- Magma Eruption
|
|
150755, -- Unstable Slag
|
|
150677, -- Molten Blast
|
|
150678, -- Molten Core
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_START", "MagmaEruption", 150776)
|
|
self:Log("SPELL_CAST_START", "UnstableSlag", 150755)
|
|
self:Log("SPELL_CAST_START", "MoltenBlast", 150677)
|
|
self:Log("SPELL_AURA_APPLIED", "MoltenCore", 150678)
|
|
self:Log("SPELL_AURA_APPLIED_DOSE", "MoltenCore", 150678)
|
|
end
|
|
|
|
function mod:OnEngage()
|
|
blastCount = 0
|
|
self:CDBar(150755, 20) -- Summon Unstable Slag
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:MagmaEruption(args)
|
|
self:MessageOld(args.spellId, "orange", "info")
|
|
self:CDBar(args.spellId, 20) -- 20-21
|
|
end
|
|
|
|
function mod:UnstableSlag(args)
|
|
self:MessageOld(args.spellId, "red", "warning")
|
|
self:CDBar(args.spellId, 21)
|
|
end
|
|
|
|
function mod:MoltenBlast(args)
|
|
blastCount = blastCount + 1
|
|
self:MessageOld(args.spellId, "yellow", "long", CL.count:format(args.spellName, blastCount))
|
|
end
|
|
|
|
function mod:MoltenCore(args)
|
|
if self:MobId(args.destGUID) == 74790 then -- Filter spell steal
|
|
self:StackMessage(args.spellId, args.destName, args.amount, "yellow")
|
|
end
|
|
end
|
|
|