Commit 0ca67887 authored by Ivaria's avatar Ivaria
Browse files

Added default custom debuffs for Nighthold raid encounters. Added debuff...

Added default custom debuffs for Nighthold raid encounters. Added debuff absorption tracking for Nighthold 'Time Release'.
parent 25260e7b
......@@ -362,6 +362,7 @@ VUHDO_SPELL_ID.DEBUFF_MOMENTUM = VUHDO_getSpellInfo(198108);
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);
--
......
......@@ -1469,6 +1469,45 @@ function VUHDO_loadDefaultConfig()
232488 -- Dark Hatred
);
-- 7.1.5 - Legion - Nighthold
VUHDO_addCustomSpellIds(34,
-- [[ Nighthold ]]
-- Skorpyron
204766, -- Energy Surge
211659, -- Arcane Tether
-- Chronomatic Anomaly
206607, -- Chronometric Particles
206609, -- Time Release
206615, -- Time Bomb
-- Trilliax
-- Spellblade Aluriel
212587, -- Mark of Frost
-- Tichondrius
206480, -- Carrion Plague
212795, -- Brand of Argus
208230, -- Feast of Blood
216024, -- Volatile Wound
216040, -- Burning Soul
-- Krosus
-- High Botanist Tel'arn
218502, -- Recursive Strikes
219049, -- Toxic Spores
218424, -- Parasitic Fetter
-- Star Augur Etraeus
206585, -- Absolute Zero
206388, -- Felburst
205649, -- Fel Ejection
206965, -- Voidburst
207143, -- Void Ejection
-- Grand Magistrix Elisande
-- Gul'dan
212568, -- Drain
206883, -- Soul Vortex
206222, -- Bonds of Fel
206221, -- Empowered Bonds of Fel
208802 -- Soul Corrosion
);
local debuffRemovalList = {};
for tIndex, tName in pairs(VUHDO_CONFIG["CUSTOM_DEBUFF"]["STORED"]) do
......
......@@ -51,6 +51,9 @@ local VUHDO_ABSORB_DEBUFFS = {
[228253] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_SHADOW_LICK)), 10 * 60; end, -- Shadow Lick
[232450] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_CORRUPTED_AXION)), 10 * 60; end, -- Corrupted Axion
-- Patch 7.1.5 - Legion - Nighthold
[206609] = function(aUnit) return select(17, UnitDebuff(aUnit, VUHDO_SPELL_ID.DEBUFF_TIME_RELEASE)), 10 * 60; end, -- Chronomatic Anomaly Time Release
--[79105] = function(aUnit) return 280000, 60 * 60; end, -- @TESTING PW:F
};
......
......@@ -29,6 +29,8 @@ Improvements:
-- Added bouquet validator 'Icon: Trail of Light'
-- Added default bouquet 'Trail of Light'
-- Added panel sort method 'Tank => MDPS => RDPS => Healer'
-- Added default custom debuffs for Nighthold raid encounters
-- Added debuff absorption tracking for Nighthold 'Time Release'
--------------------------------------------------------------
......
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