if DBM:IsSeasonal() then return end--In SoM Flamegor and Ebonroc are a single encounter local mod = DBM:NewMod("Ebonroc", "DBM-BWL", 1) local L = mod:GetLocalizedStrings() mod:SetRevision("20220208052442") mod:SetCreatureID(14601) mod:SetEncounterID(614) mod:SetModelID(6377) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_START 23339 22539", "SPELL_AURA_APPLIED 23340", "SPELL_AURA_REMOVED 23340" ) --(ability.id = 23339 or ability.id = 22539) and type = "begincast" local warnWingBuffet = mod:NewCastAnnounce(23339, 2) local warnShadowFlame = mod:NewCastAnnounce(22539, 2) local warnShadow = mod:NewTargetNoFilterAnnounce(23340, 4, nil, "Tank|Healer", 2) local specWarnShadowYou = mod:NewSpecialWarningYou(23340, nil, nil, nil, 1, 2) local specWarnShadow = mod:NewSpecialWarningTaunt(23340, nil, nil, nil, 1, 2) local timerWingBuffet = mod:NewCDTimer(31, 23339, nil, nil, nil, 2) local timerShadowFlameCD = mod:NewCDTimer(14, 22539, nil, false)--14-21 local timerShadow = mod:NewTargetTimer(8, 23340, nil, "Tank|Healer", 3, 5, nil, DBM_COMMON_L.TANK_ICON) function mod:OnCombatStart(delay) timerShadowFlameCD:Start(18-delay) timerWingBuffet:Start(30-delay) end do local WingBuffet, ShadowFlame = DBM:GetSpellInfo(23339), DBM:GetSpellInfo(22539) function mod:SPELL_CAST_START(args)--did not see ebon use any of these abilities --if args.spellId == 23339 then if args.spellName == WingBuffet then warnWingBuffet:Show() timerWingBuffet:Start() --elseif args.spellId == 22539 then elseif args.spellName == ShadowFlame then warnShadowFlame:Show() timerShadowFlameCD:Start() end end end do local ShadowofEbonroc = DBM:GetSpellInfo(23340) function mod:SPELL_AURA_APPLIED(args) --if args.spellId == 23340 then if args.spellName == ShadowofEbonroc then if args:IsPlayer() then specWarnShadowYou:Show() specWarnShadowYou:Play("targetyou") else if self.Options.SpecWarn23340taunt and (self:IsTank() or not DBM.Options.FilterTankSpec) then specWarnShadow:Show(args.destName) specWarnShadow:Play("tauntboss") else warnShadow:Show(args.destName) end end timerShadow:Start(args.destName) end end function mod:SPELL_AURA_REMOVED(args) --if args.spellId == 23340 then if args.spellName == ShadowofEbonroc then timerShadow:Stop(args.destName) end end end