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.

140 lines
5.1 KiB

local mod = DBM:NewMod(2508, "DBM-Party-Dragonflight", 6, 1203)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20230504231118")
mod:SetCreatureID(186738)
mod:SetEncounterID(2584)
--mod:SetUsedIcons(1, 2, 3)
mod:SetHotfixNoticeRev(20230110000000)
--mod:SetMinSyncRevision(20211203000000)
--mod.respawnTime = 29
mod.sendMainBossGUID = true
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_START 384978 385399 385075 388804",
"SPELL_CAST_SUCCESS 384696",
"SPELL_AURA_APPLIED 384978"
-- "SPELL_AURA_APPLIED_DOSE",
-- "SPELL_AURA_REMOVED",
-- "SPELL_PERIODIC_DAMAGE",
-- "SPELL_PERIODIC_MISSED",
-- "UNIT_SPELLCAST_SUCCEEDED boss1"
)
--TODO, Current under-tuning makes the crystals and fracture completely inconsiquential. Until that changes, not much to do with those.
--TODO, target scan arcane eruption?
--TODO, Even on really long M+, Unleashed was never cast more than once, with upwards of 107 seconds between first cast and kill
--TODO, Brittle not in CLEU so can't be implemented yet
--[[
(ability.id = 384978 or ability.id = 384699 or ability.id = 385399 or ability.id = 385075 or ability.id = 388804) and type = "begincast"
or ability.id = 384696 and type = "cast"
or type = "dungeonencounterstart" or type = "dungeonencounterend"
--]]
local warnArcaneEruption = mod:NewSpellAnnounce(385075, 3)
--local specWarnInfusedStrikes = mod:NewSpecialWarningStack(361966, nil, 8, nil, nil, 1, 6)
local specWarnDragonStrike = mod:NewSpecialWarningDefensive(384978, nil, nil, nil, 1, 2)
local specWarnDragonStrikeDebuff = mod:NewSpecialWarningDispel(384978, "RemoveMagic", nil, nil, 1, 2)
local specWarnCrystallineRoar = mod:NewSpecialWarningDodge(384699, nil, nil, nil, 3, 2)
local specWarnUnleashedDestruction = mod:NewSpecialWarningSpell(385399, nil, nil, nil, 2, 2)
--local yellInfusedStrikes = mod:NewYell(361966)
--local specWarnGTFO = mod:NewSpecialWarningGTFO(340324, nil, nil, nil, 1, 8)
local timerDragonStrikeCD = mod:NewCDTimer(7.3, 384978, nil, "Tank|Healer|RemoveMagic", nil, 5, nil, DBM_COMMON_L.TANK_ICON..DBM_COMMON_L.MAGIC_ICON)--7.3-24, probably delayed by CLEU events I couldn't see
local timerCrystallineRoarCD = mod:NewCDTimer(111.6, 384699, nil, nil, nil, 3, nil, DBM_COMMON_L.DEADLY_ICON)
local timerUnleashedDestructionCD = mod:NewCDTimer(103.1, 385399, nil, nil, nil, 2)--103-115
local timerArcaneEruptionCD = mod:NewCDTimer(54.6, 385075, nil, nil, nil, 3)
--local berserkTimer = mod:NewBerserkTimer(600)
--mod:AddRangeFrameOption("8")
mod:AddInfoFrameOption(388777, false)
--mod:AddSetIconOption("SetIconOnStaggeringBarrage", 361018, true, false, {1, 2, 3})
mod.vb.unleashedCast = 0
function mod:OnCombatStart(delay)
self.vb.unleashedCast = 0
timerDragonStrikeCD:Start(7.1-delay)
timerCrystallineRoarCD:Start(12.3-delay)
timerArcaneEruptionCD:Start(28.9-delay)--28.9-37, Highly variable if it gets spell queued behind more tank casts
timerUnleashedDestructionCD:Start(48.2-delay)
if self.Options.InfoFrame then
DBM.InfoFrame:SetHeader(DBM:GetSpellInfo(388777))
DBM.InfoFrame:Show(5, "playerdebuffremaining", 388777)
end
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 == 384978 then
if self:IsTanking("player", "boss1", nil, true) then
specWarnDragonStrike:Show()
specWarnDragonStrike:Play("defensive")
end
timerDragonStrikeCD:Start()
elseif spellId == 385399 or spellId == 388804 then--Easy, Hard
self.vb.unleashedCast = self.vb.unleashedCast + 1
specWarnUnleashedDestruction:Show(self.vb.unleashedCast)
specWarnUnleashedDestruction:Play("carefly")
timerUnleashedDestructionCD:Start()
elseif spellId == 385075 then
warnArcaneEruption:Show()
timerArcaneEruptionCD:Start()
end
end
function mod:SPELL_CAST_SUCCESS(args)
local spellId = args.spellId
if spellId == 384696 then
specWarnCrystallineRoar:Show()
specWarnCrystallineRoar:Play("shockwave")
timerCrystallineRoarCD:Start()
end
end
function mod:SPELL_AURA_APPLIED(args)
local spellId = args.spellId
if spellId == 384978 then
local uId = DBM:GetRaidUnitId(args.destName)
if self:IsTanking(uId) and self:CheckDispelFilter("magic") then
specWarnDragonStrikeDebuff:Show(args.destName)
specWarnDragonStrikeDebuff:Play("helpdispel")
end
end
end
--mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED
--[[
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 == 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
--]]