aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorYang Xizhi <60341015+GlodBlock@users.noreply.github.com>2022-08-03 18:44:28 +0800
committerGitHub <noreply@github.com>2022-08-03 17:44:28 +0700
commit6e8762316b08a7896adce8eff678e50d5d34093a (patch)
tree78f68cd7dd2fa7470233eabec7cfa13d9ec2afc8 /src/main/java
parentcfa64991f6daf0d8df6e4af7a09dc77b4db97d17 (diff)
downloadGT5-Unofficial-6e8762316b08a7896adce8eff678e50d5d34093a.tar.gz
GT5-Unofficial-6e8762316b08a7896adce8eff678e50d5d34093a.tar.bz2
GT5-Unofficial-6e8762316b08a7896adce8eff678e50d5d34093a.zip
nerf tgs recipe (#263)
* nerf tgs recipe * carp
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java28
1 files changed, 20 insertions, 8 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java
index a109db738e..72e30d6177 100644
--- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java
+++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java
@@ -6,6 +6,8 @@ import cpw.mods.fml.common.Loader;
import gregtech.api.GregTech_API;
import gregtech.api.enums.*;
import gregtech.api.util.GT_ModHandler;
+import gregtech.api.util.GT_OreDictUnificator;
+import gregtech.api.util.GT_Utility;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.block.ModBlocks;
import gtPlusPlus.core.item.ModItems;
@@ -1851,17 +1853,27 @@ public class RECIPES_Machines {
}
else {
RecipeUtils.addShapedGregtechRecipe(
- "plateEglinSteel", "rotorEglinSteel", "plateEglinSteel",
- "cableGt02Silver", "pipeMediumStainlessSteel", "cableGt02Silver",
- "plateEglinSteel", CI.machineCasing_HV, "plateEglinSteel",
+ ItemList.Field_Generator_IV.get(1), ALLOY.INCOLOY_MA956.getRotor(1), ItemList.Field_Generator_IV.get(1),
+ ALLOY.NITINOL_60.getPlate(1), GregtechItemList.GTPP_Casing_IV.get(1), ALLOY.NITINOL_60.getPlate(1),
+ ItemList.Field_Generator_IV.get(1), ALLOY.INCONEL_792.getComponentByPrefix(OrePrefixes.pipeMedium, 1), ItemList.Field_Generator_IV.get(1),
RECIPE_TreeFarmController);
}
//Industrial Tree Farm Frame
- RecipeUtils.addShapedGregtechRecipe(
- ItemUtils.getSimpleStack(Blocks.dirt), ItemUtils.getSimpleStack(Blocks.dirt), ItemUtils.getSimpleStack(Blocks.dirt),
- "plankWood", "frameGtTumbaga", "plankWood",
- "plankWood", "plankWood", "plankWood",
- RECIPE_TreeFarmFrame);
+ GT_Values.RA.addAssemblerRecipe(
+ new ItemStack[] {
+ GT_Utility.getIntegratedCircuit(2),
+ ALLOY.INCONEL_625.getFrameBox(1),
+ ALLOY.HASTELLOY_X.getComponentByPrefix(OrePrefixes.pipeTiny, 1),
+ ItemList.Electric_Pump_EV.get(2),
+ ItemList.HV_Coil.get(4),
+ ItemList.IC2_Plantball.get(8),
+ GT_OreDictUnificator.get(OrePrefixes.plank, Materials.Wood, 6),
+ },
+ GT_ModHandler.getDistilledWater(8000),
+ RECIPE_TreeFarmFrame,
+ 60,
+ 1960
+ );
}
if (CORE.ConfigSwitches.enableMachine_Tesseracts){