|
|
|
|
local mod = DBM:NewMod(2465, "DBM-Sepulcher", nil, 1195)
|
|
|
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
|
|
|
|
|
|
mod:SetRevision("20220302005439")
|
|
|
|
|
mod:SetCreatureID(181395)
|
|
|
|
|
mod:SetEncounterID(2542)
|
|
|
|
|
--mod:SetUsedIcons(1, 2, 3, 4, 5, 6, 7, 8)
|
|
|
|
|
mod:SetHotfixNoticeRev(20220301000000)
|
|
|
|
|
mod:SetMinSyncRevision(20211203000000)
|
|
|
|
|
--mod.respawnTime = 29
|
|
|
|
|
|
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
|
|
|
|
|
|
mod:RegisterEventsInCombat(
|
|
|
|
|
"SPELL_CAST_START 359770 359829 364778 359979 359975 360451",
|
|
|
|
|
"SPELL_CAST_SUCCESS 360092",--364893
|
|
|
|
|
"SPELL_AURA_APPLIED 359778 364522 359976 359981",
|
|
|
|
|
"SPELL_AURA_APPLIED_DOSE 359778 359976 359981",
|
|
|
|
|
"SPELL_AURA_REMOVED 359778",
|
|
|
|
|
"SPELL_AURA_REMOVED_DOSE 359778",
|
|
|
|
|
"SPELL_PERIODIC_DAMAGE 366070",
|
|
|
|
|
"SPELL_PERIODIC_MISSED 366070",
|
|
|
|
|
"UNIT_SPELLCAST_SUCCEEDED boss1"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
--[[
|
|
|
|
|
(ability.id = 359770 or ability.id = 359829 or ability.id = 359979 or ability.id = 359975 or ability.id = 364778) and type = "begincast"
|
|
|
|
|
or (ability.id = 360092 or ability.id = 364893) and type = "cast"
|
|
|
|
|
--]]
|
|
|
|
|
local warnDustFlail = mod:NewCountAnnounce(359829, 2)
|
|
|
|
|
local warnRend = mod:NewStackAnnounce(359979, 2, nil, "Tank|Healer")
|
|
|
|
|
local warnRift = mod:NewStackAnnounce(359976, 2, nil, "Tank|Healer")
|
|
|
|
|
local warnDestroy = mod:NewCastAnnounce(364778, 4)
|
|
|
|
|
|
|
|
|
|
local specWarnRaveningBurrow = mod:NewSpecialWarningCount(359770, nil, nil, nil, 2, 2)
|
|
|
|
|
local specWarnDustFlail = mod:NewSpecialWarningCount(359829, "Healer", nil, nil, 2, 2)
|
|
|
|
|
local specWarnRetch = mod:NewSpecialWarningDodge(360448, nil, nil, nil, 2, 2)
|
|
|
|
|
local specWarnDevouringBlood = mod:NewSpecialWarningDispel(364522, false, nil, nil, 1, 2)--Opt in
|
|
|
|
|
local specWarnRiftmaw = mod:NewSpecialWarningTaunt(359976, nil, nil, nil, 1, 2)
|
|
|
|
|
local specWarnRend = mod:NewSpecialWarningTaunt(359979, nil, nil, nil, 1, 2)
|
|
|
|
|
local specWarnGTFO = mod:NewSpecialWarningGTFO(366070, nil, nil, nil, 1, 8)
|
|
|
|
|
|
|
|
|
|
--mod:AddTimerLine(BOSS)
|
|
|
|
|
local timerDustflailCD = mod:NewCDTimer(16.4, 359829, nil, nil, nil, 2)--16.4-17.5
|
|
|
|
|
local timerRetchCD = mod:NewCDTimer(32.9, 360448, nil, nil, nil, 3)--32.9-35
|
|
|
|
|
local timerComboCD = mod:NewTimer(32.9, "timerComboCD", 359976, nil, nil, 5, DBM_COMMON_L.TANK_ICON)
|
|
|
|
|
|
|
|
|
|
local berserkTimer = mod:NewBerserkTimer(360)--Final Consumption
|
|
|
|
|
|
|
|
|
|
--mod:AddRangeFrameOption("8")
|
|
|
|
|
mod:AddInfoFrameOption(359778, true, nil, 5)
|
|
|
|
|
|
|
|
|
|
mod.vb.hungerCount = 0
|
|
|
|
|
mod.vb.dustCount = 0
|
|
|
|
|
mod.vb.comboCount = 0
|
|
|
|
|
local EphemeraDustStacks = {}
|
|
|
|
|
|
|
|
|
|
function mod:OnCombatStart(delay)
|
|
|
|
|
table.wipe(EphemeraDustStacks)
|
|
|
|
|
self.vb.hungerCount = 0
|
|
|
|
|
self.vb.dustCount = 0
|
|
|
|
|
self.vb.comboCount = 0
|
|
|
|
|
timerDustflailCD:Start(2-delay)
|
|
|
|
|
if self:IsHard() then
|
|
|
|
|
timerComboCD:Start(7.6-delay)
|
|
|
|
|
timerRetchCD:Start(24.2-delay)
|
|
|
|
|
else
|
|
|
|
|
timerComboCD:Start(8.2-delay)
|
|
|
|
|
timerRetchCD:Start(26.4-delay)
|
|
|
|
|
end
|
|
|
|
|
berserkTimer:Start(360-delay)
|
|
|
|
|
if self.Options.InfoFrame then
|
|
|
|
|
DBM.InfoFrame:SetHeader(DBM:GetSpellInfo(359778))
|
|
|
|
|
DBM.InfoFrame:Show(20, "table", EphemeraDustStacks, 5)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function mod:OnCombatEnd()
|
|
|
|
|
if self.Options.InfoFrame then
|
|
|
|
|
DBM.InfoFrame:Hide()
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
|
|
|
local spellId = args.spellId
|
|
|
|
|
if spellId == 359770 then
|
|
|
|
|
self.vb.hungerCount = self.vb.hungerCount + 1
|
|
|
|
|
specWarnRaveningBurrow:Show(self.vb.hungerCount)
|
|
|
|
|
specWarnRaveningBurrow:Play("specialsoon")
|
|
|
|
|
--Reset other spell counts
|
|
|
|
|
self.vb.dustCount = 0
|
|
|
|
|
--Boss energy doesn't reset, Timers continue but just get queued up and then unqueud after
|
|
|
|
|
--TODO, maybe time to any timers if < 5 seconds remaining on them, but first want to see if they make changes to bosses enery, it has some bugs
|
|
|
|
|
elseif spellId == 359829 then
|
|
|
|
|
self.vb.dustCount = self.vb.dustCount + 1
|
|
|
|
|
if self.Options.SpecWarn359829count then
|
|
|
|
|
specWarnDustFlail:Show(self.vb.dustCount)
|
|
|
|
|
specWarnDustFlail:Play("aesoon")
|
|
|
|
|
else
|
|
|
|
|
warnDustFlail:Show(self.vb.dustCount)
|
|
|
|
|
end
|
|
|
|
|
timerDustflailCD:Start(self:IsHard() and 16.4 or 19.4)
|
|
|
|
|
elseif args:IsSpellID(359979, 359975) then--Rend, Riftmaw
|
|
|
|
|
-- if self:AntiSpam(20, 1) then
|
|
|
|
|
-- self.vb.comboCount = 0
|
|
|
|
|
-- timerComboCD:Start()
|
|
|
|
|
-- end
|
|
|
|
|
self.vb.comboCount = self.vb.comboCount + 1
|
|
|
|
|
elseif spellId == 364778 then
|
|
|
|
|
warnDestroy:Show()
|
|
|
|
|
elseif spellId == 360451 then
|
|
|
|
|
specWarnRetch:Show()
|
|
|
|
|
specWarnRetch:Play("shockwave")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
|
|
|
local spellId = args.spellId
|
|
|
|
|
if spellId == 360092 then
|
|
|
|
|
timerRetchCD:Start(self:IsHard() and 34 or 37.6)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
|
|
|
local spellId = args.spellId
|
|
|
|
|
if spellId == 359778 then
|
|
|
|
|
local amount = args.amount or 1
|
|
|
|
|
EphemeraDustStacks[args.destName] = amount
|
|
|
|
|
if self.Options.InfoFrame then
|
|
|
|
|
DBM.InfoFrame:UpdateTable(EphemeraDustStacks, 0.2)
|
|
|
|
|
end
|
|
|
|
|
elseif spellId == 364522 and args:IsDestTypePlayer() and self:CheckDispelFilter() then
|
|
|
|
|
specWarnDevouringBlood:CombinedShow(0.5, args.destName)
|
|
|
|
|
specWarnDevouringBlood:ScheduleVoice(0.5, "helpdispel")
|
|
|
|
|
--Begin copy paste from Grong
|
|
|
|
|
elseif spellId == 359976 then--Riftmaw
|
|
|
|
|
local uId = DBM:GetRaidUnitId(args.destName)
|
|
|
|
|
if self:IsTanking(uId) then
|
|
|
|
|
local amount = args.amount or 1
|
|
|
|
|
if not args:IsPlayer() then
|
|
|
|
|
--always swap after a rift if combo is only at 1 or 2, because rift CAN be 3rd cast of a combo.
|
|
|
|
|
if not UnitIsDeadOrGhost("player") and not DBM:UnitDebuff("player", spellId) and self.vb.comboCount < 3 then
|
|
|
|
|
specWarnRiftmaw:Show(args.destName)
|
|
|
|
|
specWarnRiftmaw:Play("tauntboss")
|
|
|
|
|
else
|
|
|
|
|
warnRift:Show(args.destName, amount)
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
warnRift:Show(args.destName, amount)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
elseif spellId == 359981 then
|
|
|
|
|
local uId = DBM:GetRaidUnitId(args.destName)
|
|
|
|
|
if self:IsTanking(uId) then
|
|
|
|
|
local amount = args.amount or 1
|
|
|
|
|
if not args:IsPlayer() then
|
|
|
|
|
--Taunt at 2 stacks of rend, if combo count less than 3 (basically any combo starting with rend rend x) to make sure tank doesn't get a 3rd rend
|
|
|
|
|
if not UnitIsDeadOrGhost("player") and not DBM:UnitDebuff("player", spellId) and amount >= 2 then--Can't taunt less you've dropped yours off, period.
|
|
|
|
|
specWarnRend:Show(args.destName)
|
|
|
|
|
specWarnRend:Play("tauntboss")
|
|
|
|
|
else--only 1 stack, or no risk of it being a rend rend rend combo
|
|
|
|
|
warnRend:Show(args.destName, amount)
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
warnRend:Show(args.destName, amount)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
--End copy paste from Grong
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED
|
|
|
|
|
|
|
|
|
|
function mod:SPELL_AURA_REMOVED(args)
|
|
|
|
|
local spellId = args.spellId
|
|
|
|
|
if spellId == 359778 then
|
|
|
|
|
EphemeraDustStacks[args.destName] = nil
|
|
|
|
|
if self.Options.InfoFrame then
|
|
|
|
|
DBM.InfoFrame:UpdateTable(EphemeraDustStacks, 0.2)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function mod:SPELL_AURA_REMOVED_DOSE(args)
|
|
|
|
|
local spellId = args.spellId
|
|
|
|
|
if spellId == 359778 then
|
|
|
|
|
EphemeraDustStacks[args.destName] = args.amount or 1
|
|
|
|
|
if self.Options.InfoFrame then
|
|
|
|
|
DBM.InfoFrame:UpdateTable(EphemeraDustStacks, 0.2)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId, spellName)
|
|
|
|
|
if spellId == 366070 and destGUID == UnitGUID("player") and self:AntiSpam(2, 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 == 360079 then--[DNT] Tank Combo
|
|
|
|
|
self.vb.comboCount = 0
|
|
|
|
|
timerComboCD:Start(self:IsHard() and 34 or 37.6)
|
|
|
|
|
end
|
|
|
|
|
end
|