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.
40 lines
999 B
40 lines
999 B
|
|
--------------------------------------------------------------------------------
|
|
-- Module declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Mennu the Betrayer", 547, 570)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(17941)
|
|
-- mod.engageId = 1939 -- no boss frames
|
|
-- mod.respawnTime = 0 -- resets, doesn't respawn
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
34980, -- Mennu's Healing Ward
|
|
31991, -- Corrupted Nova Totem
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_SUMMON", "HealingWard", 34980)
|
|
self:Log("SPELL_SUMMON", "CorruptedNovaTotem", 31991)
|
|
|
|
self:Death("Win", 17941)
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:HealingWard(args)
|
|
self:MessageOld(args.spellId, "orange")
|
|
end
|
|
|
|
function mod:CorruptedNovaTotem(args)
|
|
self:MessageOld(args.spellId, "yellow")
|
|
end
|
|
|