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.
191 lines
7.1 KiB
191 lines
7.1 KiB
local mod = DBM:NewMod(2503, "DBM-Party-Dragonflight", 7, 1202)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20240507051050")
|
|
mod:SetCreatureID(190484, 190485)
|
|
mod:SetEncounterID(2623)
|
|
mod:SetBossHPInfoToHighest()
|
|
mod:SetHotfixNoticeRev(20230109000000)
|
|
--mod:SetMinSyncRevision(20211203000000)
|
|
--mod.respawnTime = 29
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 381605 381602 381525 381517 381512 385558 381516",
|
|
"SPELL_CAST_SUCCESS 381517",
|
|
"SPELL_AURA_APPLIED 381515 181089 381862",
|
|
"UNIT_DIED"
|
|
)
|
|
|
|
--[[
|
|
(ability.id = 381605 or ability.id = 381602 or ability.id = 381525 or ability.id = 381517 or ability.id = 381512 or ability.id = 385558 or ability.id = 381516) and type = "begincast"
|
|
or type = "death" and (target.id = 193435 or target.id = 190484 or target.id = 190485)
|
|
or ability.id = 181089
|
|
or type = "dungeonencounterstart" or type = "dungeonencounterend"
|
|
--]]
|
|
--Kyrakka
|
|
mod:AddTimerLine(DBM:EJ_GetSectionInfo(25365))
|
|
local warnFlamespit = mod:NewTargetNoFilterAnnounce(381605, 3)
|
|
local warnInfernoCore = mod:NewYouAnnounce(381862, 4)
|
|
|
|
local yellFlamespit = mod:NewYell(381605)
|
|
local specWarnInfernoCore = mod:NewSpecialWarningMoveAway(381862, nil, nil, nil, 1, 2)
|
|
local specWarnRoaringFirebreath = mod:NewSpecialWarningDodge(381525, nil, nil, nil, 2, 2)
|
|
|
|
local timerFlamespitCD = mod:NewCDTimer(15.7, 381605, nil, nil, nil, 3)
|
|
local timerRoaringFirebreathCD = mod:NewCDTimer(18, 381525, nil, nil, nil, 3)
|
|
--Erkhart Stormvein
|
|
mod:AddTimerLine(DBM:EJ_GetSectionInfo(25369))
|
|
local warnWindsofChange = mod:NewCountAnnounce(381517, 3, nil, nil, 227878)--Not actually a count timer, but has best localized text
|
|
local warnCloudburst = mod:NewSpellAnnounce(385558, 3)
|
|
|
|
local specWarnStormslam = mod:NewSpecialWarningDefensive(381512, nil, nil, nil, 1, 2)
|
|
local specWarnStormslamDispel = mod:NewSpecialWarningDispel(381512, "RemoveMagic", nil, nil, 1, 2)
|
|
local specWarnInterruptingCloudburst = mod:NewSpecialWarningCast(381516, "SpellCaster", nil, nil, 2, 2, 4)
|
|
|
|
local timerWindsofChangeCD = mod:NewCDCountTimer(15.8, 381517, 227878, nil, nil, 3)--Not actually a count timer, but has best localized text
|
|
local timerStormslamCD = mod:NewCDTimer(17, 381512, nil, "Tank|RemoveMagic", nil, 5, nil, DBM_COMMON_L.TANK_ICON..DBM_COMMON_L.MAGIC_ICON)
|
|
local timerCloudburstCD = mod:NewCDTimer(18.8, 385558, nil, nil, nil, 2)--Used for both mythic and non mythic versions of spell
|
|
|
|
mod:AddInfoFrameOption(381862, false)--Infernocore
|
|
|
|
mod.vb.windDirection = 0
|
|
mod.vb.mainGUID = nil
|
|
mod.vb.dragonAlive = true
|
|
|
|
function mod:SpitTarget(targetname)
|
|
if not targetname then return end
|
|
warnFlamespit:Show(targetname)
|
|
if targetname == UnitName("player") then
|
|
yellFlamespit:Yell()
|
|
end
|
|
end
|
|
|
|
--Count started at 0 because count is incremented in success event not start
|
|
local directions = {
|
|
[0] = L.North,
|
|
[1] = L.West,
|
|
[2] = L.South,
|
|
[3] = L.East
|
|
}
|
|
|
|
local function scanBosses(self, delay)
|
|
for i = 1, 2 do
|
|
local unitID = "boss"..i
|
|
if UnitExists(unitID) then
|
|
local cid = self:GetUnitCreatureId(unitID)
|
|
local bossGUID = UnitGUID(unitID)
|
|
if cid == 190484 then--Kyrakka
|
|
timerRoaringFirebreathCD:Start(1.1-delay, bossGUID)
|
|
timerFlamespitCD:Start(16.1-delay, bossGUID)--17-24?
|
|
else--Erkhart Stormvein
|
|
self.vb.mainGUID = bossGUID
|
|
timerStormslamCD:Start(4-delay, bossGUID)
|
|
timerCloudburstCD:Start(8.4-delay, bossGUID)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
function mod:OnCombatStart(delay)
|
|
self.vb.windDirection = 0
|
|
self:SetStage(1)
|
|
timerWindsofChangeCD:Start(17.1-delay, L.North)
|
|
self:Schedule(1, scanBosses, self, delay)--1 second delay to give IEEU time to populate boss guids
|
|
self.vb.dragonAlive = true
|
|
if self.Options.InfoFrame then
|
|
DBM.InfoFrame:SetHeader(DBM:GetSpellName(381862))
|
|
DBM.InfoFrame:Show(5, "playerdebuffremaining", 381862)
|
|
end
|
|
end
|
|
|
|
function mod:OnCombatEnd()
|
|
self.vb.mainGUID = nil
|
|
if self.Options.InfoFrame then
|
|
DBM.InfoFrame:Hide()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
local spellId = args.spellId
|
|
if spellId == 381605 or spellId == 381602 then--One is for bosses split and one is for bosses combined.
|
|
self:ScheduleMethod(0.2, "BossTargetScanner", args.sourceGUID, "SpitTarget", 0.1, 8, true)
|
|
timerFlamespitCD:Start(self:GetStage(1) and 21.1 or 15, args.sourceGUID)
|
|
elseif spellId == 381525 then
|
|
specWarnRoaringFirebreath:Show()
|
|
specWarnRoaringFirebreath:Play("breathsoon")
|
|
timerRoaringFirebreathCD:Start(18, args.sourceGUID)--18-27
|
|
elseif spellId == 381517 then
|
|
warnWindsofChange:Show(directions[self.vb.windDirection])
|
|
elseif spellId == 381512 then
|
|
if self:IsTanking("player", nil, nil, true, args.sourceGUID) then--Using GUID check because might be boss1 or boss2
|
|
specWarnStormslam:Show()
|
|
specWarnStormslam:Play("defensive")
|
|
end
|
|
timerStormslamCD:Start(nil, args.sourceGUID)--self:GetStage(1) and 10 or 14
|
|
elseif spellId == 385558 or spellId == 381516 then
|
|
if spellId == 381516 and self.Options.SpecWarn381516cast then--Mythic
|
|
specWarnInterruptingCloudburst:Show()
|
|
specWarnInterruptingCloudburst:Play("stopcast")
|
|
else--Normal/Heroic
|
|
warnCloudburst:Show()
|
|
end
|
|
timerCloudburstCD:Start(nil, args.sourceGUID)
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
local spellId = args.spellId
|
|
if spellId == 381517 then--Here because boss can stutter cast and start cast over
|
|
self.vb.windDirection = self.vb.windDirection + 1
|
|
if self.vb.windDirection == 4 then
|
|
self.vb.windDirection = 0
|
|
end
|
|
timerWindsofChangeCD:Start(nil, directions[self.vb.windDirection])
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
local spellId = args.spellId
|
|
if spellId == 381515 and self:CheckDispelFilter("magic") then
|
|
specWarnStormslamDispel:Show(args.destName)
|
|
specWarnStormslamDispel:Play("helpdispel")
|
|
elseif spellId == 181089 then
|
|
self:SetStage(2)
|
|
--Timers reset by staging
|
|
if self.vb.dragonAlive and self:AntiSpam(3, 1) then--Erkhart
|
|
--restart apparently broken here (because of GUID?)
|
|
--Manually stop/start
|
|
timerFlamespitCD:Stop()
|
|
timerFlamespitCD:Start(3.5, UnitGUID)
|
|
timerRoaringFirebreathCD:Stop()
|
|
timerRoaringFirebreathCD:Start(9.6, UnitGUID)
|
|
end
|
|
--Rest not reset
|
|
elseif spellId == 381862 and args:IsPlayer() then
|
|
if self.Options.SpecWarn381862moveaway and self:AntiSpam(3, 2) then
|
|
specWarnInfernoCore:Show()
|
|
specWarnInfernoCore:Play("runout")
|
|
else
|
|
warnInfernoCore:Show()
|
|
end
|
|
end
|
|
end
|
|
|
|
function mod:UNIT_DIED(args)
|
|
local cid = self:GetCIDFromGUID(args.destGUID)
|
|
if cid == 190484 then--Kyrakka
|
|
self.vb.dragonAlive = false
|
|
timerFlamespitCD:Stop(args.destGUID)
|
|
timerRoaringFirebreathCD:Stop(args.destGUID)
|
|
if self.vb.mainGUID then
|
|
--In season 4, bosses cloudburst Cd resets on dragon death, he basically instant casts it even if it was JUST cast
|
|
timerCloudburstCD:Stop(self.vb.mainGUID)
|
|
end
|
|
elseif cid == 190485 then--Erkhart
|
|
timerWindsofChangeCD:Stop(args.destGUID)
|
|
timerStormslamCD:Stop(args.destGUID)
|
|
timerCloudburstCD:Stop(args.destGUID)
|
|
end
|
|
end
|
|
|