From d6351dbe883a80289340a202bc9c47250ac4eb07 Mon Sep 17 00:00:00 2001 From: Sumsebrum Date: Thu, 3 Mar 2022 23:41:25 +0100 Subject: [PATCH] add riposte, disarm, will of the forsaken to auras --- Constants.lua | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/Constants.lua b/Constants.lua index 3f39ba3..eecf7f6 100644 --- a/Constants.lua +++ b/Constants.lua @@ -579,7 +579,13 @@ local importantAuras = { priority = 10, spellID = 26669, }, - + -- Riposte + [GetSpellInfo(14251)] = { + track = AURA_TYPE_DEBUFF, + duration = 6, + priority = 20, + spellID = 14251, + }, -- Fear [GetSpellInfo(5782)] = { @@ -708,6 +714,13 @@ local importantAuras = { spellSchool = "magic", spellID = 12292, }, + --Disarm + [GetSpellInfo(676)] = { + track = AURA_TYPE_DEBUFF, + duration = 10, + priority = 20, + spellID = 676, + }, -- Grounding Totem Effect [GetSpellInfo(8178)] = { @@ -805,6 +818,13 @@ local importantAuras = { spellID = 5024, altName = select(1, GetSpellInfo(5024)) .. " - " .. (select(1, GetItemInfo(4984)) or "Skull of Impending Doom"), }, + -- Will of the Forsaken + [GetSpellInfo(7744)] = { + track = AURA_TYPE_BUFF, + duration = 5, + priority = 15, + spellID = 7744, + }, } function Gladdy:GetImportantAuras() return importantAuras