mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
update some more (still needs more work)
This commit is contained in:
+136
-7
@@ -11,8 +11,7 @@ G["general"] = {
|
||||
["position"] = "BOTTOMLEFT",
|
||||
["xOffset"] = 0,
|
||||
["yOffset"] = 0
|
||||
},
|
||||
["versionCheck"] = true
|
||||
}
|
||||
}
|
||||
|
||||
G["classCache"] = {}
|
||||
@@ -21,11 +20,6 @@ G["classtimer"] = {}
|
||||
|
||||
G["nameplates"] = {}
|
||||
|
||||
G["unitframe"] = {
|
||||
["specialFilters"] = {},
|
||||
["aurafilters"] = {}
|
||||
}
|
||||
|
||||
G["chat"] = {
|
||||
["classColorMentionExcludedNames"] = {}
|
||||
}
|
||||
@@ -34,6 +28,141 @@ G["bags"] = {
|
||||
["ignoredItems"] = {}
|
||||
}
|
||||
|
||||
G["unitframe"] = {
|
||||
["aurafilters"] = {},
|
||||
["buffwatch"] = {},
|
||||
["raidDebuffIndicator"] = {
|
||||
["instanceFilter"] = "RaidDebuffs",
|
||||
["otherFilter"] = "CCDebuffs",
|
||||
},
|
||||
["spellRangeCheck"] = {
|
||||
["PRIEST"] = {
|
||||
["enemySpells"] = {
|
||||
[585] = true, -- Smite (30 yards)
|
||||
},
|
||||
["longEnemySpells"] = {
|
||||
[589] = true, -- Shadow Word: Pain (30 yards)
|
||||
},
|
||||
["friendlySpells"] = {
|
||||
[2050] = true, -- Lesser Heal (40 yards)
|
||||
},
|
||||
["resSpells"] = {
|
||||
[2006] = true, -- Resurrection (30 yards)
|
||||
},
|
||||
["petSpells"] = {},
|
||||
},
|
||||
["DRUID"] = {
|
||||
["enemySpells"] = {
|
||||
[33786] = true, -- Cyclone (20 yards)
|
||||
},
|
||||
["longEnemySpells"] = {
|
||||
[5176] = true, -- Wrath (30 yards)
|
||||
},
|
||||
["friendlySpells"] = {
|
||||
[5185] = true, -- Healing Touch (40 yards)
|
||||
},
|
||||
["resSpells"] = {
|
||||
[20484] = true, -- Rebirth (30 yards)
|
||||
},
|
||||
["petSpells"] = {},
|
||||
},
|
||||
["PALADIN"] = {
|
||||
["enemySpells"] = {
|
||||
[20271] = true, -- Judgement (10 yards)
|
||||
},
|
||||
["longEnemySpells"] = {
|
||||
[879] = true, -- Exorcism (30 yards)
|
||||
},
|
||||
["friendlySpells"] = {
|
||||
[635] = true, -- Holy Light (40 yards)
|
||||
},
|
||||
["resSpells"] = {
|
||||
[7328] = true, -- Redemption (30 yards)
|
||||
},
|
||||
["petSpells"] = {},
|
||||
},
|
||||
["SHAMAN"] = {
|
||||
["enemySpells"] = {
|
||||
[8042] = true, -- Earth Shock (20 yards)
|
||||
},
|
||||
["longEnemySpells"] = {
|
||||
[403] = true, -- Lightning Bolt (30 yards)
|
||||
},
|
||||
["friendlySpells"] = {
|
||||
[331] = true, -- Healing Wave (40 yards)
|
||||
},
|
||||
["resSpells"] = {
|
||||
[2008] = true, -- Ancestral Spirit (30 yards)
|
||||
},
|
||||
["petSpells"] = {},
|
||||
},
|
||||
["WARLOCK"] = {
|
||||
["enemySpells"] = {
|
||||
[5782] = true, -- Fear (20 yards)
|
||||
},
|
||||
["longEnemySpells"] = {
|
||||
[686] = true, -- Shadow Bolt (30 yards)
|
||||
},
|
||||
["friendlySpells"] = {
|
||||
[5697] = true, -- Unending Breath (30 yards)
|
||||
},
|
||||
["resSpells"] = {},
|
||||
["petSpells"] = {
|
||||
[755] = true, -- Health Funnel (20 yards)
|
||||
},
|
||||
},
|
||||
["MAGE"] = {
|
||||
["enemySpells"] = {
|
||||
[2136] = true, -- Fire Blast (20 yards)
|
||||
[12826] = true, -- Polymorph (30 yards)
|
||||
},
|
||||
["longEnemySpells"] = {
|
||||
[133] = true, -- Fireball (35 yards)
|
||||
},
|
||||
["friendlySpells"] = {
|
||||
[475] = true, -- Remove Curse (40 yards)
|
||||
},
|
||||
["resSpells"] = {},
|
||||
["petSpells"] = {},
|
||||
},
|
||||
["HUNTER"] = {
|
||||
["enemySpells"] = {
|
||||
[75] = true, -- Auto Shot (35 yards)
|
||||
},
|
||||
["longEnemySpells"] = {},
|
||||
["friendlySpells"] = {},
|
||||
["resSpells"] = {},
|
||||
["petSpells"] = {
|
||||
[136] = true, -- Mend Pet (45 yards)
|
||||
},
|
||||
},
|
||||
["ROGUE"] = {
|
||||
["enemySpells"] = {
|
||||
[2094] = true, -- Blind (10 yards)
|
||||
},
|
||||
["longEnemySpells"] = {
|
||||
[26679] = true, -- Deadly Throw (30 yards)
|
||||
},
|
||||
["friendlySpells"] = {},
|
||||
["resSpells"] = {},
|
||||
["petSpells"] = {},
|
||||
},
|
||||
["WARRIOR"] = {
|
||||
["enemySpells"] = {
|
||||
[5246] = true, -- Intimidating Shout (10 yards)
|
||||
},
|
||||
["longEnemySpells"] = {
|
||||
[100] = true, -- Charge (25 yards)
|
||||
},
|
||||
["friendlySpells"] = {
|
||||
[3411] = true, -- Intervene (25 yards)
|
||||
},
|
||||
["resSpells"] = {},
|
||||
["petSpells"] = {},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
G["profileCopy"] = {
|
||||
--Specific values
|
||||
["selected"] = "Minimalistic",
|
||||
|
||||
@@ -828,10 +828,6 @@ P["unitframe"] = {
|
||||
["size"] = 22,
|
||||
["texture"] = "DEFAULT"
|
||||
},
|
||||
["raidRoleIcons"] = {
|
||||
["enable"] = true,
|
||||
["position"] = "TOPLEFT"
|
||||
},
|
||||
["CombatIcon"] = {
|
||||
["enable"] = true,
|
||||
["defaultColor"] = true,
|
||||
@@ -1980,10 +1976,6 @@ P["unitframe"] = {
|
||||
["frameLevel"] = 1
|
||||
}
|
||||
},
|
||||
["raidRoleIcons"] = {
|
||||
["enable"] = true,
|
||||
["position"] = "TOPLEFT"
|
||||
},
|
||||
["petsGroup"] = {
|
||||
["enable"] = false,
|
||||
["width"] = 100,
|
||||
@@ -2180,10 +2172,6 @@ P["unitframe"] = {
|
||||
["color"] = {r = 1, g = 0.9, b = 0, a = 1}
|
||||
}
|
||||
},
|
||||
["raidRoleIcons"] = {
|
||||
["enable"] = true,
|
||||
["position"] = "TOPLEFT"
|
||||
},
|
||||
["raidicon"] = {
|
||||
["enable"] = true,
|
||||
["size"] = 18,
|
||||
@@ -2338,10 +2326,6 @@ P["unitframe"] = {
|
||||
["color"] = {r = 1, g = 0.9, b = 0, a = 1}
|
||||
}
|
||||
},
|
||||
["raidRoleIcons"] = {
|
||||
["enable"] = true,
|
||||
["position"] = "TOPLEFT"
|
||||
},
|
||||
["buffIndicator"] = {
|
||||
["enable"] = true,
|
||||
["size"] = 8,
|
||||
|
||||
Reference in New Issue
Block a user