From 1d9aa8867cb5eadfc02523d75401d0327e12b361 Mon Sep 17 00:00:00 2001 From: Steelux <70096037+Steelux8@users.noreply.github.com> Date: Sun, 31 Jul 2022 03:48:18 +0100 Subject: Require Super Glue in Higher Graphene Production (#256) * Require Super Glue in Higher Graphene Production - Edited the existing Super Glue recipes to make Graphene with some wafer inputs, to match the other PR that makes these the only option with these wafers. * Fix Europium Wafer Input Amount --- .../xmod/gregtech/loaders/recipe/RecipeLoader_GlueLine.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_GlueLine.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_GlueLine.java index ad3594eb11..fe12fbd4ad 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_GlueLine.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_GlueLine.java @@ -329,12 +329,12 @@ public class RecipeLoader_GlueLine { // Graphene recipes from later wafer tiers, using superglue instead of the bronze age glue GT_Values.RA.addAssemblerRecipe( new ItemStack[] { - ItemUtils.getItemStackOfAmountFromOreDict("dustGraphite", 32), - ItemList.Circuit_Silicon_Wafer4.get(1L), + ItemUtils.getItemStackOfAmountFromOreDict("dustGraphite", 64), + ItemList.Circuit_Silicon_Wafer4.get(2L), CI.getNumberedCircuit(2) }, - MISC_MATERIALS.ETHYL_CYANOACRYLATE.getFluidStack(200), - ItemUtils.getItemStackOfAmountFromOreDict("dustGraphene", 32), + MISC_MATERIALS.ETHYL_CYANOACRYLATE.getFluidStack(500), + ItemUtils.getItemStackOfAmountFromOreDict("dustGraphene", 64), 120, 30 ); @@ -345,7 +345,7 @@ public class RecipeLoader_GlueLine { ItemList.Circuit_Silicon_Wafer5.get(1L), CI.getNumberedCircuit(2) }, - MISC_MATERIALS.ETHYL_CYANOACRYLATE.getFluidStack(200), + MISC_MATERIALS.ETHYL_CYANOACRYLATE.getFluidStack(250), ItemUtils.getItemStackOfAmountFromOreDict("dustGraphene", 64), 120, 30 -- cgit