blob: 59cbefc3c8ab502081afdca15189b679c65a98a0 (
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
|
package gregtech.loaders.postload.recipes;
import static gregtech.api.recipe.RecipeMaps.extruderRecipes;
import static gregtech.api.util.GTRecipeBuilder.SECONDS;
import static gregtech.api.util.GTRecipeBuilder.TICKS;
import gregtech.api.enums.GTValues;
import gregtech.api.enums.ItemList;
public class ExtruderRecipes implements Runnable {
@Override
public void run() {
// wax capsule
GTValues.RA.stdBuilder()
.itemInputs(ItemList.FR_Wax.get(1L), ItemList.Shape_Extruder_Cell.get(0L))
.itemOutputs(ItemList.FR_WaxCapsule.get(1L))
.duration(3 * SECONDS + 4 * TICKS)
.eut(16)
.addTo(extruderRecipes);
GTValues.RA.stdBuilder()
.itemInputs(ItemList.FR_RefractoryWax.get(1L), ItemList.Shape_Extruder_Cell.get(0L))
.itemOutputs(ItemList.FR_RefractoryCapsule.get(1L))
.duration(6 * SECONDS + 8 * TICKS)
.eut(16)
.addTo(extruderRecipes);
}
}
|