local mod = DBM:NewMod("Taerar", "DBM-Azeroth") local L = mod:GetLocalizedStrings() mod:SetRevision("20220116041753") mod:SetCreatureID(14890)--121911 TW ID, 14890 classic ID --mod:SetModelID(17887) mod:EnableWBEngageSync()--Enable syncing engage in outdoors mod:RegisterCombat("combat_yell", L.Pull) mod:RegisterEventsInCombat( -- "SPELL_CAST_START 24818 243401", "SPELL_CAST_SUCCESS 24814 24813", "SPELL_AURA_APPLIED 24818", "SPELL_AURA_APPLIED_DOSE 24818" ) --TODO, maybe taunt special warnings for classic version when it matters more. --TODO, needs valid spellIds for classic local warnNoxiousBreath = mod:NewStackAnnounce(24818, 2, nil, "Tank", 2) --local warningBellowingRoar = mod:NewSpellAnnounce(243661, 3) local specWarnSleepingFog = mod:NewSpecialWarningDodge(24814, nil, nil, nil, 2, 2) --local timerNoxiousBreathCD = mod:NewCDTimer(19.4, 24818, nil, "Tank", nil, 5, nil, DBM_COMMON_L.TANK_ICON)--Iffy local timerSleepingFogCD = mod:NewCDTimer(21.9, 24814, nil, nil, nil, 3) --local timerBellowingRoarCD = mod:NewCDTimer(7.2, 243661, nil, nil, nil, 2) --mod:AddReadyCheckOption(48620, false) function mod:OnCombatStart(delay, yellTriggered) if yellTriggered then --timerBellowingRoarCD:Start(10.5-delay) --timerNoxiousBreathCD:Start(14.3-delay) timerSleepingFogCD:Start(21.5-delay) end end --[[ function mod:SPELL_CAST_START(args) if args.spellId == 243661 and self:AntiSpam(3, 1) then warningBellowingRoar:Show() timerBellowingRoarCD:Start() elseif args.spellId == 24818 and self:AntiSpam(3, 2) then timerNoxiousBreathCD:Start() end end --]] do local SleepingFog, NoxiousBreath = DBM:GetSpellInfo(24814), DBM:GetSpellInfo(24818) function mod:SPELL_CAST_SUCCESS(args) --if args.spellId == 24814 or args.spellId == 24813 then if args.spellName == SleepingFog then specWarnSleepingFog:Show() specWarnSleepingFog:Play("watchstep") timerSleepingFogCD:Start() --elseif args.spellId == 24818 and self:AntiSpam(3, 1) then --elseif args.spellName == NoxiousBreath and self:AntiSpam(3, 1) then --timerNoxiousBreathCD end end function mod:SPELL_AURA_APPLIED(args) --if args.spellId == 24818 then if args.spellName == NoxiousBreath then if self:IsTanking(nil, nil, args.destName, nil, args.sourceGUID) then--Basically, HAS to be bosses current target local amount = args.amount or 1 warnNoxiousBreath:Show(args.destName, amount) end end end mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED end