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.

180 lines
5.7 KiB

local mod = DBM:NewMod(2455, "DBM-Party-Shadowlands", 9, 1194)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20210627231754")
mod:SetCreatureID(180863)
mod:SetEncounterID(2442)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_START 350796 355922 353635 351124 351119 350875 351096 351646",
"SPELL_CAST_SUCCESS 351086",
"SPELL_AURA_APPLIED 357190"
-- "SPELL_AURA_REMOVED 357190"
-- "SPELL_PERIODIC_DAMAGE",
-- "SPELL_PERIODIC_MISSED",
-- "UNIT_DIED"
-- "UNIT_SPELLCAST_SUCCEEDED boss1"
)
--TODO, figure out right P1 hyperlight id
--TODO, verify the kind of mechanics that nova and fragmentation are
--Stage One: Final Preparations
local warnCollapsingStar = mod:NewCountAnnounce(353635, 3)
--Stage Two: Power Overwhelming
local warnPhase2 = mod:NewPhaseAnnounce(2, 2, nil, nil, nil, nil, nil, 2)
--Stage One: Final Preparations
local specWarnHyperlightSpark = mod:NewSpecialWarningCount(350796, nil, nil, nil, 2, 2)
local specWarnSummonAssassins = mod:NewSpecialWarningSwitch(351124, "Dps", nil, nil, 1, 2)
local specWarnShurikenBlitz = mod:NewSpecialWarningInterruptCount(351119, "HasInterrupt", nil, nil, 1, 2)
--local yellEmbalmingIchor = mod:NewYell(327664)
--local specWarnGTFO = mod:NewSpecialWarningGTFO(320366, nil, nil, nil, 1, 8)
--Stage Two: Power Overwhelming
local specWarnHyperlightJolt = mod:NewSpecialWarningCount(350875, nil, nil, nil, 2, 2)
local specWarnEnergyFragmentation = mod:NewSpecialWarningDodge(351096, nil, nil, nil, 2, 2)
local specWarnHyperlightNova = mod:NewSpecialWarningDodge(351646, nil, nil, nil, 2, 2)
--Stage One: Final Preparations
local timerHyperlightSparkCD = mod:NewAITimer(11, 350796, nil, nil, nil, 3)
local timerCollapsingStarCD = mod:NewAITimer(11, 353635, nil, nil, nil, 5)
local timerSummonAssassinsCD = mod:NewAITimer(15.8, 351124, nil, nil, nil, 1, nil, DBM_CORE_L.DAMAGE_ICON)
--Stage Two: Power Overwhelming
local timerHyperlightJoltCD = mod:NewAITimer(11, 350875, nil, nil, nil, 3)
local timerEnergyFragmentationCD = mod:NewAITimer(11, 351096, nil, nil, nil, 3)
local timerHyperlightNovaCD = mod:NewAITimer(11, 351646, nil, nil, nil, 3)
mod:AddInfoFrameOption(357190, true)
mod.vb.hyperlightCount = 0
mod.vb.starCount = 0
local castsPerGUID = {}
function mod:OnCombatStart(delay)
self:SetStage(1)
self.vb.hyperlightCount = 0
self.vb.starCount = 0
table.wipe(castsPerGUID)
timerHyperlightSparkCD:Start(1-delay)
timerCollapsingStarCD:Start(1-delay)
timerSummonAssassinsCD:Start(1-delay)
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 == 350796 or spellId == 355922 then--TODO, figure out which one
self.vb.hyperlightCount = self.vb.hyperlightCount + 1
specWarnHyperlightSpark:Show(self.vb.hyperlightCount)
specWarnHyperlightSpark:Play("specialsoon")
timerHyperlightSparkCD:Start()
elseif spellId == 353635 then
self.vb.starCount = self.vb.starCount + 1
warnCollapsingStar:Show(self.vb.starCount)
timerCollapsingStarCD:Start()
elseif spellId == 351124 then
specWarnSummonAssassins:Show()
specWarnSummonAssassins:Play("mobsoon")
timerSummonAssassinsCD:Start()
elseif spellId == 351119 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
specWarnShurikenBlitz:Show(args.sourceName, count)
if count == 1 then
specWarnShurikenBlitz:Play("kick1r")
elseif count == 2 then
specWarnShurikenBlitz:Play("kick2r")
elseif count == 3 then
specWarnShurikenBlitz:Play("kick3r")
elseif count == 4 then
specWarnShurikenBlitz:Play("kick4r")
elseif count == 5 then
specWarnShurikenBlitz:Play("kick5r")
else
specWarnShurikenBlitz:Play("kickcast")
end
end
elseif spellId == 350875 then
self.vb.hyperlightCount = self.vb.hyperlightCount + 1
specWarnHyperlightJolt:Show(self.vb.hyperlightCount)
specWarnHyperlightJolt:Play("specialsoon")
timerHyperlightJoltCD:Start()
elseif spellId == 351096 then
specWarnEnergyFragmentation:Show()
specWarnEnergyFragmentation:Play("watchwave")--wave or orb?
timerEnergyFragmentationCD:Start()
elseif spellId == 351646 then
specWarnHyperlightNova:Show()
specWarnHyperlightNova:Play("watchstep")
timerHyperlightNovaCD:Start()
end
end
function mod:SPELL_CAST_SUCCESS(args)
local spellId = args.spellId
if spellId == 351086 then
self:SetStage(2)
self.vb.hyperlightCount = 0
self.vb.starCount = 0
warnPhase2:Show()
warnPhase2:Play("ptwo")
timerHyperlightSparkCD:Stop()
timerCollapsingStarCD:Stop()
timerSummonAssassinsCD:Stop()
timerHyperlightJoltCD:Start(2)
timerCollapsingStarCD:Start(2)
timerEnergyFragmentationCD:Start(2)
timerHyperlightNovaCD:Start(2)
end
end
function mod:SPELL_AURA_APPLIED(args)
local spellId = args.spellId
if spellId == 357190 then
if self.Options.InfoFrame and not DBM.InfoFrame:IsShown() then
DBM.InfoFrame:SetHeader(args.spellName)
DBM.InfoFrame:Show(5, "playerbaddebuff", 357190)
end
end
end
--[[
function mod:SPELL_AURA_REMOVED(args)
local spellId = args.spellId
if spellId == 322681 then
end
end
function mod:SPELL_PERIODIC_DAMAGE(_, _, _, _, destGUID, _, _, _, spellId, spellName)
if spellId == 320366 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_DIED(args)
local cid = self:GetCIDFromGUID(args.destGUID)
if cid == 164578 then
end
end
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, spellId)
if spellId == 257453 then
end
end
--]]