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.

129 lines
4.5 KiB

local mod = DBM:NewMod(2484, "DBM-Party-Dragonflight", 2, 1197)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20240601044955")
mod:SetCreatureID(184124)
mod:SetEncounterID(2557)
mod:SetUsedIcons(1, 2, 3)
--mod:SetHotfixNoticeRev(20220322000000)
--mod:SetMinSyncRevision(20211203000000)
--mod.respawnTime = 29
mod.sendMainBossGUID = true
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_START 372719 372600 372623 372701",
"SPELL_CAST_SUCCESS 372718",
"SPELL_AURA_APPLIED 382071 372718",
"SPELL_AURA_REMOVED 382071 372600",
"UNIT_POWER_UPDATE"
)
--TODO, review current solution is good enough. there are more elaborate ones but they may not be needed for most part except for niche cases.
--[[
(ability.id = 372719 or ability.id = 372600 or ability.id = 372623 or ability.id = 372701) and type = "begincast"
or ability.id = 372718 and type = "cast"
or ability.id = 372600 or ability.id = 372652 and target.id = 184124
or type = "dungeonencounterstart" or type = "dungeonencounterend"
--]]
local warnInexorable = mod:NewSpellAnnounce(372600, 2)
local warnInexorableOver = mod:NewFadesAnnounce(372600, 1)
local warnResonatingOrb = mod:NewTargetNoFilterAnnounce(382071, 3)
local warnEarthenShards = mod:NewTargetNoFilterAnnounce(372718, 3, nil, "Healer")
local specWarnTitanicEmpowerment = mod:NewSpecialWarningSpell(372719, nil, nil, nil, 3, 2)
local specWarnResonatingOrb = mod:NewSpecialWarningYouPos(382071, nil, nil, nil, 1, 2)
local yellResonatingOrb = mod:NewShortPosYell(382071)
local yellResonatingOrbFades = mod:NewIconFadesYell(382071)
local specWarnCrushingStomp = mod:NewSpecialWarningCount(372701, nil, nil, nil, 2, 2)
local timerTitanicEmpowermentCD = mod:NewCDTimer(35, 372719, nil, nil, nil, 2, nil, DBM_COMMON_L.DEADLY_ICON)
local timerResonatingOrbCD = mod:NewCDTimer(25.6, 382071, nil, nil, nil, 3, nil, nil, true)--25-30ish
local timerCrushingStompCD = mod:NewCDCountTimer(12.1, 372701, nil, nil, nil, 2, nil, nil, true)
local timerEarthenShardsCD = mod:NewCDTimer(6, 372718, nil, nil, nil, 3, nil, DBM_COMMON_L.BLEED_ICON, true)
mod:AddSetIconOption("SetIconOnOrb", 382071, true, 0, {1, 2, 3})
mod.vb.orbIcon = 1
mod.vb.stompCount = 0
function mod:OnCombatStart(delay)
self.vb.stompCount = 0
-- timerResonatingOrbCD:Start(1-delay)--Instantly on pull
timerEarthenShardsCD:Start(4.5-delay)
timerCrushingStompCD:Start(5.1-delay, 1)
if not self:IsMythic() then
timerTitanicEmpowermentCD:Start(25.4-delay)
end
end
function mod:SPELL_CAST_START(args)
local spellId = args.spellId
if spellId == 372719 then
specWarnTitanicEmpowerment:Show()
specWarnTitanicEmpowerment:Play("specialsoon")
elseif spellId == 372600 then
warnInexorable:Show()
if not self:IsNormal() then
timerTitanicEmpowermentCD:Stop()
timerTitanicEmpowermentCD:Start(25)
end
elseif spellId == 372623 then
self.vb.orbIcon = 1
timerResonatingOrbCD:Start()
elseif spellId == 372701 then
self.vb.stompCount = self.vb.stompCount + 1
specWarnCrushingStomp:Show(self.vb.stompCount)
specWarnCrushingStomp:Play("carefly")
timerCrushingStompCD:Start(nil, self.vb.stompCount+1)
end
end
function mod:SPELL_CAST_SUCCESS(args)
local spellId = args.spellId
if spellId == 372718 then
timerEarthenShardsCD:Start()
end
end
function mod:SPELL_AURA_APPLIED(args)
local spellId = args.spellId
if spellId == 382071 then
local icon = self.vb.orbIcon
if self.Options.SetIconOnOrb then
self:SetIcon(args.destName, icon)
end
if args:IsPlayer() then
specWarnResonatingOrb:Show(self:IconNumToTexture(icon))
specWarnResonatingOrb:Play("mm"..icon)
yellResonatingOrb:Yell(icon, icon)
yellResonatingOrbFades:Countdown(spellId, nil, icon)
end
warnResonatingOrb:CombinedShow(0.5, args.destName)
self.vb.orbIcon = self.vb.orbIcon + 1
elseif spellId == 372718 then
warnEarthenShards:CombinedShow(0.3, args.destName)--TODO: Don't combo if it's never more than 1
end
end
function mod:SPELL_AURA_REMOVED(args)
local spellId = args.spellId
if spellId == 382071 then
if self.Options.SetIconOnOrb then
self:SetIcon(args.destName, 0)
end
if args:IsPlayer() then
yellResonatingOrbFades:Cancel()
end
elseif spellId == 372600 then
warnInexorableOver:Show()
end
end
function mod:UNIT_POWER_UPDATE()
local bossPower = UnitPower("boss1")
if self.vb.flightActive and bossPower == 0 then--Boss power reset
timerTitanicEmpowermentCD:Stop()
end
end