Commit bd6e9fbe authored by Ivaria's avatar Ivaria
Browse files

Added debuff absorption tracking for ToS 'Embrace of the Eclipse'

parent 9d6a2a4f
......@@ -363,6 +363,7 @@ VUHDO_SPELL_ID.DEBUFF_OVERFLOW = VUHDO_getSpellInfo(221772);
VUHDO_SPELL_ID.DEBUFF_SHADOW_LICK = VUHDO_getSpellInfo(228253);
VUHDO_SPELL_ID.DEBUFF_CORRUPTED_AXION = VUHDO_getSpellInfo(232450);
VUHDO_SPELL_ID.DEBUFF_TIME_RELEASE = VUHDO_getSpellInfo(206609);
VUHDO_SPELL_ID.DEBUFF_EMBRACE_OF_THE_ECLIPSE = VUHDO_getSpellInfo(233263);
--
......
......@@ -57,6 +57,9 @@ local VUHDO_ABSORB_DEBUFFS = {
[219965] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_TIME_RELEASE)), 10 * 60; end, -- Chronomatic Anomaly Time Release Yellow
[219966] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_TIME_RELEASE)), 10 * 60; end, -- Chronomatic Anomaly Time Release Red
-- Patch 7.2.5 - Legion - Tomb of Sargeras
[233263] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_EMBRACE_OF_THE_ECLIPSE)), 10 * 60; end, -- Sisters Embrace of the Eclipse
--[79105] = function(aUnit) return 280000, 60 * 60; end, -- @TESTING PW:F
};
......
......@@ -19,6 +19,7 @@ Bugfixes:
Improvements:
-- Added default custom debuffs for Tomb of Sargeras raid encounters
-- Added debuff absorption tracking for ToS 'Embrace of the Eclipse'
--------------------------------------------------------------
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment