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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
|
package com.elisis.gtnhlanth.common.register;
import static com.github.bartimaeusnek.bartworks.util.BW_Util.subscriptNumbers;
import java.util.Arrays;
import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
import com.github.bartimaeusnek.bartworks.util.EnumUtils;
import com.github.bartimaeusnek.bartworks.util.Pair;
import gregtech.api.enums.Materials;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.enums.SubTag;
import gregtech.api.enums.TextureSet;
@SuppressWarnings({"unchecked"})
public class WerkstoffMaterialPool implements Runnable {
private static final int offsetID = 11_000;
private static final int offsetID2 = 11_100;
private static final int offsetID3 = 11_300;
/*
* public static final Werkstoff __ = new Werkstoff(
new short[] {_, _, _},
"__",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable(),
offsetID_,
TextureSet.SET_DULL
);
*/
//Misc.
public static final Werkstoff Hafnium = new Werkstoff(
new short[] {232, 224, 219},
"Hafnium",
subscriptNumbers("Hf"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMetalItems().enforceUnification(), //Perhaps use hafnia liquid in elemental hafnium synthesis
offsetID,
TextureSet.SET_DULL
);
public static final Werkstoff LowPurityHafnium = new Werkstoff(
new short[] {240, 223, 208},
"Low-Purity Hafnium",
subscriptNumbers("??Hf??"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(), //Perhaps use hafnia liquid in elemental hafnium synthesis
offsetID + 1,
TextureSet.SET_DULL
);
public static final Werkstoff Hafnia = new Werkstoff(
new short[] {247, 223, 203},
"Hafnia",
subscriptNumbers("HfO2"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(), //Perhaps use hafnia liquid in elemental hafnium synthesis
offsetID + 2,
TextureSet.SET_DULL
);
public static final Werkstoff HafniumTetrachloride = new Werkstoff(
new short[] {238, 247, 249},
"Hafnium Tetrachloride",
subscriptNumbers("HfCl4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 3,
TextureSet.SET_DULL
);
public static final Werkstoff HafniumTetrachlorideSolution = new Werkstoff(
new short[] {238, 247, 249},
"Hafnium Tetrachloride Solution",
subscriptNumbers("HfCl4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 4,
TextureSet.SET_FLUID
);
public static final Werkstoff HafniumIodide = new Werkstoff(
new short[] {216, 60, 1},
"Hafnium Iodide",
subscriptNumbers("HfI4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 5,
TextureSet.SET_DULL
);
public static final Werkstoff HafniumRunoff = new Werkstoff(
new short[] {74, 65, 42}, //Literally the statistically ugliest colour
"Hafnium Runoff",
subscriptNumbers("??????"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 6,
TextureSet.SET_DULL
);
public static final Werkstoff Zirconium = new Werkstoff(
new short[] {225,230,225},
"Zirconium",
subscriptNumbers("Zr"),
new Werkstoff.Stats().setBlastFurnace(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMetalItems().enforceUnification(),
offsetID + 7,
TextureSet.SET_DULL
);
public static final Werkstoff Zirconia = new Werkstoff(
new short[] {177,152,101},
"Zirconia",
subscriptNumbers("ZrO2"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 8,
TextureSet.SET_DULL
);
public static final Werkstoff ZirconiumTetrachloride = new Werkstoff(
new short[] {179, 164, 151},
"Zirconium Tetrachloride",
subscriptNumbers("ZrCl4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 9,
TextureSet.SET_DULL
);
public static final Werkstoff ZirconiumTetrachlorideSolution = new Werkstoff(
new short[] {179, 164, 151},
"Zirconium Tetrachloride Solution",
subscriptNumbers("ZrCl4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(), //Blast Furnace needs liquid input because it can't do 3 item inputs so have a shitty material
offsetID + 10,
TextureSet.SET_FLUID
);
public static final Werkstoff HafniaZirconiaBlend = new Werkstoff(
new short[] {247, 223, 203},
"Hafnia-Zirconia Blend", // Maybe Hafnon??
subscriptNumbers("??HfZr??"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 11,
TextureSet.SET_DULL
);
public static final Werkstoff Iodine = new Werkstoff(
new short[] {171, 40, 175},
"Iodine",
subscriptNumbers("I"),
new Werkstoff.Stats().setProtons(53).setMass(127).setSublimation(true).setBoilingPoint(484).setGas(true),
Werkstoff.Types.ELEMENT,
new Werkstoff.GenerationFeatures().disable().onlyDust().addCells().enforceUnification(),
offsetID + 12,
TextureSet.SET_FLUID
);
//Lanthanide Line
public static final Werkstoff MuddyRareEarthMonaziteSolution = new Werkstoff(
new short[] {111, 78, 55},
"Muddy Monazite Rare Earth Solution",
subscriptNumbers("??LaNdZr??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 14,
TextureSet.SET_FLUID
);
public static final Werkstoff DilutedRareEarthMonaziteMud = new Werkstoff(
new short[] {160, 120, 90},
"Diluted Monazite Rare Earth Mud",
subscriptNumbers("??LaNdHf??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 15,
TextureSet.SET_FLUID
);
public static final Werkstoff DilutedMonaziteSulfate = new Werkstoff(
new short[] {237, 201, 175},
"Diluted Monazite Sulfate",
subscriptNumbers("??LaNd??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 16,
TextureSet.SET_FLUID
);
public static final Werkstoff NitratedRareEarthMonaziteConcentrate = new Werkstoff(
new short[] {250, 223, 173},
"Nitrogenated Monazite Rare Earth Concentrate",
subscriptNumbers("??LaNd??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 17,
TextureSet.SET_FLUID
);
public static final Werkstoff NitricMonaziteLeachedConcentrate = new Werkstoff(
new short[] {244, 202, 22},
"Nitric Monazite Leached Concentrate",
subscriptNumbers("??LaNd??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 18,
TextureSet.SET_FLUID
);
public static final Werkstoff MonaziteSulfate = new Werkstoff(
new short[] {152, 118, 84},
"Monazite Sulfate",
subscriptNumbers("??CeEu??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 19,
TextureSet.SET_DULL
);
public static final Werkstoff AcidicMonazitePowder = new Werkstoff(
new short[] {50, 23, 77},
"Acidic Monazite Powder",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 20,
TextureSet.SET_DULL
);
public static final Werkstoff MonaziteRareEarthFiltrate = new Werkstoff(
new short[] {72, 60, 50},
"Monazite Rare Earth Filtrate",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 21,
TextureSet.SET_DULL
);
public static final Werkstoff NeutralizedMonaziteRareEarthFiltrate = new Werkstoff(
new short[] {50, 23, 77},
"Neutralized Monazite Rare Earth Filtrate",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 22,
TextureSet.SET_DULL
);
public static final Werkstoff MonaziteRareEarthHydroxideConcentrate = new Werkstoff(
new short[] {193, 154, 107},
"Monazite Rare Earth Hydroxide Concentrate",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 23,
TextureSet.SET_DULL
);
public static final Werkstoff DriedMonaziteRareEarthConcentrate = new Werkstoff(
new short[] {250, 214, 165},
"Dried Monazite Rare Earth Concentrate",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 24,
TextureSet.SET_DULL
);
public static final Werkstoff CeriumDioxide = new Werkstoff(
new short[] {255, 255, 255},
"Cerium Dioxide",
subscriptNumbers("CeO2"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust().enforceUnification(),
offsetID + 25,
TextureSet.SET_DULL
);
public static final Werkstoff CeriumChloride = new Werkstoff(
new short[] {255, 255, 255},
"Cerium Chloride",
subscriptNumbers("CeCl3"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 26,
TextureSet.SET_DULL
);
public static final Werkstoff CeriumOxalate = new Werkstoff(
new short[] {255, 255, 224},
"Cerium Oxalate",
subscriptNumbers("Ce2(C2O4)3"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 27,
TextureSet.SET_DULL
);
public static final Werkstoff CeriumIIIOxide = new Werkstoff(
new short[] {255, 255, 102},
"Cerium (III) Oxide",
subscriptNumbers("Ce2O3"),
new Werkstoff.Stats().setElektrolysis(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 28,
TextureSet.SET_DULL,
Arrays.asList(Materials.Cerium, Materials.Oxygen),
new Pair<>(Materials.Cerium, 2),
new Pair<>(Materials.Oxygen, 3)
);
public static final Werkstoff CeriumRichMixture = new Werkstoff(
new short[] {244, 164, 96},
"Cerium-Rich Mixture",
subscriptNumbers("??Ce??"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 29,
TextureSet.SET_DULL
);
public static final Werkstoff CooledMonaziteRareEarthConcentrate = new Werkstoff(
new short[] {250, 214, 165},
"Cooled Monazite Rare Earth Concentrate",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 30,
TextureSet.SET_DULL
);
public static final Werkstoff MonaziteRarerEarthSediment = new Werkstoff(
new short[] {250, 214, 165},
"MonaziteRarer Earth Sediment",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 31,
TextureSet.SET_DULL
);
public static final Werkstoff MonaziteHeterogenousHalogenicRareEarthMixture = new Werkstoff(
new short[] {250, 214, 165},
"Heterogenous Halogenic Monazite Rare Earth Mixture",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 32,
TextureSet.SET_DULL
);
public static final Werkstoff SaturatedMonaziteRareEarthMixture = new Werkstoff(
new short[] {250, 214, 165},
"Saturated Monazite Rare Earth",
subscriptNumbers("????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 33,
TextureSet.SET_DULL
);
public static final Werkstoff SamaricResidue = new Werkstoff(
new short[] {248, 243, 231},
"Samaric Residue",
subscriptNumbers("??SmGd??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 34,
TextureSet.SET_DULL
);
public static final Werkstoff MonaziteResidue = new Werkstoff(
new short[] {64, 69, 62},
"Monazite Residue",
subscriptNumbers("??ZrHfTh??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 35,
TextureSet.SET_DULL
);
public static final Werkstoff AmmoniumNitrate = new Werkstoff(
new short[] {255, 255, 255},
"Ammonium Nitrate Solution",
subscriptNumbers("NH4NO3"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 36,
TextureSet.SET_FLUID
);
public static final Werkstoff ThoriumPhosphateCake = new Werkstoff(
new short[] {188, 143, 143},
"Thorium-Phosphate Cake",
subscriptNumbers("??ThP??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 37,
TextureSet.SET_DULL
);
public static final Werkstoff ThoriumPhosphateConcentrate = new Werkstoff(
new short[] {217, 144, 88},
"Thorium-Phosphate Concentrate",
subscriptNumbers("??ThP??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 38,
TextureSet.SET_DULL
);
public static final Werkstoff UraniumFiltrate = new Werkstoff(
new short[] {190, 240, 94},
"UraniumFiltrate",
subscriptNumbers("??U??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 39,
TextureSet.SET_DULL
);
public static final Werkstoff NeutralizedUraniumFiltrate = new Werkstoff(
new short[] {217, 120, 88},
"Neutralized Uranium Filtrate",
subscriptNumbers("??U??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 40,
TextureSet.SET_DULL
);
public static final Werkstoff SeaweedAsh = new Werkstoff(
new short[] {70, 75, 71},
"Seaweed Ash",
new Werkstoff.Stats(),
Werkstoff.Types.BIOLOGICAL,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 41,
TextureSet.SET_DULL
);
public static final Werkstoff SeaweedConcentrate = new Werkstoff(
new short[] {70, 100, 71},
"Seaweed Concentrate",
subscriptNumbers("??I??"),
new Werkstoff.Stats(),
Werkstoff.Types.BIOLOGICAL,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 42,
TextureSet.SET_FLUID
);
public static final Werkstoff PotassiumPermanganate = new Werkstoff(
new short[] {165, 50, 138},
"Potassium Permanganate",
subscriptNumbers("KMnO4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 43,
TextureSet.SET_DULL
);
public static final Werkstoff PotassiumPermanganateSolution = new Werkstoff(
new short[] {165, 50, 138},
"Potassium Permanganate Solution",
subscriptNumbers("KMnO4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 44,
TextureSet.SET_FLUID
);
public static final Werkstoff SeaweedByproducts = new Werkstoff(
new short[] {125, 50, 138},
"Seaweed Byproducts",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 45,
TextureSet.SET_FLUID
);
public static final Werkstoff NitricLeachedMonaziteMixture = new Werkstoff(
new short[] {125, 50, 138},
"Nitric-Leached Monazite Mixture",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID + 46,
TextureSet.SET_FLUID
);
public static final Werkstoff EuropiumOxide = new Werkstoff(
new short[] {255, 255, 255},
"Europium Oxide",
subscriptNumbers("EuO"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 47,
TextureSet.SET_DULL
);
public static final Werkstoff EuropiumSulfide = new Werkstoff(
new short[] {5, 0, 5},
"Europium Sulfide",
subscriptNumbers("EuS"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 48,
TextureSet.SET_DULL
);
public static final Werkstoff UnknownBlend = new Werkstoff(
new short[] {0, 0, 5},
"UnknownBlend",
subscriptNumbers("?????"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID + 49,
TextureSet.SET_DULL
);
// TODO
// BASTNASITE
public static final Werkstoff MuddyRareEarthBastnasiteSolution = new Werkstoff(
new short[] {205, 133, 63},
"Muddy Bastnasite Rare Earth Solution",
subscriptNumbers("??LaCeY??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2,
TextureSet.SET_FLUID
);
/*
public static final Werkstoff FluorosilicicAcid = new Werkstoff(
new short[] {205, 133, 63},
"Hexafluorosilicic Acid",
subscriptNumbers("H2SiF6"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2 + 1,
TextureSet.SET_FLUID
);
*/
public static final Werkstoff SodiumFluorosilicate = new Werkstoff(
new short[] {205, 133, 63},
"Sodiumfluorosilicate",
subscriptNumbers("Na2SiF6"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2 + 2,
TextureSet.SET_FLUID
);
public static final Werkstoff SteamCrackedBasnasiteSolution = new Werkstoff(
new short[] {205, 133, 63},
"Steam-Cracked Bastnasite Mud",
subscriptNumbers("??LaCeY??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2 + 3,
TextureSet.SET_FLUID
);
public static final Werkstoff ConditionedBastnasiteMud = new Werkstoff(
new short[] {205, 133, 63},
"Conditioned Bastnasite Mud",
subscriptNumbers("??LaCeY??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2 + 4,
TextureSet.SET_FLUID
);
public static final Werkstoff DiltedRareEarthBastnasiteMud = new Werkstoff(
new short[] {205, 133, 63},
"Diluted Bastnasite Mud",
subscriptNumbers("??LaCeY??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2 + 5,
TextureSet.SET_FLUID
);
public static final Werkstoff FilteredBastnasiteMud = new Werkstoff(
new short[] {205, 133, 63},
"Filtered Bastnasite Mud",
subscriptNumbers("??LaCeY??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2 + 6,
TextureSet.SET_FLUID
);
public static final Werkstoff BastnasiteRareEarthOxidePowder = new Werkstoff(
new short[] {205, 133, 63},
"Bastnasite Rare Earth Oxides",
subscriptNumbers("??LaCeY??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 7,
TextureSet.SET_DULL
);
public static final Werkstoff LeachedBastnasiteRareEarthOxides = new Werkstoff(
new short[] {205, 133, 63},
"Acid-Leached Bastnasite Rare Earth Oxides",
subscriptNumbers("??LaCeY??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 8,
TextureSet.SET_DULL
);
public static final Werkstoff Gangue = new Werkstoff(
new short[] {0, 0, 0},
"Gangue",
subscriptNumbers("Useless..."),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 9,
TextureSet.SET_DULL
);
//TODO: Deal with colouring
public static final Werkstoff RoastedRareEarthOxides = new Werkstoff(
new short[] {160, 82, 45},
"Roasted Rare Earth Oxides",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 10,
TextureSet.SET_DULL
);
public static final Werkstoff WetRareEarthOxides = new Werkstoff(
new short[] {160, 82, 49},
"Wet Rare Earth Oxides",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 11,
TextureSet.SET_DULL
);
public static final Werkstoff CeriumOxidisedRareEarthOxides = new Werkstoff(
new short[] {160, 82, 49},
"Cerium-Oxidised Rare Earth Oxides",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 12,
TextureSet.SET_DULL
);
public static final Werkstoff BastnasiteRarerEarthOxides = new Werkstoff(
new short[] {160, 82, 49},
"Bastnasite Rarer Earth Oxides",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 13,
TextureSet.SET_DULL
);
public static final Werkstoff NitratedBastnasiteRarerEarthOxides = new Werkstoff(
new short[] {160, 90, 60},
"Nitrogenated Bastnasite Rarer Earth Oxides",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2 + 14,
TextureSet.SET_DULL
);
public static final Werkstoff SaturatedBastnasiteRarerEarthOxides = new Werkstoff(
new short[] {170, 90, 60},
"Bastnasite Rarer Earth Oxide Suspension",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID2 + 15,
TextureSet.SET_DULL
);
public static final Werkstoff SamaricRareEarthConcentrate = new Werkstoff(
new short[] {170, 90, 60},
"Samaric Rare Earth Concentrate",
subscriptNumbers("??SmHoTb??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 16,
TextureSet.SET_DULL
);
public static final Werkstoff NeodymicRareEarthConcentrate = new Werkstoff(
new short[] {170, 90, 60},
"Neodymium Rare Earth Concentrate",
subscriptNumbers("??LaNdPr??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 17,
TextureSet.SET_DULL
);
public static final Werkstoff FluorinatedNeodymicRareEarths = new Werkstoff(
new short[] {170, 90, 60},
"Fluorinated Neodymium Rare Earths",
subscriptNumbers("??LaNdPr??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 18,
TextureSet.SET_DULL
);
public static final Werkstoff PraseodymiumTetrafluoride = new Werkstoff(
new short[] {82, 112, 102},
"Praseodymium Tetrafluoride",
subscriptNumbers("PrF4"),
new Werkstoff.Stats().setElektrolysis(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 19,
TextureSet.SET_DULL,
Arrays.asList(Materials.Praseodymium, Materials.Fluorine),
new Pair<>(Materials.Praseodymium, 1),
new Pair<>(Materials.Fluorine, 4)
);
public static final Werkstoff RareEarthTrifluorides = new Werkstoff(
new short[] {82, 112, 102},
"Rare Earth Trifluorides",
subscriptNumbers("??LaNd??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 20,
TextureSet.SET_DULL
);
public static final Werkstoff LanthaniumChloride = new Werkstoff(
new short[] {82, 112, 102},
"Lanthanium Chloride",
subscriptNumbers("LaCl3"),
new Werkstoff.Stats().setElektrolysis(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 21,
TextureSet.SET_DULL,
Arrays.asList(Materials.Lanthanum, Materials.Chlorine),
new Pair<>(Materials.Lanthanum, 1),
new Pair<>(Materials.Chlorine, 3)
);
public static final Werkstoff NeodymiumOxide = new Werkstoff(
new short[] {82, 112, 102},
"Neodymium Oxide",
subscriptNumbers("Nd2O3"),
new Werkstoff.Stats().setElektrolysis(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 22,
TextureSet.SET_DULL,
Arrays.asList(Materials.Neodymium, Materials.Oxygen),
new Pair<>(Materials.Neodymium, 2),
new Pair<>(Materials.Oxygen, 3)
);
public static final Werkstoff FluorinatedSamaricConcentrate = new Werkstoff(
new short[] {255, 182, 193},
"Fluorinated Samaric Concentrate",
subscriptNumbers("??SmHo??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 23,
TextureSet.SET_DULL
);
public static final Werkstoff CalciumFluoride = new Werkstoff(
new short[] {255, 250, 250},
"Calcium Fluoride",
subscriptNumbers("CaF2"),
new Werkstoff.Stats().setElektrolysis(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten().addCells(),
offsetID2 + 24,
TextureSet.SET_DULL,
Arrays.asList(Materials.Calcium, Materials.Fluorine),
new Pair<>(Materials.Calcium, 1),
new Pair<>(Materials.Fluorine, 2)
);
public static final Werkstoff SamariumTerbiumMixture = new Werkstoff(
new short[] {223, 182, 193},
"Samarium-Terbium Mixture",
subscriptNumbers("??SmTb??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 25,
TextureSet.SET_DULL
);
public static final Werkstoff NitratedSamariumTerbiumMixture = new Werkstoff(
new short[] {223, 182, 193},
"Nitrogenated Samarium-Terbium Mixture",
subscriptNumbers("??SmTb??NH4NO3"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 26,
TextureSet.SET_DULL
);
public static final Werkstoff TerbiumNitrate = new Werkstoff(
new short[] {167, 252, 0},
"Terbium Nitrate",
subscriptNumbers("TbNO3"),
new Werkstoff.Stats().setElektrolysis(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 27,
TextureSet.SET_DULL,
Arrays.asList(Materials.Terbium, Materials.Nitrogen, Materials.Oxygen),
new Pair<>(Materials.Terbium, 1),
new Pair<>(Materials.Nitrogen, 1),
new Pair<>(Materials.Oxygen, 3)
);
public static final Werkstoff SamariumOreConcentrate = new Werkstoff(
new short[] {255, 200, 230},
"Samarium Ore Concentrate",
subscriptNumbers("??Sm??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 28,
TextureSet.SET_DULL
);
public static final Werkstoff DephosphatedSamariumConcentrate = new Werkstoff(
new short[] {255, 170, 220},
"Dephosphated Samarium Concentrate",
subscriptNumbers("??Sm??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID2 + 29,
TextureSet.SET_DULL
);
// Weird/Exciting Chemicals
public static final Werkstoff Tetrahydrofuran = new Werkstoff(
new short[] {222, 165, 164},
"Tetrahydrofuran",
subscriptNumbers("(CH2)4O"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3,
TextureSet.SET_FLUID
);
//1,4-Butanediol
public static final Werkstoff Butanediol = new Werkstoff(
new short[] {185, 78, 72},
"1,4-Butanediol",
subscriptNumbers("HO(CH2)4OH"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3 + 1,
TextureSet.SET_FLUID
);
//Acidicised 1,4-Butanediol
public static final Werkstoff AcidicButanediol = new Werkstoff(
new short[] {255, 239, 213},
"Acidicised 1,4-Butanediol",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3 + 2,
TextureSet.SET_FLUID
);
//Tellurium-Molybdenum-Oxide Catalyst
public static final Werkstoff MoTeOCatalyst= new Werkstoff(
new short[] {238, 131, 238},
"Tellurium-Molybdenum-Oxide Catalyst",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID3 + 3,
TextureSet.SET_DULL
);
//Tellurium Oxide
public static final Werkstoff TelluriumIVOxide = new Werkstoff(
new short[] {229, 199, 187},
"Tellurium (IV) Oxide",
subscriptNumbers("TeO2"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID3 + 4,
TextureSet.SET_DULL
);
public static final Werkstoff MolybdenumIVOxide = new Werkstoff(
new short[] {52, 53, 57},
"Molybdenum (IV) Oxide",
subscriptNumbers("MoO2"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID3 + 5,
TextureSet.SET_DULL
);
public static final Werkstoff Polytetrahydrofuran = new Werkstoff(
new short[] {192, 128, 129},
"Polytetrahydrofuran",
subscriptNumbers("(C4H8O)OH2"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust().addCells(),
offsetID3 + 6,
TextureSet.SET_DULL
);
public static final Werkstoff TungstophosphoricAcid = new Werkstoff(
new short[] {223, 255, 0},
"Tungstophosphoric Acid",
subscriptNumbers("H3PW12O40"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3 + 7,
TextureSet.SET_FLUID
);
public static final Werkstoff TolueneDiisocyanate = new Werkstoff(
new short[] {255, 255, 102},
"Toluene Diisocyanate",
subscriptNumbers("CH3C6H3(NCO)2"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3 + 8,
TextureSet.SET_FLUID
);
public static final Werkstoff Dinitrotoluene = new Werkstoff(
new short[] {216, 191, 216},
"Dinitrotoluene",
subscriptNumbers("C7H6N2O4"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3 + 9,
TextureSet.SET_FLUID
);
public static final Werkstoff Diaminotoluene = new Werkstoff(
new short[] {227, 218, 201},
"Diaminotoluene",
subscriptNumbers("C6H3(NH2)2CH3"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3 + 10,
TextureSet.SET_FLUID
);
public static final Werkstoff TolueneTetramethylDiisocyanate = new Werkstoff(
new short[] {255, 255, 255},
"Toluene Tetramethyl Diisocyanate",
subscriptNumbers("(CONH)2(C6H4)2CH2(C4O)"),
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3 + 11,
TextureSet.SET_FLUID
);
public static final Werkstoff PTMEGElastomer = new Werkstoff(
new short[] {248, 248, 255},
"PTMEG Elastomer",
new Werkstoff.Stats().setMeltingPoint(600).setMeltingVoltage(64),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable()
.onlyDust()
.addMolten()
.addMetalItems()
,
offsetID3 + 12,
TextureSet.SET_DULL
);
public static final Werkstoff MagnesiumPeroxide = new Werkstoff(
new short[] {255, 250, 205},
"Magnesium Peroxide",
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
offsetID3 + 13,
TextureSet.SET_METALLIC
);
public static final Werkstoff PotassiumChlorate = new Werkstoff(
new short[] {240, 255, 255},
"Potassium Chlorate",
new Werkstoff.Stats(),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten(),
offsetID3 + 14,
TextureSet.SET_DULL
);
public static final Werkstoff MARM247 = new Werkstoff(
new short[] {255, 133, 145},
"MAR-M247",
new Werkstoff.Stats().setMeltingPoint(8000).setBlastFurnace(true).setMeltingVoltage(7680),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable()
.onlyDust()
.addMolten()
.addMetalItems()
,
offsetID3 + 15,
TextureSet.SET_METALLIC
);
public static final Werkstoff DilutedAcetone = new Werkstoff(
new short[] {254, 254, 250},
"Diluted Acetone",
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
new Werkstoff.GenerationFeatures().disable().addCells(),
offsetID3 + 16,
TextureSet.SET_FLUID
);
public static void runInit() {
addSubTags();
}
private static void addSubTags() {
//WerkstoffMaterialPool.PTMEGElastomer.add(SubTag.BOUNCY, SubTag.STRETCHY);
}
@Override
public void run() {
}
}
|