aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/elisis/gtnhlanth/common/register/BotWerkstoffMaterialPool.java
blob: e5e21a97d3c36ff4338870f35d80f9ead321e0a1 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
package com.elisis.gtnhlanth.common.register;

import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
import com.github.bartimaeusnek.bartworks.util.Pair;

import static gregtech.api.enums.Materials.*;
import static gregtech.api.enums.TextureSet.*;

import static com.github.bartimaeusnek.bartworks.system.material.Werkstoff.Types.*;
import static com.github.bartimaeusnek.bartworks.util.BW_Util.subscriptNumbers;


/*
 * 
 * Originally authored by botn365 under the MIT License. See BotdustriesLICENSE
 *
 */
@SuppressWarnings("unchecked")
public class BotWerkstoffMaterialPool implements Runnable {
	
	public static final Werkstoff TungsticAcid = new Werkstoff(
            new short[]{0xf5, 0xf1, 0x16},
            "Tungstic Acid",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust().enforceUnification(),
            29900,
            SET_SHINY,
            new Pair<>(Hydrogen,2),
            new Pair<>(Tungsten,1),
            new Pair<>(Oxygen,4)
    );
    public static final Werkstoff TungstenTrioxide = new Werkstoff(
            new short[]{0x0f,0x5,0x16},
            "Tungsten Trioxide",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust().enforceUnification(),
            29901,
            SET_SHINY,
            new Pair<>(Tungsten, 1),
            new Pair<>(Oxygen,3)
    );
//    public static final Werkstoff TungstenSteelOxide = new Werkstoff(
//            new short[]{0x1f,0x27,0x69},
//            "Tungstensteel Oxide",
//            new Werkstoff.Stats(),
//            COMPOUND,
//            new Werkstoff.GenerationFeatures().onlyDust(),
//            29902,
//            SET_FINE,
//            new Pair<>(Tungsten, 1),
//            new Pair<>(Oxygen,3),
//            new Pair<>(Steel,1)
//    );
    public static final Werkstoff AmmoniumNitrate = new Werkstoff(
            new short[]{0x81,0xcc,0x00},
            "Ammonium nitrate",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust(),
            29903,
            SET_FINE,
            new Pair<>(Nitrogen,1),
            new Pair<>(Hydrogen,4),
            new Pair<>(Nitrogen,1),
            new Pair<>(Oxygen,3)
    );
    public static final Werkstoff SodiumTungstate = new Werkstoff(
            new short[]{0xc, 0xed, 0xd7,0},
            "Sodium Tungstate",
            subscriptNumbers("Na2WO4"),
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29904,
            SET_FINE
    );
    public static final Werkstoff Phosgene = new Werkstoff(
            new short[]{0x15,0xa1,0x1a},
            "Phosgene",
            subscriptNumbers("COCl2"),
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29905,
            SET_FINE
    );
    public static final Werkstoff Ethylchloroformate = new Werkstoff(
            new short[]{0x0a,0xc2,0xcc},
            "Ethyl Chloroformate",
            subscriptNumbers("C3H5ClO2"),
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29906,
            SET_FINE
    );
    public static final Werkstoff Ethylcarbamate = new Werkstoff(
            new short[]{0x0d,0xa9,0xb8},
            "Ethyl Carbamate",
            subscriptNumbers("CH3CH2OCNH2"),
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29907,
            SET_FINE
    );
    public static final Werkstoff EthylNnitrocarbamate = new Werkstoff(
            new short[]{0x0d,0x85,0xb8},
            "Ethyl N-nitrocarbamate",
            subscriptNumbers("C3H6N2O4"),
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29908,
            SET_FINE
    );
    public static final Werkstoff AmmoniumNnitrourethane = new Werkstoff(
            new short[]{0x0d,0x54,0xb8},
            "Ammonium N-nitrourethane",
            subscriptNumbers("C3H10N3O4"),
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29909,
            SET_FINE
    );
    public static final Werkstoff EthylDinitrocarbamate = new Werkstoff(
            new short[]{0x39,0x08,0xc2},
            "Ethyl Dinitrocarbamate",
            subscriptNumbers("C3H5N3O6"),
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29910,
            SET_FINE
    );
    public static final Werkstoff DinitrogenPentoxide = new Werkstoff(
            new short[]{0xcf,0xeb,0x34},
            "Dinitrogen Pentoxide",
            subscriptNumbers("N2O5"),
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust(),
            29911,
            SET_FINE
    );
    public static final Werkstoff AmmoniumDinitramide = new Werkstoff(
            new short[]{0x8a,0x0f,0xd1},
            "Ammonium Dinitramide",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29912,
            SET_FINE
    );
    public static final Werkstoff LMP103S = new Werkstoff(
            new short[]{0xbf,0x2f,0xc2},
            "LMP-103S",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29913,
            SET_FINE
    );
    public static final Werkstoff OXylene = new Werkstoff(
            new short[]{0x88,0x94,0xa8},
            "O-Xylene",
            new Werkstoff.Stats().setGas(true),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29915,
            SET_FINE
    );
    public static final Werkstoff PhthalicAnhydride = new Werkstoff(
            new short[]{0x7c,0x99,0x42},
            "Phthalic Anhydride",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust(),
            29916,
            SET_METALLIC
    );
    public static final Werkstoff  VanadiumPentoxide = new Werkstoff(
            new short[]{0x69,0x69,0x69},
            " Vanadium Pentoxide",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust(),
            29917,
            SET_METALLIC
    );
    public static final Werkstoff  TertButylbenzene = new Werkstoff(
            new short[]{0,0,0},
            "Tert-Butylbenzene",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29918,
            SET_METALLIC
    );
    public static final Werkstoff  TwoTertButylAnthraquinone = new Werkstoff(
            new short[]{0xcc,0x86,0x5a},
            "2-tert-butyl-anthraquinone",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29919,
            SET_METALLIC
    );
    public static final Werkstoff  TwoTertButylAnthrahydroquinone = new Werkstoff(
            new short[]{0xad,0x53,0x1a},
            "2-tert-butyl-anthrahydroquinone",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29920,
            SET_METALLIC
    );
    public static final Werkstoff  HydrogenPeroxide = new Werkstoff(
            new short[]{0xad,0x53,0x1a},
            "Hydrogen Peroxide",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells().enforceUnification(),
            29921,
            SET_METALLIC
    );
    public static final Werkstoff  Hydrazine = new Werkstoff(
            new short[]{0xb5,0x07,0x07},
            "hydrazine",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29922,
            SET_METALLIC
    );
    public static final Werkstoff  DimethylSulfate = new Werkstoff(
            new short[]{0xff,0xfb,0x00},
            "Dimethyl Sulfate",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29923,
            SET_METALLIC
    );
    public static final Werkstoff  Monomethylhydrazine = new Werkstoff(
            new short[]{0xff,0x61,0x00},
            "Monomethylhydrazine",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29924,
            SET_METALLIC
    );
    public static final Werkstoff  Formaldehyde = new Werkstoff(
            new short[]{0x2e,0xd9,0x83},
            "Formaldehyde",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29925,
            SET_METALLIC
    );
    public static final Werkstoff  EthylAcetate = new Werkstoff(
            new short[]{0x0c,0xfb,0x32b},
            "Ethyl Acetate",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29926,
            SET_METALLIC
    );
    public static final Werkstoff  Acetylhydrazine = new Werkstoff(
            new short[]{0xd1,0x5c,0x5c},
            "Acetylhydrazine",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29927,
            SET_METALLIC
    );
    public static final Werkstoff  UnsymmetricalDimethylhydrazine = new Werkstoff(
            new short[]{0x80,0x06,0x00},
            "Unsymmetrical Dimethylhydrazine",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29928,
            SET_METALLIC
    );
    public static final Werkstoff  MonomethylhydrazineFuelMix = new Werkstoff(
            new short[]{0x78,0xe3,0xa7},
            "Monomethylhydrazine Fuel Mix",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29929,
            SET_METALLIC
    );
    public static final Werkstoff  UnsymmetricalDimethylhydrazineFuelMix = new Werkstoff(
            new short[]{0xc8,0xff,0x00},
            "Unsymmetrical Dimethylhydrazine Fuel Mix",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29930,
            SET_METALLIC
    );
    public static final Werkstoff Nitromethane  = new Werkstoff(
            new short[]{0x87,0x7d,0x60},
            "Nitromethane",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29914,
            SET_METALLIC
    );
    public static final Werkstoff  BoronTrioxide = new Werkstoff(
            new short[]{0xe3,0xa6,0xd3},
            "Boron Trioxide",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust(),
            29931,
            SET_METALLIC
    );
    public static final Werkstoff  BoronTrifluoride = new Werkstoff(
            new short[]{0xd0,0xe0,0x3f},
            "Boron Trifluoride",
            new Werkstoff.Stats().setGas(true),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29932,
            SET_METALLIC
    );
    public static final Werkstoff  NitroniumTetrafluoroborate = new Werkstoff(
            new short[]{0x57,0x69,0x2d},
            "Nitronium Tetrafluoroborate",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust(),
            29933,
            SET_METALLIC
    );
    public static final Werkstoff  Trinitramid  = new Werkstoff(
            new short[]{0x28,0x2b,0x70},
            "Trinitramid",
            new Werkstoff.Stats().setGas(true),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29934,
            SET_METALLIC
    );
    public static final Werkstoff  AmmoniaBoronfluorideSolution  = new Werkstoff(
            new short[]{0x28,0x2b,0x70},
            "Ammonia Boronfluoride Solution",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29935,
            SET_METALLIC
    );
    public static final Werkstoff  SodiumTetrafluoroborate  = new Werkstoff(
            new short[]{0xbe,0x6e,0xe0},
            "Sodium Tetrafluoroborate",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29936,
            SET_METALLIC
    );
    public static final Werkstoff  SodiumFluoride  = new Werkstoff(
            new short[]{0x9f,0x70,0xe6},
            "Sodium Fluoride",
            new Werkstoff.Stats(),
            COMPOUND,
            new Werkstoff.GenerationFeatures().onlyDust(),
            29937,
            SET_METALLIC
    );
    public static final Werkstoff  Tetrafluoroborate  = new Werkstoff(
            new short[]{0x6a,0x53,0x8c},
            "Tetrafluoroborate",
            new Werkstoff.Stats().setGas(true),
            COMPOUND,
            new Werkstoff.GenerationFeatures().disable().addCells(),
            29938,
            SET_METALLIC
    );
	@Override
	public void run() {
		// TODO Auto-generated method stub
		
	}
	
}