local mod = DBM:NewMod(2436, "DBM-Party-Shadowlands", 9, 1194) local L = mod:GetLocalizedStrings() mod:SetRevision("20210620030927") mod:SetCreatureID(175646) mod:SetEncounterID(2424) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_START 346947 346286 346742 346293", "SPELL_CAST_SUCCESS 346962", "SPELL_AURA_APPLIED 346844 346329 346962 346403 356374", "SPELL_AURA_REMOVED 346962" -- "SPELL_PERIODIC_DAMAGE", -- "SPELL_PERIODIC_MISSED", -- "UNIT_DIED" -- "UNIT_SPELLCAST_SUCCEEDED boss1" ) --TODO, package tracking with icon/infoframe for tosses as well? local warnHazardousLiquids = mod:NewSpellAnnounce(346286, 2) local warnAlchemicalResidue = mod:NewTargetNoFilterAnnounce(346844, 2, nil, "RemoveMagic") local warnUnstableGoods = mod:NewTargetNoFilterAnnounce(346403, 2)--Holding package local specWarnUnstableGoods = mod:NewSpecialWarningCount(346947, nil, nil, nil, 1, 2) local specWarnFanMail = mod:NewSpecialWarningCount(346293, nil, nil, nil, 2, 2) local specWarnMoneyOrder = mod:NewSpecialWarningMoveTo(346962, nil, nil, nil, 1, 2) local yellMoneyOrder = mod:NewYell(346962, nil, nil, nil, "YELL") local yellMoneyOrderFades = mod:NewShortFadesYell(346962, nil, nil, nil, "YELL") local specWarnGTFO = mod:NewSpecialWarningGTFO(346329, nil, nil, nil, 1, 8) local timerUnstableGoodsCD = mod:NewAITimer(11, 346947, nil, nil, nil, 5) local timerHazardousLiquidsCD = mod:NewAITimer(11, 346947, nil, nil, nil, 3) local timerFanMailCD = mod:NewAITimer(15.8, 346293, nil, nil, nil, 2, nil, DBM_CORE_L.HEALER_ICON) local timerMoneyOrderCD = mod:NewAITimer(11, 346962, nil, nil, nil, 3) mod.vb.goodPhase = 0 mod.vb.fanCount = 0 function mod:OnCombatStart(delay) self.vb.goodPhase = 0 self.vb.fanCount = 0 timerUnstableGoodsCD:Start(1-delay) timerHazardousLiquidsCD:Start(1-delay) timerFanMailCD:Start(1-delay) timerMoneyOrderCD:Start(1-delay) end function mod:SPELL_CAST_START(args) local spellId = args.spellId if spellId == 346947 then self.vb.goodPhase = self.vb.goodPhase + 1 specWarnUnstableGoods:Show(self.vb.goodPhase) specWarnUnstableGoods:Play("specialsoon") timerUnstableGoodsCD:Start() elseif spellId == 346286 then warnHazardousLiquids:Show() timerHazardousLiquidsCD:Start() elseif spellId == 346742 or spellId == 346293 then--Which one used? or maybe it's hard and non hard? self.vb.fanCount = self.vb.fanCount + 1 specWarnFanMail:Show(self.vb.fanCount) specWarnFanMail:Play("aesoon") timerFanMailCD:Start() end end function mod:SPELL_CAST_SUCCESS(args) local spellId = args.spellId if spellId == 346962 then timerMoneyOrderCD:Start() end end function mod:SPELL_AURA_APPLIED(args) local spellId = args.spellId if spellId == 346844 then warnAlchemicalResidue:CombinedShow(1, args.destName) elseif spellId == 346329 and args:IsPlayer() and self:AntiSpam(3, 1) then specWarnGTFO:Show(args.spellName) specWarnGTFO:Play("watchfeet") elseif spellId == 346962 then if args:IsPlayer() then specWarnMoneyOrder:Show(DBM_CORE_L.ALLIES) yellMoneyOrder:Yell() yellMoneyOrderFades:Countdown(spellId) else specWarnMoneyOrder:Show(args.destName) end specWarnMoneyOrder:Play("gathershare") elseif spellId == 356374 or spellId == 346403 then--Hard, non Hard warnUnstableGoods:Show(args.destName) end end function mod:SPELL_AURA_REMOVED(args) local spellId = args.spellId if spellId == 346962 then if args:IsPlayer() then yellMoneyOrderFades:Cancel() end 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 --]]