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
|
package GoodGenerator.Items;
import GoodGenerator.util.MaterialFix;
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.*;
public class MyMaterial implements Runnable {
//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(),
31000,
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(),
31001,
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(),
31002,
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(),
31003,
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(),
31004,
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(),
31005,
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(),
31006,
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(),
31007,
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(),
31008,
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(),
31009,
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(),
31010,
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(),
31011,
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(),
31012,
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(),
31013,
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(),
31014,
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(),
31015,
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(),
31016,
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(),
31017,
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(),
31018,
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(),
31019,
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(),
31020,
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(),
31021,
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(),
31022,
TextureSet.SET_DIAMOND
);
@Override
public void run() {
}
}
|