From 47542c7147c4329505e2a67d25c585ca935a5945 Mon Sep 17 00:00:00 2001 From: omicron Date: Thu, 14 Dec 2023 19:43:22 +0100 Subject: [PATCH] Expand config with more auras --- src/frames.lua | 29 +++++++++++++++++++++++++++++ src/types/auralist.lua | 11 +++++++++++ 2 files changed, 40 insertions(+) diff --git a/src/frames.lua b/src/frames.lua index b9336ea..b7b63cd 100644 --- a/src/frames.lua +++ b/src/frames.lua @@ -411,12 +411,41 @@ local function TriggerConfig() { 3, 408429, colors.violet }, -- Void Slash (P3 tank) { 2, 404218, colors.blue }, -- Void Fracture (carry bomb) { 1, 401951, colors.cyan, true }, -- Oblivion + + -- Darkheart Thicket + { 3, 225484, colors.violet }, -- Grievous Rip + { 3, 196376, colors.violet }, -- Grievous Tear + + -- Throne of the Tides + { 1, 426660, colors.red, true }, -- Razor Jaws + + -- Nymue, Amirdrassil + { 1, 429785, colors.red }, -- Loom (line stun) + { 1, 417807, colors.red, true }, -- Fyrakk + + } for _, debuff in ipairs(debuffs) do table.insert(triggers, MakeDebuffTrigger(debuff[1], debuff[2], debuff[3], debuff[4])) end + -- Some more debuffs in the bottom row + table.insert(triggers, { + kind = "AuraTrigger", + spellId = 240443, -- Bursting + indicator = { + kind = "SquareIndicator", + size = 17, + point = "BOTTOMRIGHT", + x = -3, + y = 3, + color = colors.red, + fadeTime = 3.0, + showStacks = true, + } + }) + return triggers end diff --git a/src/types/auralist.lua b/src/types/auralist.lua index 11daab4..ee66792 100644 --- a/src/types/auralist.lua +++ b/src/types/auralist.lua @@ -41,6 +41,7 @@ local statusLists = { [411241] = true, -- Sarkareth, Void Claws (p2 tank) [408429] = true, -- Sarkareth, Void Slash (p3 tank) [404218] = true, -- Sarkareth, Void fracture (bombs) + [427722] = true, -- Nymue, Weaver's Burden (hehe jk it's private because reasons) }, Burn = { -- Jade Serpent Temple @@ -68,6 +69,8 @@ local statusLists = { -- Atal'Dazar [255582] = true, -- Priestess Alun'za, Molten Gold + [250096] = true, -- Yazma, Wracking pain + [255434] = true, -- Rezan, Serrated Teeth -- The MOTHERLODE!! [259853] = true, -- Rixxa Fluxflame, Chemical Burn @@ -104,6 +107,14 @@ local statusLists = { -- Aberrus [404010] = true, -- Zkarn, ??? [405462] = true, -- Zkarn, ??? + + -- Dawn of the infinite: Galakrond's fall + [407406] = true, + + -- Darkheart Thicket + + -- Amirdrassil + [427721] = true, -- Nymue, Weaver's burden (dot part) }, }