From e7277fe33ac1f9847ede944e709c0adf0800e255 Mon Sep 17 00:00:00 2001 From: Zidras <10605951+Zidras@users.noreply.github.com> Date: Tue, 6 Feb 2024 18:13:17 +0000 Subject: [PATCH] BWL-Broodlord: adjust Black Wave initial timer --- DBM-BWL/Broodlord.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DBM-BWL/Broodlord.lua b/DBM-BWL/Broodlord.lua index a9e47a00..41f9584c 100644 --- a/DBM-BWL/Broodlord.lua +++ b/DBM-BWL/Broodlord.lua @@ -1,7 +1,7 @@ local mod = DBM:NewMod("Broodlord", "DBM-BWL", 1) local L = mod:GetLocalizedStrings() -mod:SetRevision("20240204192134") +mod:SetRevision("20240206181240") mod:SetCreatureID(12017) mod:SetModelID(14308) @@ -19,12 +19,12 @@ local warnBlastWave = mod:NewSpellAnnounce(23331, 2) local warnKnockAway = mod:NewSpellAnnounce(18670, 3) local warnMortal = mod:NewTargetNoFilterAnnounce(24573, 2, nil, "Tank|Healer", 4) -local timerBlastWaveCD = mod:NewCDTimer(8.2, 23331, nil, nil, nil, 2, nil, nil, true) -- ~4s variance [8.20-12.53]. Added "keep" arg. (25m Onyxia [2024-02-03]@[22:41:24]) - "Blast Wave-23331-npc:12017-135 = pull:28.34, 11.30, 10.76, 8.39, 9.12, 8.20, 12.53, 10.57, 10.51, 12.82, 12.24, 8.67, 12.19" -local timerKnockAwayCD = mod:NewCDTimer(21.68, 18670, nil, nil, nil, 3, nil, nil, true) -- ~13s variance [21.68-34.93]. Added "keep" arg. (25m Onyxia [2024-02-03]@[22:41:24]) - "Knock Away-25778-npc:12017-135 = pull:26.83, 24.87, 21.68, 28.09, 24.92, 34.93" +local timerBlastWaveCD = mod:NewCDTimer(8.2, 23331, nil, nil, nil, 2, nil, nil, true) -- ~7s variance [8.20-15.27]. Added "keep" arg. (25m Onyxia: [2024-02-03]@[22:41:24] || [2024-02-04]@[19:03:58]) - "Blast Wave-23331-npc:12017-135 = pull:28.34, 11.30, 10.76, 8.39, 9.12, 8.20, 12.53, 10.57, 10.51, 12.82, 12.24, 8.67, 12.19" || "Blast Wave-23331-npc:12017-135 = pull:24.91, 13.00, 8.95, 15.27, 11.03, 13.03 +local timerKnockAwayCD = mod:NewCDTimer(21.68, 18670, nil, nil, nil, 3, nil, nil, true) -- ~13s variance [21.68-34.93]. Added "keep" arg. (25m Onyxia: [2024-02-03]@[22:41:24] || [2024-02-04]@[19:03:58]) - "Knock Away-25778-npc:12017-135 = pull:26.83, 24.87, 21.68, 28.09, 24.92, 34.93" || "Knock Away-25778-npc:12017-135 = pull:27.26, 23.44, 24.25 local timerMortal = mod:NewTargetTimer(5, 24573, nil, "Tank|Healer", 4, 5, nil, DBM_COMMON_L.TANK_ICON) function mod:OnCombatStart(delay) - timerBlastWaveCD:Start(28.34-delay) + timerBlastWaveCD:Start(24.9-delay) timerKnockAwayCD:Start(26.83-delay) end