aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/postload/recipes/ExtruderRecipes.java
blob: f916981c3317aecf361026f8d5d19695ddb3e1c3 (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.util.GT_Recipe.GT_Recipe_Map.sExtruderRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;

import gregtech.api.enums.GT_Values;
import gregtech.api.enums.ItemList;

public class ExtruderRecipes implements Runnable {

    @Override
    public void run() {
        // wax capsule
        GT_Values.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(sExtruderRecipes);

        GT_Values.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(sExtruderRecipes);
    }
}