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.
165 lines
5.4 KiB
165 lines
5.4 KiB
|
3 years ago
|
local mod = DBM:NewMod(2485, "DBM-Party-Dragonflight", 7, 1202)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod:SetRevision("20221018020559")
|
||
|
|
mod:SetCreatureID(189232)
|
||
|
|
mod:SetEncounterID(2609)
|
||
|
|
--mod:SetUsedIcons(1, 2, 3)
|
||
|
|
--mod:SetHotfixNoticeRev(20220322000000)
|
||
|
|
--mod:SetMinSyncRevision(20211203000000)
|
||
|
|
--mod.respawnTime = 29
|
||
|
|
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_CAST_START 372107 372863 373017 373087 384823",
|
||
|
|
"SPELL_CAST_SUCCESS 372858",
|
||
|
|
"SPELL_AURA_APPLIED 372858",
|
||
|
|
-- "SPELL_AURA_REMOVED"
|
||
|
|
"SPELL_PERIODIC_DAMAGE 372820",
|
||
|
|
"SPELL_PERIODIC_MISSED 372820"
|
||
|
|
-- "UNIT_SPELLCAST_SUCCEEDED boss1"
|
||
|
|
)
|
||
|
|
|
||
|
|
--TODO, track https://www.wowhead.com/beta/spell=372860/searing-wounds stacks? there isn't a tank swap so it feels like something that naturally falls off somehow
|
||
|
|
--TODO, verify Molten Boulder target scan
|
||
|
|
--[[
|
||
|
|
(ability.id = 372107 or ability.id = 372863) and type = "begincast"
|
||
|
|
or ability.id = 372858 and type = "cast"
|
||
|
|
or (ability.id = 373017 or ability.id = 373087) and type = "begincast"
|
||
|
|
or type = "dungeonencounterstart" or type = "dungeonencounterend"
|
||
|
|
--]]
|
||
|
|
local warnBurnout = mod:NewCastAnnounce(373087, 4)
|
||
|
|
local warnInferno = mod:NewCastAnnounce(384823, 3)
|
||
|
|
|
||
|
|
local specWarnSearingBlows = mod:NewSpecialWarningDefensive(372858, nil, nil, nil, 1, 2)
|
||
|
|
local specWarnMoltenBoulder = mod:NewSpecialWarningDodge(372107, nil, nil, nil, 1, 2)
|
||
|
|
local yellMoltenBoulder = mod:NewYell(372107)
|
||
|
|
local specWarnRitualofBlazebinding = mod:NewSpecialWarningSwitch(372863, nil, nil, nil, 1, 2)
|
||
|
|
local specWarnRoaringBlaze = mod:NewSpecialWarningInterruptCount(373017, "HasInterrupt", nil, nil, 1, 2)
|
||
|
|
local specWarnBurnout = mod:NewSpecialWarningRun(373087, "Melee", nil, nil, 4, 2)
|
||
|
|
local specWarnGTFO = mod:NewSpecialWarningGTFO(372820, nil, nil, nil, 1, 8)
|
||
|
|
|
||
|
|
local timerSearingBlowsCD = mod:NewCDTimer(32.7, 372858, nil, "Tank|Healer", nil, 5, nil, DBM_COMMON_L.TANK_ICON..DBM_COMMON_L.HEALER_ICON)
|
||
|
|
local timerMoltenBoulderCD = mod:NewCDTimer(16.9, 372107, nil, nil, nil, 3)
|
||
|
|
local timerRitualofBlazebindingCD = mod:NewCDTimer(33.9, 372863, nil, nil, nil, 1)
|
||
|
|
|
||
|
|
--local berserkTimer = mod:NewBerserkTimer(600)
|
||
|
|
|
||
|
|
--mod:AddRangeFrameOption("8")
|
||
|
|
--mod:AddInfoFrameOption(361651, true)
|
||
|
|
--mod:AddSetIconOption("SetIconOnStaggeringBarrage", 361018, true, false, {1, 2, 3})
|
||
|
|
|
||
|
|
local castsPerGUID = {}
|
||
|
|
|
||
|
|
function mod:BoulderTarget(targetname)
|
||
|
|
if not targetname then return end
|
||
|
|
if targetname == UnitName("player") then
|
||
|
|
yellMoltenBoulder:Yell()
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:OnCombatStart(delay)
|
||
|
|
table.wipe(castsPerGUID)
|
||
|
|
timerRitualofBlazebindingCD:Start(6.9-delay)
|
||
|
|
timerMoltenBoulderCD:Start(14.2-delay)
|
||
|
|
timerSearingBlowsCD:Start(21.4-delay)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:OnCombatEnd()
|
||
|
|
table.wipe(castsPerGUID)
|
||
|
|
-- 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 == 372107 then
|
||
|
|
self:ScheduleMethod(0.2, "BossTargetScanner", args.sourceGUID, "BoulderTarget", 0.1, 8, true)
|
||
|
|
specWarnMoltenBoulder:Show()
|
||
|
|
specWarnMoltenBoulder:Play("shockwave")
|
||
|
|
timerMoltenBoulderCD:Start()
|
||
|
|
elseif spellId == 372863 then
|
||
|
|
specWarnRitualofBlazebinding:Show()
|
||
|
|
specWarnRitualofBlazebinding:Play("killmob")
|
||
|
|
timerRitualofBlazebindingCD:Start()
|
||
|
|
elseif spellId == 373017 and self:CheckInterruptFilter(args.sourceGUID, false, true) then
|
||
|
|
if not castsPerGUID[args.sourceGUID] then
|
||
|
|
castsPerGUID[args.sourceGUID] = 0
|
||
|
|
end
|
||
|
|
castsPerGUID[args.sourceGUID] = castsPerGUID[args.sourceGUID] + 1
|
||
|
|
local count = castsPerGUID[args.sourceGUID]
|
||
|
|
if self:CheckInterruptFilter(args.sourceGUID, false, false) then--Count interrupt, so cooldown is not checked
|
||
|
|
specWarnRoaringBlaze:Show(args.sourceName, count)
|
||
|
|
if count == 1 then
|
||
|
|
specWarnRoaringBlaze:Play("kick1r")
|
||
|
|
elseif count == 2 then
|
||
|
|
specWarnRoaringBlaze:Play("kick2r")
|
||
|
|
elseif count == 3 then
|
||
|
|
specWarnRoaringBlaze:Play("kick3r")
|
||
|
|
elseif count == 4 then
|
||
|
|
specWarnRoaringBlaze:Play("kick4r")
|
||
|
|
elseif count == 5 then
|
||
|
|
specWarnRoaringBlaze:Play("kick5r")
|
||
|
|
else
|
||
|
|
specWarnRoaringBlaze:Play("kickcast")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
elseif spellId == 373087 then
|
||
|
|
if self.Options.SpecWarn373087run then
|
||
|
|
specWarnBurnout:Show()
|
||
|
|
specWarnBurnout:Play("justrun")
|
||
|
|
else
|
||
|
|
warnBurnout:Show()
|
||
|
|
end
|
||
|
|
elseif spellId == 384823 then
|
||
|
|
warnInferno:Show()
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
||
|
|
local spellId = args.spellId
|
||
|
|
if spellId == 372858 then
|
||
|
|
timerSearingBlowsCD:Start()
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SPELL_AURA_APPLIED(args)
|
||
|
|
local spellId = args.spellId
|
||
|
|
if spellId == 372858 then
|
||
|
|
if self:IsTanking("player", "boss1", nil, true) then
|
||
|
|
specWarnSearingBlows:Show()
|
||
|
|
specWarnSearingBlows:Play("defensive")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
--[[
|
||
|
|
function mod:SPELL_AURA_REMOVED(args)
|
||
|
|
local spellId = args.spellId
|
||
|
|
if spellId == 361966 then
|
||
|
|
|
||
|
|
end
|
||
|
|
end
|
||
|
|
--]]
|
||
|
|
|
||
|
|
function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId, spellName)
|
||
|
|
if spellId == 372820 and destGUID == UnitGUID("player") and self:AntiSpam(3, 2) 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
|
||
|
|
--]]
|