Skip to content

Commit

Permalink
BWL-drakes: Shadow Flame timer fixed to 20s
Browse files Browse the repository at this point in the history
08/02/2024 Warmane Changelog: Fixed Shadow Flame timer - 20 seconds.
  • Loading branch information
Zidras committed Feb 9, 2024
1 parent 4c6b53b commit 74634ad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions DBM-BWL/Ebonroc.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local mod = DBM:NewMod("Ebonroc", "DBM-BWL", 1)
local L = mod:GetLocalizedStrings()

mod:SetRevision("20240206215708")
mod:SetRevision("20240209130416")
mod:SetCreatureID(14601)
mod:SetModelID(6377)
mod:RegisterCombat("combat")
Expand All @@ -21,11 +21,11 @@ local specWarnShadowYou = mod:NewSpecialWarningYou(23340, nil, nil, nil, 1, 2)
local specWarnShadow = mod:NewSpecialWarningTaunt(23340, nil, nil, nil, 1, 2)

local timerWingBuffet = mod:NewNextTimer(30, 23339, nil, nil, nil, 2) -- Fixed timer. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Wing Buffet-23339-npc:14601-356 = pull:29.98, 30.03
local timerShadowFlameCD= mod:NewCDTimer(14, 22539, nil, false, nil, 5, nil, nil, true) -- ~5s variance [14.02-19.44]. Added "keep" arg. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Shadow Flame-22539-npc:14601-356 = pull:13.31, 19.44, 17.96, 14.02, 16.53
local timerShadowFlameCD= mod:NewNextTimer(20, 22539, nil, false, nil, 5) -- 08/02/2024 Warmane Changelog: Fixed Shadow Flame timer for Ebonroc. 20 seconds. Obsolete log parse will be kept for history: ~5s variance [14.02-19.44]. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Shadow Flame-22539-npc:14601-356 = pull:13.31, 19.44, 17.96, 14.02, 16.53
local timerShadow = mod:NewTargetTimer(8, 23340, nil, "Tank|Healer", 2, 5, nil, DBM_COMMON_L.TANK_ICON)

function mod:OnCombatStart(delay)
timerShadowFlameCD:Start(13.31-delay)
timerShadowFlameCD:Start(-delay)
timerWingBuffet:Start(-delay)
end

Expand Down
6 changes: 3 additions & 3 deletions DBM-BWL/Firemaw.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local mod = DBM:NewMod("Firemaw", "DBM-BWL", 1)
local L = mod:GetLocalizedStrings()

mod:SetRevision("20240206215210")
mod:SetRevision("20240209130416")
mod:SetCreatureID(11983)
mod:SetModelID(6377)
mod:RegisterCombat("combat")
Expand All @@ -17,10 +17,10 @@ local warnShadowFlame = mod:NewCastAnnounce(22539, 2)
local warnFlameBuffet = mod:NewStackAnnounce(23341, 3)

local timerWingBuffet = mod:NewNextTimer(30, 23339, nil, nil, nil, 2) -- Fixed timer. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Wing Buffet-23339-npc:11983-134 = pull:29.97, 30.03, 30.02, 30.02
local timerShadowFlameCD = mod:NewCDTimer(12.68, 22539, nil, false, nil, 5, nil, nil, true) -- ~4s variance [12.68-16.58]. Added "keep" arg. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Shadow Flame-22539-npc:11983-134 = pull:16.71, 16.58, 15.07, 15.49, 14.93, 16.38, 12.68
local timerShadowFlameCD = mod:NewNextTimer(20, 22539, nil, false, nil, 5) -- 08/02/2024 Warmane Changelog: Fixed Shadow Flame timer for Firemaw. 20 seconds. Obsolete log parse will be kept for history: ~4s variance [12.68-16.58]. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Shadow Flame-22539-npc:11983-134 = pull:16.71, 16.58, 15.07, 15.49, 14.93, 16.38, 12.68

function mod:OnCombatStart(delay)
timerShadowFlameCD:Start(16.7-delay)
timerShadowFlameCD:Start(-delay)
timerWingBuffet:Start(-delay)
end

Expand Down
6 changes: 3 additions & 3 deletions DBM-BWL/Flamegor.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local mod = DBM:NewMod("Flamegor", "DBM-BWL", 1)
local L = mod:GetLocalizedStrings()

mod:SetRevision("20240206220120")
mod:SetRevision("20240209130416")
mod:SetCreatureID(11981)
mod:SetModelID(6377)
mod:RegisterCombat("combat")
Expand All @@ -21,11 +21,11 @@ local warnFrenzy = mod:NewSpellAnnounce(23342, 3, nil, "Tank|RemoveEnrage|Heal
local specWarnFrenzy = mod:NewSpecialWarningDispel(23342, "RemoveEnrage", nil, nil, 1, 6)

local timerWingBuffet = mod:NewNextTimer(30, 23339, nil, nil, nil, 2) -- Fixed timer. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Wing Buffet-23339-npc:11981-357 = pull:31.79, 30.02"
local timerShadowFlameCD = mod:NewCDTimer(12.55, 22539, nil, false, nil, 5, nil, nil, true) -- ~5s variance [12.55-17.44]. Added "keep" arg. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Shadow Flame-22539-npc:11981-357 = pull:17.22, 12.55, 17.03, 17.74"
local timerShadowFlameCD = mod:NewNextTimer(20, 22539, nil, false, nil, 5) -- 08/02/2024 Warmane Changelog: Fixed Shadow Flame timer for Flamegor. 20 seconds. Obsolete log parse will be kept for history: ~5s variance [12.55-17.44]. (25m Onyxia: [2024-02-04]@[19:03:58]) - "Shadow Flame-22539-npc:11981-357 = pull:17.22, 12.55, 17.03, 17.74"
local timerFrenzy = mod:NewBuffActiveTimer(10, 23342, nil, "Tank|RemoveEnrage|Healer", 4, 5, nil, DBM_COMMON_L.ENRAGE_ICON)

function mod:OnCombatStart(delay)
timerShadowFlameCD:Start(17.22-delay)
timerShadowFlameCD:Start(-delay)
timerWingBuffet:Start(31.79-delay)
end

Expand Down

0 comments on commit 74634ad

Please sign in to comment.