diff options
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/recipes/ExtruderRecipes.java')
-rw-r--r-- | src/main/java/gregtech/loaders/postload/recipes/ExtruderRecipes.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/ExtruderRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/ExtruderRecipes.java new file mode 100644 index 0000000000..34d946f003 --- /dev/null +++ b/src/main/java/gregtech/loaders/postload/recipes/ExtruderRecipes.java @@ -0,0 +1,19 @@ +package gregtech.loaders.postload.recipes; + +import gregtech.api.enums.GT_Values; +import gregtech.api.enums.ItemList; + +public class ExtruderRecipes implements Runnable { + @Override + public void run() { + GT_Values.RA.addExtruderRecipe( + ItemList.FR_Wax.get(1L), ItemList.Shape_Extruder_Cell.get(0L), ItemList.FR_WaxCapsule.get(1L), 64, 16); + + GT_Values.RA.addExtruderRecipe( + ItemList.FR_RefractoryWax.get(1L), + ItemList.Shape_Extruder_Cell.get(0L), + ItemList.FR_RefractoryCapsule.get(1L), + 128, + 16); + } +} |