diff options
author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-07-31 03:48:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 09:48:18 +0700 |
commit | 1d9aa8867cb5eadfc02523d75401d0327e12b361 (patch) | |
tree | 4d1f3f8061a6bd083afe23a4235cef30feb532a8 /src/main/java/gtPlusPlus/xmod/gregtech/loaders | |
parent | 1509190b22c4a17c22af952d433241139a6c83cf (diff) | |
download | GT5-Unofficial-1d9aa8867cb5eadfc02523d75401d0327e12b361.tar.gz GT5-Unofficial-1d9aa8867cb5eadfc02523d75401d0327e12b361.tar.bz2 GT5-Unofficial-1d9aa8867cb5eadfc02523d75401d0327e12b361.zip |
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
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_GlueLine.java | 10 |
1 files changed, 5 insertions, 5 deletions
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 |