diff options
author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-10-12 17:59:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 18:59:29 +0200 |
commit | f61874218491e01e4edbe4c78a0b2b8971c03852 (patch) | |
tree | a23e75a133bb0bc0a0df2489bc141f1070965782 /src/main | |
parent | 0fab6334c54843e93398c495e0d00d72ca3aa67b (diff) | |
download | GT5-Unofficial-f61874218491e01e4edbe4c78a0b2b8971c03852.tar.gz GT5-Unofficial-f61874218491e01e4edbe4c78a0b2b8971c03852.tar.bz2 GT5-Unofficial-f61874218491e01e4edbe4c78a0b2b8971c03852.zip |
Revert the Nerf to Algae Farm Casing Cost (#397)
- Changed the Algae Farm casing tier to the low tier it was supposed to be at, this time at MV and with no dirt. The casing is shared with the TGS, which was the reason for the nerf, but the controller can gate that multi;
- Adjusted the controller recipe for the Farm to also be MV.
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 8617d7c15a..11d615bd82 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -1068,15 +1068,15 @@ public class RECIPES_Machines { new ItemStack[] { CI.getNumberedBioCircuit(21), CI.getTieredGTPPMachineCasing(0, 4), - CI.getTieredComponentOfMaterial(Materials.Iron, OrePrefixes.rod, 12), + CI.getTieredComponentOfMaterial(Materials.Aluminium, OrePrefixes.rod, 12), CI.getTieredComponentOfMaterial(Materials.Wood, OrePrefixes.plate, 32), - CI.getTieredComponentOfMaterial(Materials.Bronze, OrePrefixes.bolt, 16), + CI.getTieredComponentOfMaterial(Materials.Steel, OrePrefixes.bolt, 16), CI.getTieredComponentOfMaterial(Materials.Redstone, OrePrefixes.dust, 32), }, ALLOY.POTIN.getFluidStack(2 * (144 * 4)), GregtechItemList.AlgaeFarm_Controller.get(1), 60 * 20, - MaterialUtils.getVoltageForTier(1)); + MaterialUtils.getVoltageForTier(2)); } private static void distillus() { @@ -2254,17 +2254,16 @@ public class RECIPES_Machines { 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), + ALLOY.TUMBAGA.getFrameBox(1), + ALLOY.TUMBAGA.getComponentByPrefix(OrePrefixes.pipeTiny, 1), + ItemList.MV_Coil.get(1), + ItemList.IC2_Plantball.get(4), + GT_OreDictUnificator.get(OrePrefixes.plank, Materials.Wood, 8), }, - GT_ModHandler.getDistilledWater(8000), + GT_ModHandler.getDistilledWater(2000), RECIPE_TreeFarmFrame, - 60, - 1960); + 200, + 64); } if (CORE.ConfigSwitches.enableMachine_Tesseracts) { |