local mod = DBM:NewMod("Loatheb", "DBM-Naxx", 3) local L = mod:GetLocalizedStrings() mod:SetRevision(("$Revision: 2568 $"):sub(12, -3)) mod:SetCreatureID(16011) mod:RegisterCombat("combat") mod:EnableModel() mod:RegisterEvents( "SPELL_CAST_SUCCESS", "SPELL_DAMAGE", "SWING_DAMAGE" ) local warnSporeNow = mod:NewSpellAnnounce(32329, 2) local warnSporeSoon = mod:NewSoonAnnounce(32329, 1) local warnDoomNow = mod:NewSpellAnnounce(29204, 3) local warnHealSoon = mod:NewAnnounce("WarningHealSoon", 4, 48071) local warnHealNow = mod:NewAnnounce("WarningHealNow", 1, 48071, false) local timerSpore = mod:NewNextTimer(36, 32329) local timerDoom = mod:NewNextTimer(180, 29204) local timerAura = mod:NewBuffActiveTimer(17, 55593) mod:AddBoolOption("SporeDamageAlert", false) local doomCounter = 0 local sporeTimer = 36 function mod:OnCombatStart(delay) doomCounter = 0 if mod:IsDifficulty("heroic25") then sporeTimer = 18 else sporeTimer = 36 end timerSpore:Start(sporeTimer - delay) warnSporeSoon:Schedule(sporeTimer - 5 - delay) timerDoom:Start(120 - delay, doomCounter + 1) end function mod:SPELL_CAST_SUCCESS(args) if args:IsSpellID(29234) then timerSpore:Start(sporeTimer) warnSporeNow:Show() warnSporeSoon:Schedule(sporeTimer - 5) elseif args:IsSpellID(29204, 55052) then -- Inevitable Doom doomCounter = doomCounter + 1 local timer = 30 if doomCounter >= 7 then if doomCounter % 2 == 0 then timer = 17 else timer = 12 end end warnDoomNow:Show(doomCounter) timerDoom:Start(timer, doomCounter + 1) elseif args:IsSpellID(55593) then timerAura:Start() warnHealSoon:Schedule(14) warnHealNow:Schedule(17) end end --Spore loser function. Credits to Forte guild and their old discontinued dbm plugins. Sad to see that guild disband, best of luck to them! function mod:SPELL_DAMAGE(args) if self.Options.SporeDamageAlert and args.destName == "Spore" and args.spellId ~= 62124 and self:IsInCombat() then SendChatMessage(args.sourceName..", You are damaging a Spore!!! ("..args.amount.." damage)", "RAID_WARNING") SendChatMessage(args.sourceName..", You are damaging a Spore!!! ("..args.amount.." damage)", "WHISPER", nil, args.sourceName) end end function mod:SWING_DAMAGE(args) if self.Options.SporeDamageAlert and args.destName == "Spore" and self:IsInCombat() then SendChatMessage(args.sourceName..", You are damaging a Spore!!! ("..args.amount.." damage)", "RAID_WARNING") SendChatMessage(args.sourceName..", You are damaging a Spore!!! ("..args.amount.." damage)", "WHISPER", nil, args.sourceName) end end