forked from Hyperioxes/AlchemyTooltips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefaultSettings.lua
63 lines (56 loc) · 1.31 KB
/
DefaultSettings.lua
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
ATT_defaultSettings = {
TTCuse = true,
MMuse = true,
ATTuse = true,
TTCMultiplier = 1,
MMMultiplier = 1,
ATTMultiplier = 1,
useOld = false,
useTooltips = true,
useCustomNames = true,
useCustomIcons = true,
useCustomQualities = true,
showCraftCost = true,
craftingCostQualityBrackets = {
[0] = 0,
[1] = 0,
[2] = 100,
[3] = 200,
[4] = 300,
[5] = 500,
},
effectsByWritIDShort = {
[1] = "+Health",
[2] = "-Health",
[3] = "+Magicka",
[4] = "-Magicka",
[5] = "+Stamina",
[6] = "-Stamina",
[7] = "+SpellRes",
[8] = "-SpellRes",
[9] = "+Armor",
[10] = "-Armor",
[11] = "+SpellPower",
[12] = "-Power",
[13] = "+WeaponPower",
[14] = "-Damage",
[15] = "+SpellCrit",
[16] = "-Crit",
[17] = "+WeaponCrit",
[18] = "-CritDmg",
[19] = "Unstoppable",
[20] = "Stun/Immobilize",
[21] = "Detection",
[22] = "Invisibility",
[23] = "+Speed",
[24] = "-Speed",
[25] = "+Protection",
[26] = "-Vulnerability",
[27] = "+HealthOverTime",
[28] = "-HealthOverTime",
[29] = "+Vitality",
[30] = "-Defile",
[31] = "+Heroism",
[32] = "-Heroism",
},
}