-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathORB_Config.lua
More file actions
40 lines (36 loc) · 1.01 KB
/
ORB_Config.lua
File metadata and controls
40 lines (36 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
if select(2, UnitClass("player")) ~= "DEATHKNIGHT" then
-- Don't do anything if player isn't a Death Knight
return
end
ORB_Config_Defaults = {
["Runes"] = {
["Position"] = { "CENTER", nil, "CENTER", 0, -135, },
["Color"] = { [1] = 0.8, [2] = 0.7, [3] = 0.9, [4] = 1 },
["BarSize"] = { 46, 10 },
["BorderSize"] = 1,
["FontSize"] = 12,
},
["Diseases"] = {
["Colors"] = {
["ff"] = { 0, 0.5, 1, 1, }, -- Frost Fever
["bp"] = { 0, 0.7, 0, 1, }, -- Blood Plague
["vp"] = { 0.34, 0.22, 0, 1, }, -- Virulent Plague
},
["Position"] = { "CENTER", nil, "CENTER", 160, -13, },
["BarSize"] = { 98, 10 },
["BorderSize"] = 1,
["IconSize"] = 18,
["FontSize"] = 12,
},
["RunicPower"] = {
["Colors"] = { [1] = 0.2, [2] = 0.7, [3] = 1, [4] = 1 },
["Position"] = { "CENTER", nil, "CENTER", 0, -150, },
["BarSize"] = { 306, 10 },
["BorderSize"] = 1,
["FontSize"] = 12,
},
-- Out of Combat settings
["OOC_Alpha"] = 0.7,
["OOC_NotAllReadyAlpha"] = 0.7,
["SeenTRBTransition"] = false
};