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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
|
package GoodGenerator.Items;
import GoodGenerator.util.CharExchanger;
import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
import com.github.bartimaeusnek.bartworks.system.material.WerkstoffLoader;
import gregtech.api.enums.TextureSet;
import com.github.bartimaeusnek.bartworks.util.Pair;
import static com.github.bartimaeusnek.bartworks.util.BW_Util.subscriptNumbers;
import static gregtech.api.enums.Materials.*;
@SuppressWarnings({"unchecked"})
public class MyMaterial implements Runnable {
protected static final int OffsetID = 10001;
//Uranium Based Fuel Line
public static final Werkstoff graphiteUraniumMixture = new Werkstoff(
new short[]{0x3a,0x77,0x3d},
"Graphite-Uranium Mixture",
subscriptNumbers("C3U"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addMixerRecipes().onlyDust(),
OffsetID,
TextureSet.SET_DULL,
new Pair<> (Graphite,3),
new Pair<> (Uranium,1)
);
public static final Werkstoff uraniumBasedLiquidFuel = new Werkstoff(
new short[]{0x00,0xff,0x00},
"Uranium Based Liquid Fuel",
subscriptNumbers("U36Rb8Qt4Rn"),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 1,
TextureSet.SET_FLUID
);
public static final Werkstoff uraniumBasedLiquidFuelExcited = new Werkstoff(
new short[]{0x00,0xff,0x00},
"Uranium Based Liquid Fuel (Excited State)",
subscriptNumbers("*(U36Rb8Qt4Rn)*"),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 2,
TextureSet.SET_FLUID
);
public static final Werkstoff uraniumBasedLiquidFuelDepleted = new Werkstoff(
new short[]{0x6e,0x8b,0x3d},
"Uranium Based Liquid Fuel (Depleted)",
subscriptNumbers("Pb?Bi?Ba?Xe?"),
new Werkstoff.Stats().setToxic(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 3,
TextureSet.SET_FLUID
);
//Thorium Based Fuel
public static final Werkstoff uraniumCarbideThoriumMixture = new Werkstoff(
new short[]{0x16,0x32,0x07},
"Uranium Carbide-Thorium Mixture",
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addMixerRecipes().onlyDust(),
OffsetID + 4,
TextureSet.SET_DULL,
new Pair<> (Thorium,8),
new Pair<> (WerkstoffLoader.Thorium232,4),
new Pair<> (Uranium235,1),
new Pair<> (Carbon,3)
);
public static final Werkstoff thoriumBasedLiquidFuel = new Werkstoff(
new short[]{0x50,0x32,0x66},
"Thorium Based Liquid Fuel",
subscriptNumbers("Th432Li4D2Hg"),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 5,
TextureSet.SET_FLUID
);
public static final Werkstoff thoriumBasedLiquidFuelExcited = new Werkstoff(
new short[]{0x50,0x32,0x66},
"Thorium Based Liquid Fuel (Excited State)",
subscriptNumbers("*(Th432Li4D2Hg)*"),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 6,
TextureSet.SET_FLUID
);
public static final Werkstoff thoriumBasedLiquidFuelDepleted = new Werkstoff(
new short[]{0x7d,0x6c,0x8a},
"Thorium Based Liquid Fuel (Depleted)",
subscriptNumbers("Lu?Pr?B?In?"),
new Werkstoff.Stats().setToxic(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 7,
TextureSet.SET_FLUID
);
//Plutonium Based Fuel
public static final Werkstoff plutoniumOxideUraniumMixture = new Werkstoff(
new short[]{0xd1,0x1f,0x4a},
"Plutonium Oxide-Uranium Mixture",
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addMixerRecipes().onlyDust(),
OffsetID + 8,
TextureSet.SET_SHINY,
new Pair<> (Plutonium,10),
new Pair<> (Oxygen,12),
new Pair<> (Uranium,2),
new Pair<> (Carbon,8)
);
public static final Werkstoff plutoniumBasedLiquidFuel = new Werkstoff(
new short[]{0xef,0x15,0x15},
"Plutonium Based Liquid Fuel",
subscriptNumbers("Pu45Nt8Cs16Am2"),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 9,
TextureSet.SET_FLUID
);
public static final Werkstoff plutoniumBasedLiquidFuelExcited = new Werkstoff(
new short[]{0xef,0x15,0x15},
"Plutonium Based Liquid Fuel (Excited State)",
subscriptNumbers("*(Pu45Nt8Cs16Am2)*"),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 10,
TextureSet.SET_FLUID
);
public static final Werkstoff plutoniumBasedLiquidFuelDepleted = new Werkstoff(
new short[]{0x67,0x19,0x19},
"Plutonium Based Liquid Fuel (Depleted)",
subscriptNumbers("Tn?Ce?Au?Kr?"),
new Werkstoff.Stats().setToxic(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 11,
TextureSet.SET_FLUID
);
//Thorium-233
public static final Werkstoff oxalate = new Werkstoff(
new short[]{0x79,0xd8,0x55},
"Oxalate",
Werkstoff.Types.BIOLOGICAL,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 12,
TextureSet.SET_FLUID,
new Pair<> (Hydrogen,2),
new Pair<> (Carbon,2),
new Pair<> (Oxygen,4)
);
public static final Werkstoff vanadiumPentoxide = new Werkstoff(
new short[]{0xde,0x8d,0x12},
"Vanadium Pentoxide",
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
OffsetID + 13,
TextureSet.SET_SHINY,
new Pair<> (Vanadium,2),
new Pair<> (Oxygen,5)
);
public static final Werkstoff thoriumNitrate = new Werkstoff(
new short[]{0xba,0xe8,0x26},
"Thorium Nitrate",
subscriptNumbers("Th(NO3)4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 14,
TextureSet.SET_DULL
);
public static final Werkstoff thoriumOxalate = new Werkstoff(
new short[]{0x50,0x63,0x13},
"Thorium Oxalate",
subscriptNumbers("Th(C2O4)2"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
OffsetID + 15,
TextureSet.SET_DULL
);
public static final Werkstoff thoriumHydroxide = new Werkstoff(
new short[]{0x92,0xae,0x89},
"Thorium Hydroxide",
subscriptNumbers("Th(OH)4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
OffsetID + 16,
TextureSet.SET_SHINY
);
public static final Werkstoff sodiumOxalate = new Werkstoff(
new short[]{0xe4,0xf8,0x9b},
"Sodium Oxalate",
subscriptNumbers("Na2C2O4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
OffsetID + 17,
TextureSet.SET_DULL
);
public static final Werkstoff thoriumTetrachloride = new Werkstoff(
new short[]{0x13,0x7c,0x16},
"thorium Tetrachloride",
subscriptNumbers("ThCl4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 18,
TextureSet.SET_FLUID
);
public static final Werkstoff thoriumTetrafluoride = new Werkstoff(
new short[]{0x15,0x6a,0x6a},
"Thorium Tetrafluoride",
subscriptNumbers("ThF4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 19,
TextureSet.SET_FLUID
);
public static final Werkstoff thorium232Tetrafluoride = new Werkstoff(
new short[]{0x15,0x6a,0x6a},
"Thorium-232 Tetrafluoride",
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 20,
TextureSet.SET_FLUID,
new Pair<> (WerkstoffLoader.Thorium232,1),
new Pair<> (Fluorine,4)
);
//Atomic Separation Catalyst
public static final Werkstoff atomicSeparationCatalyst = new Werkstoff(
new short[]{0xe8,0x5e,0x0c},
"Atomic Separation Catalyst",
"the melting core...",
new Werkstoff.Stats().setMeltingPoint(5000).setBlastFurnace(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten().addMetalItems().addSimpleMetalWorkingItems().addCraftingMetalWorkingItems().addMultipleIngotMetalWorkingItems(),
OffsetID + 21,
TextureSet.SET_SHINY
);
public static final Werkstoff orundum = new Werkstoff(
new short[]{0xcd,0x26,0x26},
"Orundum",
"Or",
new Werkstoff.Stats(),
Werkstoff.Types.ELEMENT,
new Werkstoff.GenerationFeatures().addGems(),
OffsetID + 22,
TextureSet.SET_DIAMOND
);
//Naquadah Fuel Rework
public static final Werkstoff extremelyUnstableNaquadah = new Werkstoff(
new short[]{0x06,0x26,0x05},
"Extremely Unstable Naquadah",
"Nq"+ CharExchanger.shifter(9734),
new Werkstoff.Stats().setMeltingPoint(7000).setBlastFurnace(true),
Werkstoff.Types.ELEMENT,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten().addMetalItems().addSimpleMetalWorkingItems().addCraftingMetalWorkingItems().addMultipleIngotMetalWorkingItems(),
OffsetID + 23,
TextureSet.SET_SHINY
);
public static final Werkstoff lightNaquadahFuel = new Werkstoff(
new short[]{92,203,92},
"Light Naquadah Fuel",
"far from enough",
new Werkstoff.Stats().setToxic(true).setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 24,
TextureSet.SET_FLUID
);
public static final Werkstoff heavyNaquadahFuel = new Werkstoff(
new short[]{54,255,54},
"Heavy Naquadah Fuel",
"still need processing",
new Werkstoff.Stats().setToxic(true).setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 25,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahGas = new Werkstoff(
new short[]{93,219,0},
"Naquadah Gas",
"Who need it?",
new Werkstoff.Stats().setToxic(true).setRadioactive(true).setGas(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 26,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahAsphalt = new Werkstoff(
new short[]{5,37,5},
"Naquadah Asphalt",
"It will damage the reactor.",
new Werkstoff.Stats().setToxic(true).setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 27,
TextureSet.SET_FLUID
);
public static final Werkstoff ether = new Werkstoff(
new short[]{0xeb,0xbc,0x2f},
"Ether",
subscriptNumbers("CH3CH2OCH2CH3"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 28,
TextureSet.SET_FLUID,
new Pair<> (Carbon,4),
new Pair<> (Hydrogen, 10),
new Pair<> (Oxygen, 1)
);
public static final Werkstoff antimonyTrichloride = new Werkstoff(
new short[]{0x0f,0xdc,0x34},
"Antimony Trichloride Solution",
subscriptNumbers("SbCl3"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 29,
TextureSet.SET_FLUID
);
public static final Werkstoff antimonyPentachlorideSolution = new Werkstoff(
new short[]{0x15,0x93,0x2c},
"Antimony Pentachloride Solution",
subscriptNumbers("SbCl5"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 30,
TextureSet.SET_FLUID
);
public static final Werkstoff antimonyPentachloride = new Werkstoff(
new short[]{0x15,0x93,0x2c},
"Antimony Pentachloride",
subscriptNumbers("SbCl5"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 31,
TextureSet.SET_FLUID
);
public static final Werkstoff antimonyPentafluoride = new Werkstoff(
new short[]{0x16,0xd5,0xe2},
"Antimony Pentafluoride",
subscriptNumbers("SbF5"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 32,
TextureSet.SET_FLUID
);
public static final Werkstoff fluoroantimonicAcid = new Werkstoff(
new short[]{0x16,0xd5,0xe2},
"Fluoroantimonic Acid",
subscriptNumbers("HSbF6"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 33,
TextureSet.SET_FLUID
);
public static final Werkstoff radioactiveSludge = new Werkstoff(
new short[]{0xb3,0x49,0x1e},
"Radioactive Sludge",
">>> DANGER <<<",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
OffsetID + 34,
TextureSet.SET_DULL
);
public static final Werkstoff acidNaquadahEmulsion = new Werkstoff(
new short[]{0x25,0x22,0x22},
"Acid Naquadah Emulsion",
"??Nq??H"+CharExchanger.shifter(8314),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 35,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahEmulsion = new Werkstoff(
new short[]{0x4a,0x46,0x45},
"Naquadah Emulsion",
"??Nq??",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 36,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahSolution = new Werkstoff(
new short[]{0x84,0x81,0x80},
"Naquadah Solution",
"~Nq~",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 37,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkI = new Werkstoff(
new short[]{0x62,0x5c,0x5b},
"Naquadah Based Liquid Fuel MkI",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 38,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkIDepleted = new Werkstoff(
new short[]{0xcb,0xc3,0xc1},
"Naquadah Based Liquid Fuel MkI (Depleted)",
new Werkstoff.Stats().setToxic(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 39,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkII = new Werkstoff(
new short[]{0x52,0x4e,0x4d},
"Naquadah Based Liquid Fuel MkII",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 40,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkIIDepleted = new Werkstoff(
new short[]{0xb5,0xb0,0xae},
"Naquadah Based Liquid Fuel MkII (Depleted)",
new Werkstoff.Stats().setToxic(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 41,
TextureSet.SET_FLUID
);
/*These materials will be enable when they are removed in GregTech*/
/*
public static final Werkstoff praseodymium = new Werkstoff(
new short[]{0xff,0xff,0xff},
"praseodymium",
"Pr",
new Werkstoff.Stats(),
Werkstoff.Types.ELEMENT,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten().addMetalItems(),
OffsetID + 42,
TextureSet.SET_METALLIC
);
public static final Werkstoff rubidium = new Werkstoff(
new short[]{0xff,0x2a,0x00},
"rubidium",
"Rb",
new Werkstoff.Stats(),
Werkstoff.Types.ELEMENT,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten().addMetalItems(),
OffsetID + 43,
TextureSet.SET_SHINY
);
public static final Werkstoff thulium = new Werkstoff(
new short[]{0xff,0xff,0xff},
"Thulium",
"Tm",
new Werkstoff.Stats(),
Werkstoff.Types.ELEMENT,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten().addMetalItems(),
OffsetID + 44,
TextureSet.SET_METALLIC
);
*/
public static final Werkstoff naquadahBasedFuelMkIII = new Werkstoff(
new short[]{0x29,0x22,0x21},
"Naquadah Based Liquid Fuel MkIII",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 45,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkIIIDepleted = new Werkstoff(
new short[]{0x66,0x40,0x38},
"Naquadah Based Liquid Fuel MkIII (Depleted)",
new Werkstoff.Stats().setToxic(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 46,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkIV = new Werkstoff(
new short[]{0x0e,0x0c,0x0c},
"Naquadah Based Liquid Fuel MkIV",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 47,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkIVDepleted = new Werkstoff(
new short[]{0x8e,0x34,0x22},
"Naquadah Based Liquid Fuel MkIV (Depleted)",
new Werkstoff.Stats().setToxic(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 48,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkV = new Werkstoff(
new short[]{0x00,0x00,0x00},
"Naquadah Based Liquid Fuel MkV",
"THE END",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 49,
TextureSet.SET_FLUID
);
public static final Werkstoff naquadahBasedFuelMkVDepleted = new Werkstoff(
new short[]{0xff,0xff,0xff},
"Naquadah Based Liquid Fuel MkV (Depleted)",
"THE END (literally)",
new Werkstoff.Stats().setToxic(true),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 50,
TextureSet.SET_FLUID
);
public static final Werkstoff zincChloride = new Werkstoff(
new short[]{0x73,0xa5,0xfc},
"Zinc Chloride",
subscriptNumbers("ZnCl2"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
OffsetID + 51,
TextureSet.SET_SHINY
);
public static final Werkstoff zincThoriumAlloy = new Werkstoff(
new short[]{0x12,0x34,0x56},
"Zn-Th Alloy",
subscriptNumbers("ZnTh"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten().addMetalItems(),
OffsetID + 52,
TextureSet.SET_SHINY
);
@Override
public void run() { }
}
|