aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/material/ALLOY.java
blob: fd7547970cc41bbfdff4fd3cad7f0b21f06b3a18 (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
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
package gtPlusPlus.core.material;

import gregtech.api.enums.Materials;

import gtPlusPlus.core.material.state.MaterialState;
import gtPlusPlus.core.util.minecraft.MaterialUtils;

public final class ALLOY {

	//Just some GT Alloys that I need within mine.
	public static final Material BRONZE = MaterialUtils.generateMaterialFromGtENUM(Materials.Bronze);
	public static final Material STEEL = MaterialUtils.generateMaterialFromGtENUM(Materials.Steel);
	public static final Material STEEL_BLACK = MaterialUtils.generateMaterialFromGtENUM(Materials.BlackSteel);
	public static final Material INVAR = MaterialUtils.generateMaterialFromGtENUM(Materials.Invar);
	public static final Material KANTHAL = MaterialUtils.generateMaterialFromGtENUM(Materials.Kanthal);
	public static final Material NICHROME = MaterialUtils.generateMaterialFromGtENUM(Materials.Nichrome);
	public static final Material TUNGSTENSTEEL = MaterialUtils.generateMaterialFromGtENUM(Materials.TungstenSteel);
	public static final Material STAINLESS_STEEL = MaterialUtils.generateMaterialFromGtENUM(Materials.StainlessSteel);
	public static final Material OSMIRIDIUM = MaterialUtils.generateMaterialFromGtENUM(Materials.Osmiridium);

	public static final Material ENERGYCRYSTAL = new Material(
			"Energy Crystal", //Material Name
			MaterialState.SOLID, //State
			new short[]{228, 255, 0, 0}, //Material Colour
			5660, //Melting Point in C
			7735, //Boiling Point in C
			150, //Protons
			80, //Neutrons
			true, //Uses Blast furnace?
			"⬟ ⯂ ⬢ ⬣ ⯃ ⯄",
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().AER, 5),
					new MaterialStack(ELEMENT.getInstance().IGNIS, 5),
					new MaterialStack(ELEMENT.getInstance().TERRA, 5),
					new MaterialStack(ELEMENT.getInstance().AQUA, 5)
			});

	public static final Material BLOODSTEEL = new Material(
			"Blood Steel", //Material Name
			MaterialState.SOLID, //State
			new short[]{142, 28, 0, 0}, //Material Colour
			2500, //Melting Point in C
			0, //Boiling Point in C
			100, //Protons
			100, //Neutrons
			false, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.STEEL, 5),
					new MaterialStack(ELEMENT.getInstance().IGNIS, 5)
			});

	public static final Material STABALLOY = new Material(
			"Staballoy", //Material Name
			MaterialState.SOLID, //State
			new short[]{68, 75, 66, 0}, //Material Colour
			3450, //Melting Point in C
			-1,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().URANIUM238, 9),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 1)
			});

	public static final Material TANTALLOY_60 = new Material(
			"Tantalloy-60", //Material Name
			MaterialState.SOLID, //State
			new short[]{213, 231, 237, 0}, //Material Colour
			3025, //Melting Point in C
			-1,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().TUNGSTEN, 4),
					new MaterialStack(ELEMENT.getInstance().TANTALUM, 46)
			});

	public static final Material TANTALLOY_61 = new Material(
			"Tantalloy-61", //Material Name
			MaterialState.SOLID, //State
			new short[]{193, 211, 217, 0}, //Material Colour
			3030, //Melting Point in C
			-1,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.TANTALLOY_60, 2),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 12),
					new MaterialStack(ELEMENT.getInstance().YTTRIUM, 8)
			});

	public static final Material TUMBAGA = new Material(
			"Tumbaga", //Material Name
			MaterialState.SOLID, //State
			new short[]{255,178,15, 0}, //Material Colour
			-1,
			-1,
			-1,
			-1,
			false, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().GOLD, 70),
					new MaterialStack(ELEMENT.getInstance().COPPER, 30)
			});

	public static final Material POTIN = new Material(
			"Potin", //Material Name
			MaterialState.SOLID, //State
			new short[]{201,151,129, 0}, //Material Colour
			-1,
			-1,
			-1,
			-1,
			false, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().LEAD, 40),
					new MaterialStack(ALLOY.BRONZE, 40),
					new MaterialStack(ELEMENT.getInstance().TIN, 20)
			});

	/*public static final Material BEDROCKIUM = new Material(
			"Bedrockium", //Material Name
			new short[]{32, 32, 32, 0}, //Material Colour
			7735, //Melting Point in C
			0, //Boiling Point in C
			100, //Protons
			100, //Neutrons
			false, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			null);*/

	public static final Material INCONEL_625 = new Material(
			"Inconel-625", //Material Name
			MaterialState.SOLID, //State
			new short[]{128, 200, 128, 0}, //Material Colour
			2425, //Melting Point in C
			3758,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().NICKEL, 3),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 7),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 10),
					new MaterialStack(INVAR, 10),
					new MaterialStack(NICHROME, 13)
			});

	public static final Material INCONEL_690 = new Material(
			"Inconel-690", //Material Name
			MaterialState.SOLID, //State
			new short[]{118, 220, 138, 0}, //Material Colour
			3425, //Melting Point in C
			4895,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 5),
					new MaterialStack(ELEMENT.getInstance().NIOBIUM, 10),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 10),
					new MaterialStack(NICHROME, 15)
			});

	public static final Material INCONEL_792 = new Material(
			"Inconel-792", //Material Name
			MaterialState.SOLID, //State
			new short[]{108, 240, 118, 0}, //Material Colour
			3425, //Melting Point in C
			6200,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().NICKEL, 20),
					new MaterialStack(ELEMENT.getInstance().NIOBIUM, 10),
					new MaterialStack(ELEMENT.getInstance().ALUMINIUM, 20),
					new MaterialStack(NICHROME, 10)
			});

	public static final Material NITINOL_60 = new Material(
			"Nitinol 60", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			5651, //Melting Point in C
			8975,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().NICKEL, 40),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 60)
			});


	public static final Material ZERON_100 = new Material(
			"Zeron-100", //Material Name
			MaterialState.SOLID, //State
			new short[]{180, 180, 20, 0}, //Material Colour
			6100,
			9785,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 26),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 6),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 4),
					new MaterialStack(ELEMENT.getInstance().COPPER, 20),
					new MaterialStack(ELEMENT.getInstance().TUNGSTEN, 4),
					new MaterialStack(ALLOY.STEEL, 40)
			});

	public static final Material MARAGING250 = new Material(
			"Maraging Steel 250", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			2413, //Melting Point in C
			4555,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.STEEL, 64),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 4),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 4),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 16),
					new MaterialStack(ELEMENT.getInstance().COBALT, 8),
			});

	public static final Material MARAGING300 = new Material(
			"Maraging Steel 300", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			2413, //Melting Point in C
			4555,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.STEEL, 64),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 4),
					new MaterialStack(ELEMENT.getInstance().ALUMINIUM, 4),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 16),
					new MaterialStack(ELEMENT.getInstance().COBALT, 8),
			});

	public static final Material MARAGING350 = new Material(
			"Maraging Steel 350", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			2413, //Melting Point in C
			4555,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.STEEL, 64),
					new MaterialStack(ELEMENT.getInstance().ALUMINIUM, 4),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 4),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 16),
					new MaterialStack(ELEMENT.getInstance().COBALT, 8),
			});

	public static final Material AQUATIC_STEEL = new Material(
			"Watertight Steel", //Material Name
			MaterialState.SOLID, //State
			new short[] {120, 120, 180}, //Material Colour
			2673, //Melting Point in C
			4835,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.STEEL, 60),
					new MaterialStack(ELEMENT.getInstance().CARBON, 10),
					new MaterialStack(ELEMENT.getInstance().MANGANESE, 5),
					new MaterialStack(ELEMENT.getInstance().SILICON, 10),
					new MaterialStack(ELEMENT.getInstance().PHOSPHORUS, 5),
					new MaterialStack(ELEMENT.getInstance().SULFUR, 5),
					new MaterialStack(ELEMENT.getInstance().ALUMINIUM, 5)
			});

	public static final Material STELLITE = new Material(
			"Stellite", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			4310, //Melting Point in C
			6250,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().COBALT, 35),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 35),
					new MaterialStack(ELEMENT.getInstance().MANGANESE, 20),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 10)
			});

	public static final Material TALONITE = new Material(
			"Talonite", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			3454, //Melting Point in C
			5500,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().COBALT, 40),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 30),
					new MaterialStack(ELEMENT.getInstance().PHOSPHORUS, 20),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 10)
			});

	public static final Material HASTELLOY_W = new Material(
			"Hastelloy-W", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			3350, //Melting Point in C
			5755,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().IRON, 06),
					new MaterialStack(ELEMENT.getInstance().COBALT, 2),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 24),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 6),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 62)
			});

	public static final Material HASTELLOY_X = new Material(
			"Hastelloy-X", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			3350, //Melting Point in C
			5755,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().IRON, 18),
					new MaterialStack(ELEMENT.getInstance().MANGANESE, 2),
					new MaterialStack(ELEMENT.getInstance().SILICON, 2),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 8),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 22),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 48)
			});

	public static final Material HASTELLOY_N = new Material(
			"Hastelloy-N", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			4350, //Melting Point in C
			6875,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().YTTRIUM, 8),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 16),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 8),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 8),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 60)
			});

	public static final Material HASTELLOY_C276 = new Material(
			"Hastelloy-C276", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			4350, //Melting Point in C
			6520,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().COBALT, 2),
					new MaterialStack(ELEMENT.getInstance().MOLYBDENUM, 16),
					new MaterialStack(ELEMENT.getInstance().TUNGSTEN, 2),
					new MaterialStack(ELEMENT.getInstance().COPPER, 2),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 14),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 64)
			});

	public static final Material INCOLOY_020 = new Material(
			"Incoloy-020", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			3425, //Melting Point in C
			5420,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().IRON, 40),
					new MaterialStack(ELEMENT.getInstance().COPPER, 4),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 20),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 36)
			});

	public static final Material INCOLOY_DS = new Material(
			"Incoloy-DS", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			3425, //Melting Point in C
			5420,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().IRON, 46),
					new MaterialStack(ELEMENT.getInstance().COBALT, 18),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 18),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 18)
			});

	public static final Material INCOLOY_MA956 = new Material(
			"Incoloy-MA956", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			4425, //Melting Point in C
			6875,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().IRON, 64),
					new MaterialStack(ELEMENT.getInstance().ALUMINIUM, 12),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 20),
					new MaterialStack(ELEMENT.getInstance().YTTRIUM, 4)
			});

	public static final Material TUNGSTEN_CARBIDE = new Material(
			"Tungsten Carbide", //Material Name
			MaterialState.SOLID, //State
			new short[]{44, 44, 44, 0}, //Material Colour
			3422, //Melting Point in C
			-1,
			-1,
			-1,
			true, //Uses Blast furnace?
			false, //Generate cells
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().CARBON, 50),
					new MaterialStack(ELEMENT.getInstance().TUNGSTEN, 50)
			});

	public static final Material TUNGSTEN_TITANIUM_CARBIDE = new Material(
			"Tungsten Titanium Carbide", //Material Name
			MaterialState.SOLID, //State
			null,
			4422, //Melting Point in C
			-1,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(TUNGSTEN_CARBIDE, 70),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 30)
			});

	public static final Material SILICON_CARBIDE = new Material(
			"Silicon Carbide", //Material Name
			MaterialState.SOLID, //State
			new short[]{40, 48, 36, 0}, //Material Colour
			1414, //Melting Point in C
			-1,
			-1,
			-1,
			false, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().SILICON, 50),
					new MaterialStack(ELEMENT.getInstance().CARBON, 50)
			});

	public static final Material TANTALUM_CARBIDE = new Material(
			"Tantalum Carbide", //Material Name
			MaterialState.SOLID, //State
			new short[]{139, 136, 120, 0}, //Material Colour
			2980, //Melting Point in C
			-1,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().TANTALUM, 50),
					new MaterialStack(ELEMENT.getInstance().CARBON, 50)
			});

	public static final Material ZIRCONIUM_CARBIDE = new Material(
			"Zirconium Carbide", //Material Name
			MaterialState.SOLID, //State
			new short[]{222, 202, 180, 0}, //Material Colour
			1555, //Melting Point in C
			-1,
			-1,
			-1,
			false, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().ZIRCONIUM, 50),
					new MaterialStack(ELEMENT.getInstance().CARBON, 50)
			});

	public static final Material NIOBIUM_CARBIDE = new Material(
			"Niobium Carbide", //Material Name
			MaterialState.SOLID, //State
			new short[]{205, 197, 191, 0}, //Material Colour
			2477, //Melting Point in C
			-1,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().NIOBIUM, 50),
					new MaterialStack(ELEMENT.getInstance().CARBON, 50)
			});

	public static final Material ARCANITE = new Material(
			"Arcanite", //Material Name
			MaterialState.SOLID, //State
			null,
			5666, //Melting Point in C
			9875,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().THORIUM232, 40),
					new MaterialStack(ENERGYCRYSTAL, 40),
					new MaterialStack(ELEMENT.getInstance().ORDO, 10),
					new MaterialStack(ELEMENT.getInstance().PERDITIO, 10)
			});

	public static final Material LEAGRISIUM = new Material(
			"Grisium", //Material Name
			MaterialState.SOLID, //State
			new short[]{53, 93, 106, 0}, //Material Colour
			3850, //Melting Point in C
			5550, //Boiling Point in C
			96, //Protons
			128, //Neutrons
			true, //Uses Blast furnace?
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 18),
					new MaterialStack(ELEMENT.getInstance().CARBON, 18),
					new MaterialStack(ELEMENT.getInstance().POTASSIUM, 18),
					new MaterialStack(ELEMENT.getInstance().LITHIUM, 18),
					new MaterialStack(ELEMENT.getInstance().SULFUR, 18),
					new MaterialStack(ELEMENT.getInstance().HYDROGEN, 10)
			});	//Material Stacks with Percentage of required elements.

	public static final Material EGLIN_STEEL_BASE = new Material(
			"Eglin Steel Base Compound", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			-1, //Melting Point in C
			-1, //Boiling Point in C
			-1,
			-1,
			false, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{

					new MaterialStack(ELEMENT.getInstance().IRON, 12),
					new MaterialStack(KANTHAL, 3),
					new MaterialStack(INVAR, 15)
			});

	public static final Material EGLIN_STEEL = new Material(
			"Eglin Steel", //Material Name
			MaterialState.SOLID, //State
			new short[]{139,69,19, 0}, //Material Colour
			1048, //Melting Point in C
			1973, //Boiling Point in C
			-1,
			-1,
			false, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.EGLIN_STEEL_BASE, 10),
					new MaterialStack(ELEMENT.getInstance().SULFUR, 1),
					new MaterialStack(ELEMENT.getInstance().SILICON, 4),
					new MaterialStack(ELEMENT.getInstance().CARBON, 1)
			});

	public static final Material HG1223 = new Material(
			"HG-1223", //Material Name
			MaterialState.LIQUID, //State
			new short[]{39,85,159, 0}, //Material Colour
			6357, //Melting Point in C
			8563, //Boiling Point in C
			-1,
			-1,
			false, //Uses Blast furnace?
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().MERCURY, 1),
					new MaterialStack(ELEMENT.getInstance().BARIUM, 2),
					new MaterialStack(ELEMENT.getInstance().CALCIUM, 2),
					new MaterialStack(ELEMENT.getInstance().COPPER, 3),
					new MaterialStack(ELEMENT.getInstance().OXYGEN, 8)
			});
	
	
	public static final Material HS188A = new Material(
			"HS188-A", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			4870, //Melting Point in C
			7550, //Boiling Point in C
			-1, //Protons
			-1, //Neutrons
			true, //Uses Blast furnace?
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().COBALT, 20),
					new MaterialStack(ELEMENT.getInstance().HAFNIUM, 20),
					new MaterialStack(TALONITE, 16),
					new MaterialStack(ELEMENT.getInstance().RHENIUM, 10),
					new MaterialStack(NIOBIUM_CARBIDE, 10),
					new MaterialStack(HASTELLOY_X, 8),
					new MaterialStack(TUNGSTENSTEEL, 8),
					new MaterialStack(ZIRCONIUM_CARBIDE, 8),
			});	//Material Stacks with Percentage of required elements.

	/**
	 * Stargate Materials - #D2FFA9 210, 255, 170
	 */

	public static final Material TRINIUM_TITANIUM = new Material(
			"Trinium Titanium Alloy", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			3750, //Melting Point in C
			7210, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().TRINIUM_REFINED, 3),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 7)
			});
	public static final Material TRINIUM_NAQUADAH = new Material(
			"Trinium Naquadah Alloy", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			4200, //Melting Point in C
			7400, //Boiling Point in C
			-1,
			-1,
			false, //Uses Blast furnace?
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().TRINIUM_REFINED, 5),
					new MaterialStack(ELEMENT.getInstance().NAQUADAH, 9)
			});
	public static final Material TRINIUM_NAQUADAH_CARBON = new Material(
			"Trinium Naquadah Carbonite", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			6500, //Melting Point in C
			9000, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			new MaterialStack[]{
					new MaterialStack(TRINIUM_NAQUADAH, 9),
					new MaterialStack(ELEMENT.getInstance().CARBON, 1)
			});

	public static final Material TRINIUM_REINFORCED_STEEL = new Material(
			"Arceus Alloy 2B", //Material Name
			MaterialState.SOLID, //State
			new short[]{205, 197, 23, 0}, //Material Colour
			7555, //Melting Point in C
			12350,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().TRINIUM_REFINED, 30),
					new MaterialStack(ALLOY.MARAGING350, 40),
					new MaterialStack(ALLOY.TUNGSTENSTEEL, 20),
					new MaterialStack(ALLOY.OSMIRIDIUM, 10),
					new MaterialStack(ELEMENT.getInstance().STRONTIUM, 10)
			});



	/*
	 * Witchery Material
	 */

	public static final Material KOBOLDITE = new Material(
			"Koboldite", //Material Name
			MaterialState.SOLID, //State
			new short[]{80, 210, 255, 0}, //Material Colour
			-1, //Melting Point in C
			-1,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().NICKEL, 35),
					new MaterialStack(ELEMENT.getInstance().THAUMIUM, 30),
					new MaterialStack(ELEMENT.getInstance().IRON, 35)
			});


	/*
	 * Top Tier Alloys
	 */
	
	public static final Material HELICOPTER = new Material(
			"HeLiCoPtEr", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			5763,
			8192,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().HELIUM, 20),
					new MaterialStack(ELEMENT.getInstance().LITHIUM, 20),
					new MaterialStack(ELEMENT.getInstance().COBALT, 20),
					new MaterialStack(ELEMENT.getInstance().PLATINUM, 20),
					new MaterialStack(ELEMENT.getInstance().ERBIUM, 20)
			});

	//0lafe Compound
	public static final Material LAFIUM = new Material(
			"Lafium Compound", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			6350, //Melting Point in C
			9865, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.HASTELLOY_N, 8),
					new MaterialStack(ELEMENT.getInstance().NAQUADAH, 4),
					new MaterialStack(ELEMENT.getInstance().SAMARIUM, 2),
					new MaterialStack(ELEMENT.getInstance().TUNGSTEN, 4),
					new MaterialStack(ELEMENT.getInstance().ARGON, 2),
					new MaterialStack(ELEMENT.getInstance().ALUMINIUM, 6),
					new MaterialStack(ELEMENT.getInstance().NICKEL, 8),
					new MaterialStack(ELEMENT.getInstance().CARBON, 2)
			});

	//Cinobi Alloy
	public static final Material CINOBITE = new Material(
			"Cinobite A243", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			7350, //Melting Point in C
			12565, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.ZERON_100, 16),
					new MaterialStack(ELEMENT.getInstance().NAQUADRIA, 7),
					new MaterialStack(ELEMENT.getInstance().GADOLINIUM, 5),
					new MaterialStack(ELEMENT.getInstance().ALUMINIUM, 3),
					new MaterialStack(ELEMENT.getInstance().MERCURY, 2),
					new MaterialStack(ELEMENT.getInstance().TIN, 2),
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 12),
					new MaterialStack(ALLOY.OSMIRIDIUM, 6)
			});

	//Piky Alloy
	public static final Material PIKYONIUM = new Material(
			"Pikyonium 64B", //Material Name
			MaterialState.SOLID, //State
			new short[]{52, 103, 186, 0}, //Material Colour
			6850, //Melting Point in C
			11765, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.INCONEL_792, 16),
					new MaterialStack(ALLOY.EGLIN_STEEL, 10),
					new MaterialStack(ELEMENT.getInstance().NAQUADAH_ENRICHED, 8),
					new MaterialStack(ELEMENT.getInstance().CERIUM, 6),
					new MaterialStack(ELEMENT.getInstance().ANTIMONY, 4),
					new MaterialStack(ELEMENT.getInstance().PLATINUM, 4),					
					new MaterialStack(ELEMENT.getInstance().YTTERBIUM, 2),
					new MaterialStack(ALLOY.TUNGSTENSTEEL, 8)
			});

	//Piky Alloy
	public static final Material ABYSSAL = new Material(
			"Abyssal Alloy", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			9650, //Melting Point in C
			13765, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.STAINLESS_STEEL, 10),
					new MaterialStack(ALLOY.TUNGSTEN_CARBIDE, 10),
					new MaterialStack(ALLOY.NICHROME, 10),
					new MaterialStack(ALLOY.BRONZE, 10),
					new MaterialStack(ALLOY.INCOLOY_MA956, 10),
					new MaterialStack(ELEMENT.getInstance().IODINE, 2),
					new MaterialStack(ELEMENT.getInstance().RADON, 2),
					new MaterialStack(ELEMENT.getInstance().GERMANIUM, 2),
			});
	
	//Alkalus Alloy
	public static final Material LAURENIUM = new Material(
			"Laurenium", //Material Name
			MaterialState.SOLID, //State
			new short[] {244, 168, 255, 0}, //Material Colour
			6825, //Melting Point in C
			11355, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.EGLIN_STEEL, 40),
					new MaterialStack(ELEMENT.getInstance().INDIUM, 10),
					new MaterialStack(ELEMENT.getInstance().CHROMIUM, 20),
					new MaterialStack(ELEMENT.getInstance().DYSPROSIUM, 5),
					new MaterialStack(ELEMENT.getInstance().RHENIUM, 5),
			});
	
	
	//Bot Alloy
	public static final Material BOTMIUM = new Material(
			"Botmium", //Material Name
			MaterialState.SOLID, //State
			new short[] {80, 160, 80, 0}, //Material Colour
			8220, //Melting Point in C
			10540, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.NITINOL_60, 2),
					new MaterialStack(ELEMENT.getInstance().OSMIUM, 12),
					new MaterialStack(ELEMENT.getInstance().RUTHENIUM, 12),
					new MaterialStack(ELEMENT.getInstance().THALLIUM, 6),
			});

	//Titansteel
	public static final Material TITANSTEEL = new Material(
			"Titansteel", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			8250, //Melting Point in C
			11765, //Boiling Point in C
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.TUNGSTEN_TITANIUM_CARBIDE, 3),
					new MaterialStack(ELEMENT.getInstance().IGNIS, 1),
					new MaterialStack(ELEMENT.getInstance().TERRA, 1),
					new MaterialStack(ELEMENT.getInstance().PERDITIO, 1),
			});


	public static final Material OCTIRON = new Material(
			"Octiron", //Material Name
			MaterialState.SOLID, //State
			null,
			9120, //Melting Point in C
			14200,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ARCANITE, 30),
					new MaterialStack(TITANSTEEL, 30),
					new MaterialStack(ENERGYCRYSTAL, 5),
					new MaterialStack(STEEL_BLACK, 10),
					new MaterialStack(ELEMENT.getInstance().THAUMIUM, 25)
			});



	public static final Material BLACK_TITANIUM = new Material(
			"Black Titanium", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			Materials.Titanium.mMeltingPoint*4, //Melting Point in C
			Materials.Titanium.mMeltingPoint*16,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().TITANIUM, 55),
					new MaterialStack(ELEMENT.getInstance().LANTHANUM, 12),
					new MaterialStack(ELEMENT.getInstance().TUNGSTEN, 8),
					new MaterialStack(ELEMENT.getInstance().COBALT, 6),
					new MaterialStack(ELEMENT.getInstance().MANGANESE, 4),
					new MaterialStack(ELEMENT.getInstance().PHOSPHORUS, 4),
					new MaterialStack(ELEMENT.getInstance().PALLADIUM, 4),
					new MaterialStack(ELEMENT.getInstance().NIOBIUM, 2),
					new MaterialStack(ELEMENT.getInstance().ARGON, 5)
			});
	
	public static final Material BABBIT_ALLOY = new Material(
			"Babbit Alloy", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			268, //Melting Point in C
			589,
			-1,
			-1,
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ELEMENT.getInstance().TIN, 10),
					new MaterialStack(ELEMENT.getInstance().LEAD, 72),
					new MaterialStack(ELEMENT.getInstance().ANTIMONY, 16),
					new MaterialStack(ELEMENT.getInstance().ARSENIC, 2)
			});















	//Quantum
	public static final Material QUANTUM = new Material(
			"Quantum", //Material Name
			MaterialState.SOLID, //State
			null, //Material Colour
			10500, //Melting Point in C
			25000, //Boiling Point in C
			150, //Protons
			200, //Neutrons
			true, //Uses Blast furnace?
			//Material Stacks with Percentage of required elements.
			new MaterialStack[]{
					new MaterialStack(ALLOY.STELLITE, 15),
					new MaterialStack(ALLOY.ENERGYCRYSTAL, 5),
					new MaterialStack(ALLOY.SILICON_CARBIDE, 5),
					new MaterialStack(ELEMENT.getInstance().GALLIUM, 5),
					new MaterialStack(ELEMENT.getInstance().AMERICIUM, 5),
					new MaterialStack(ELEMENT.getInstance().PALLADIUM, 5),
					new MaterialStack(ELEMENT.getInstance().BISMUTH, 5),
					new MaterialStack(ELEMENT.getInstance().GERMANIUM, 5)
			});



}