Expand config with more auras
This commit is contained in:
@@ -411,12 +411,41 @@ local function TriggerConfig()
|
|||||||
{ 3, 408429, colors.violet }, -- Void Slash (P3 tank)
|
{ 3, 408429, colors.violet }, -- Void Slash (P3 tank)
|
||||||
{ 2, 404218, colors.blue }, -- Void Fracture (carry bomb)
|
{ 2, 404218, colors.blue }, -- Void Fracture (carry bomb)
|
||||||
{ 1, 401951, colors.cyan, true }, -- Oblivion
|
{ 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
|
for _, debuff in ipairs(debuffs) do
|
||||||
table.insert(triggers, MakeDebuffTrigger(debuff[1], debuff[2], debuff[3], debuff[4]))
|
table.insert(triggers, MakeDebuffTrigger(debuff[1], debuff[2], debuff[3], debuff[4]))
|
||||||
end
|
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
|
return triggers
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@@ -41,6 +41,7 @@ local statusLists = {
|
|||||||
[411241] = true, -- Sarkareth, Void Claws (p2 tank)
|
[411241] = true, -- Sarkareth, Void Claws (p2 tank)
|
||||||
[408429] = true, -- Sarkareth, Void Slash (p3 tank)
|
[408429] = true, -- Sarkareth, Void Slash (p3 tank)
|
||||||
[404218] = true, -- Sarkareth, Void fracture (bombs)
|
[404218] = true, -- Sarkareth, Void fracture (bombs)
|
||||||
|
[427722] = true, -- Nymue, Weaver's Burden (hehe jk it's private because reasons)
|
||||||
},
|
},
|
||||||
Burn = {
|
Burn = {
|
||||||
-- Jade Serpent Temple
|
-- Jade Serpent Temple
|
||||||
@@ -68,6 +69,8 @@ local statusLists = {
|
|||||||
|
|
||||||
-- Atal'Dazar
|
-- Atal'Dazar
|
||||||
[255582] = true, -- Priestess Alun'za, Molten Gold
|
[255582] = true, -- Priestess Alun'za, Molten Gold
|
||||||
|
[250096] = true, -- Yazma, Wracking pain
|
||||||
|
[255434] = true, -- Rezan, Serrated Teeth
|
||||||
|
|
||||||
-- The MOTHERLODE!!
|
-- The MOTHERLODE!!
|
||||||
[259853] = true, -- Rixxa Fluxflame, Chemical Burn
|
[259853] = true, -- Rixxa Fluxflame, Chemical Burn
|
||||||
@@ -104,6 +107,14 @@ local statusLists = {
|
|||||||
-- Aberrus
|
-- Aberrus
|
||||||
[404010] = true, -- Zkarn, ???
|
[404010] = true, -- Zkarn, ???
|
||||||
[405462] = 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)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user