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.

130 lines
4.8 KiB

local mod = DBM:NewMod(134, "DBM-Party-Cataclysm", 3, 71)
local L = mod:GetLocalizedStrings()
if not mod:IsCata() then
mod.statTypes = "normal,heroic,challenge,timewalker"
mod.upgradedMPlus = true
else
mod.statTypes = "normal,heroic"
end
mod:SetRevision("20240812045014")
mod:SetCreatureID(40484)
mod:SetEncounterID(1049)
mod:SetHotfixNoticeRev(20240812000000)
--mod:SetMinSyncRevision(20230929000000)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_START 75763 79467 449939 450077 450100",
"SPELL_AURA_APPLIED 75861 75792",
"UNIT_SPELLCAST_SUCCEEDED boss1"
)
--[[
(ability.id = 75763 or ability.id = 79467 or ability.id = 449939 or ability.id = 450077 or ability.id = 450100) and type = "begincast"
or type = "dungeonencounterstart" or type = "dungeonencounterend"
--]]
local warnBinding = mod:NewTargetNoFilterAnnounce(75861, 3)
local warnFeeble = mod:NewTargetNoFilterAnnounce(75792, 3, nil, "Tank|Healer", 2)
local warnUmbralMending = mod:NewSpellAnnounce(75763, 4)
local specWarnMending = mod:NewSpecialWarningInterrupt(75763, nil, nil, nil, 1, 2)
local specWarnGale = mod:NewSpecialWarningCount(DBM:IsPostCata() and 449939 or 75664, nil, nil, nil, 2, 2)
local specWarnAdds = mod:NewSpecialWarningAddsCount(75704, "Dps", nil, nil, 3, 2)
local timerFeebleCD = mod:NewCDCountTimer(26, 75792, nil, "Tank", nil, 5, nil, DBM_COMMON_L.TANK_ICON)
local timerFeeble = mod:NewTargetTimer(3, 75792, nil, "Tank|Healer", 2, 5)
local timerGale = mod:NewCastTimer(5, DBM:IsPostCata() and 449939 or 75664, nil, nil, nil, 2)
local timerGaleCD = mod:NewCDCountTimer(55, DBM:IsPostCata() and 449939 or 75664, nil, nil, nil, 2)
local timerAddsCD = mod:NewCDCountTimer(54.5, 75704, nil, nil, nil, 1)
--Add new stuff to non cata only
local specWarnVoidSurge, specWarnCrush, timerVoidSurgeCD, timerCrushCD
if not mod:IsCata() then
specWarnVoidSurge = mod:NewSpecialWarningDodgeCount(450077, nil, nil, nil, 2, 2)
specWarnCrush = mod:NewSpecialWarningDefensive(450100, nil, nil, nil, 2, 2)
timerVoidSurgeCD = mod:NewCDCountTimer(50, 450077, nil, nil, nil, 3)
timerCrushCD = mod:NewCDCountTimer(50, 450100, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON)
end
mod.vb.feebleCount = 0--Used for void surge in TWW
mod.vb.galeCount = 0
mod.vb.addsCount = 0
mod.vb.crushCount = 0
function mod:OnCombatStart(delay)
self.vb.feebleCount = 0
self.vb.galeCount = 0
self.vb.addsCount = 0
self.vb.crushCount = 0
if self:IsCata() then
timerFeebleCD:Start(16-delay, 1)
timerGaleCD:Start(23-delay, 1)
else
timerVoidSurgeCD:Start(5-delay, 1)
timerGaleCD:Start(12-delay, 1)
timerCrushCD:Start(45-delay, 1)
end
-- timerAddsCD:Start(95-delay, 1)--First ones don't start until boss reaches % health of some sort?
end
function mod:SPELL_CAST_START(args)
if args:IsSpellID(75763, 79467) then
if self.Options.SpecWarn75763interrupt and self:CheckInterruptFilter(args.sourceGUID, false, true) then
specWarnMending:Show(args.sourceName)
specWarnMending:Play("kickcast")
elseif self:AntiSpam(2, 1) then
warnUmbralMending:Show()
end
elseif args.spellId == 449939 then--TWW version
self.vb.galeCount = self.vb.galeCount + 1
specWarnGale:Show(self.vb.galeCount)
specWarnGale:Play("findshelter")
timerGale:Start()
timerGaleCD:Start(50, self.vb.galeCount+1)
elseif args.spellId == 450077 then
self.vb.feebleCount = self.vb.feebleCount + 1
specWarnVoidSurge:Show(self.vb.feebleCount)
specWarnVoidSurge:Play("watchstep")
timerVoidSurgeCD:Start(50, self.vb.feebleCount+1)
elseif args.spellId == 450100 then
self.vb.crushCount = self.vb.crushCount + 1
specWarnCrush:Show()
specWarnCrush:Play("defensive")
timerCrushCD:Start(50, self.vb.crushCount+1)
end
end
function mod:SPELL_AURA_APPLIED(args)
local spellId = args.spellId
if spellId == 75861 then
warnBinding:CombinedShow(0.3, args.destName)
elseif spellId == 75792 then
self.vb.feebleCount = self.vb.feebleCount + 1
warnFeeble:Show(args.destName)
timerFeebleCD:Start(nil, self.vb.feebleCount+1)
if self:IsDifficulty("normal") then
timerFeeble:Start(args.destName)
else
timerFeeble:Start(5, args.destName)
end
end
end
--Sometimes boss fails to cast gale so no SPELL_CAST_START event. This ensures we still detect cast and start timers
--Cataclysm mechanics
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId)
if spellId == 75656 then
self.vb.galeCount = self.vb.galeCount + 1
specWarnGale:Show(self.vb.galeCount)
specWarnGale:Play("findshelter")
timerGale:Start()
timerGaleCD:Start(55, self.vb.galeCount+1)
elseif spellId == 75704 then
self.vb.addsCount = self.vb.addsCount + 1
specWarnAdds:Show(self.vb.addsCount)
specWarnAdds:Play("killmob")
timerAddsCD:Start(nil, self.vb.addsCount+1)
end
end