-
Notifications
You must be signed in to change notification settings - Fork 1
/
objCharts.js
112 lines (111 loc) · 1.85 KB
/
objCharts.js
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
let objChart = { //def not robbed from zmx
1715: 9,
1716: 365,
1719: 61,
1720: 243,
1721: 244,
1725: 421,
1726: 422,
1148: 193,
1743: 289,
1744: 291,
1705: 88,
1706: 89,
1707: 98,
1825: 251,
1891: 199,
1708: 397,
1709: 398,
1710: 399,
1910: 195,
1911: 196,
1747: 309,
1748: 311,
1711: 135,
1712: 135,
1713: 135,
1714: 135,
915: 104,
1903: 40,
1890: 198,
1889: 191,
1891: 199,
1892: 393,
1260: 468,
1717: 363,
1718: 364,
1903: 40,
1904: 369,
1905: 370,
1906: 371,
1907: 372,
1908: 373,
1909: 374,
1142: 164,
1722: 368,
1723: 366,
1724: 367,
1728: 446,
1729: 447,
1745: 299,
1746: 301,
1749: 315,
1750: 317,
1825: 251,
1140: 162,
1141: 163,
1143: 165,
1144: 166,
1145: 167,
1146: 168,
1147: 169,
1011: 503,
1012: 504,
1013: 505,
1820: 247,
1821: 248,
1823: 249,
1824: 250,
1826: 252,
1827: 253,
1828: 254
} //It was totally robbed from zmx I lied to you
let colObjs = {
1000: 29,
1001: 30,
1002: 104,
1004: 105,
1: 221 //Col1 support for 1.7-1.8.
}
let legacyValues = {
'1000': { //bg
red: 'kS1',
green: 'kS2',
blue: 'kS3'
},
'1001': { //gr
red: 'kS4',
green: 'kS5',
blue: 'kS6'
},
'1002': { //ln
red: 'kS7',
green: 'kS8',
blue: 'kS9'
},
'1004': { //obj
red: 'kS10',
green: 'kS11',
blue: 'kS12'
},
'1005': { //col1
red: 'kS13',
green: 'kS14',
blue: 'kS15'
}
}
module.exports = {
objChart,
colObjs,
legacyValues
}