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.
142 lines
4.6 KiB
142 lines
4.6 KiB
local mod = DBM:NewMod(2511, "DBM-Party-Dragonflight", 8, 1204)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20230508023108")
|
|
mod:SetCreatureID(189729)
|
|
mod:SetEncounterID(2618)
|
|
--mod:SetUsedIcons(1, 2, 3)
|
|
mod:SetHotfixNoticeRev(20230507000000)
|
|
--mod:SetMinSyncRevision(20211203000000)
|
|
--mod.respawnTime = 29
|
|
mod.sendMainBossGUID = true
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 387504 387571 388424 387559",
|
|
"SPELL_AURA_APPLIED 387585",
|
|
-- "SPELL_AURA_APPLIED_DOSE",
|
|
"SPELL_AURA_REMOVED 387585"
|
|
-- "SPELL_PERIODIC_DAMAGE",
|
|
-- "SPELL_PERIODIC_MISSED",
|
|
-- "UNIT_SPELLCAST_SUCCEEDED boss1"
|
|
)
|
|
|
|
--TODO: Warn Undertow? It's only used if tank is messing up
|
|
--[[
|
|
(ability.id = 387504 or ability.id = 387571 or ability.id = 388424 or ability.id = 387559) and type = "begincast"
|
|
or ability.id = 387585
|
|
or type = "dungeonencounterstart" or type = "dungeonencounterend"
|
|
--]]
|
|
--Stage One: Violent Swells
|
|
mod:AddTimerLine(DBM:EJ_GetSectionInfo(25529))
|
|
local warnFocusedDeluge = mod:NewCastAnnounce(387571, 3)--On for everyone, since there will likely be many slow tanks in pugs
|
|
local warnInfusedGlobule = mod:NewCountAnnounce(387474, 2)
|
|
local warnTempestsFury = mod:NewCountAnnounce(388424, 3)
|
|
|
|
local specWarnSquallBuffet = mod:NewSpecialWarningYou(387504, nil, nil, nil, 1, 2)
|
|
--local yellInfusedStrikes = mod:NewYell(361966)
|
|
--local specWarnGTFO = mod:NewSpecialWarningGTFO(340324, nil, nil, nil, 1, 8)
|
|
|
|
local timerSquallBuffetCD = mod:NewCDTimer(35, 387504, DBM_COMMON_L.TANKCOMBO, "Tank|Healer", nil, 5, nil, DBM_COMMON_L.TANK_ICON)--Squall Buffet/Focused Deluge tank combo
|
|
local timerInfusedGlobuleCD = mod:NewCDCountTimer(17.5, 387474, nil, nil, nil, 3)
|
|
local timerTempestsFuryCD = mod:NewCDCountTimer(31, 388424, nil, nil, nil, 2)
|
|
|
|
--Stage Two: Infused Waters
|
|
mod:AddTimerLine(DBM:EJ_GetSectionInfo(25531))
|
|
local warnSubmerged = mod:NewSpellAnnounce(387585, 2)
|
|
local warnSubmergedEnded = mod:NewEndAnnounce(387585, 2)
|
|
|
|
local timerSubmergedCD = mod:NewCDTimer(29.9, 387585, nil, nil, nil, 6)
|
|
|
|
--mod:AddRangeFrameOption("8")
|
|
--mod:AddInfoFrameOption(361651, true)
|
|
--mod:AddSetIconOption("SetIconOnStaggeringBarrage", 361018, true, false, {1, 2, 3})
|
|
|
|
mod.vb.GlobCount = 0
|
|
mod.vb.tempestCount = 0
|
|
|
|
function mod:OnCombatStart(delay)
|
|
self:SetStage(1)
|
|
self.vb.GlobCount = 0
|
|
self.vb.tempestCount = 0
|
|
timerTempestsFuryCD:Start(4-delay, 1)
|
|
timerInfusedGlobuleCD:Start(8-delay, 1)
|
|
timerSquallBuffetCD:Start(16-delay)
|
|
timerSubmergedCD:Start(52.1-delay)--Phasing timer
|
|
end
|
|
|
|
--function mod:OnCombatEnd()
|
|
-- if self.Options.RangeFrame then
|
|
-- DBM.RangeCheck:Hide()
|
|
-- end
|
|
-- if self.Options.InfoFrame then
|
|
-- DBM.InfoFrame:Hide()
|
|
-- end
|
|
--end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
local spellId = args.spellId
|
|
if spellId == 387504 then
|
|
if self:IsTanking("player", "boss1", nil, true) then
|
|
specWarnSquallBuffet:Show()
|
|
specWarnSquallBuffet:Play("carefly")
|
|
end
|
|
elseif spellId == 387571 then
|
|
warnFocusedDeluge:Show()
|
|
elseif spellId == 388424 then
|
|
self.vb.tempestCount = self.vb.tempestCount + 1
|
|
warnTempestsFury:Show(self.vb.tempestCount)
|
|
if self.vb.tempestCount == 1 then--Only 2 cast per rotation
|
|
timerTempestsFuryCD:Start(31, 2)
|
|
end
|
|
elseif spellId == 387559 then
|
|
self.vb.GlobCount = self.vb.GlobCount + 1
|
|
warnInfusedGlobule:Show(self.vb.GlobCount)
|
|
if self.vb.GlobCount == 1 then--Only 2 cast per rotation
|
|
timerInfusedGlobuleCD:Start(17.5, 2)
|
|
end
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
local spellId = args.spellId
|
|
if spellId == 387585 and self:GetStage(1) then--Submerged
|
|
self:SetStage(2)
|
|
warnSubmerged:Show()
|
|
timerSquallBuffetCD:Stop()
|
|
timerInfusedGlobuleCD:Stop()
|
|
timerTempestsFuryCD:Stop()
|
|
end
|
|
end
|
|
--mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED
|
|
|
|
function mod:SPELL_AURA_REMOVED(args)
|
|
local spellId = args.spellId
|
|
if spellId == 387585 and self:GetStage(2) then--Submerged
|
|
self:SetStage(1)
|
|
self.vb.GlobCount = 0
|
|
self.vb.tempestCount = 0
|
|
warnSubmerged:Show()
|
|
timerTempestsFuryCD:Start(7, 1)
|
|
timerInfusedGlobuleCD:Start(11, 1)
|
|
timerSquallBuffetCD:Start(19.3)
|
|
timerSubmergedCD:Start(55)--NEED MORE DATA, drycoded
|
|
end
|
|
end
|
|
|
|
--[[
|
|
function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId, spellName)
|
|
if spellId == 340324 and destGUID == UnitGUID("player") and self:AntiSpam(2, 4) then
|
|
specWarnGTFO:Show(spellName)
|
|
specWarnGTFO:Play("watchfeet")
|
|
end
|
|
end
|
|
mod.SPELL_PERIODIC_MISSED = mod.SPELL_PERIODIC_DAMAGE
|
|
|
|
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId)
|
|
if spellId == 353193 then
|
|
|
|
end
|
|
end
|
|
--]]
|
|
|