diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-03-13 12:30:37 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-03-13 12:30:37 +0000 |
commit | d8da94ede0ae3df9ea5c47145043c09874bffebe (patch) | |
tree | c584f96be0ffac1b1b4b96d326a34411290a64bf /src/Java/gtPlusPlus/core/recipe | |
parent | 94d7c2c8af9f13d70ab115f377e85502c3a96f7c (diff) | |
download | GT5-Unofficial-d8da94ede0ae3df9ea5c47145043c09874bffebe.tar.gz GT5-Unofficial-d8da94ede0ae3df9ea5c47145043c09874bffebe.tar.bz2 GT5-Unofficial-d8da94ede0ae3df9ea5c47145043c09874bffebe.zip |
% Mild improvements to BTF_Inventory.java.
% Finished Agricultural Sewer.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 91ceb30911..1f7097afc9 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -354,6 +354,22 @@ public class RECIPES_Machines { ItemUtils.getSimpleStack(ModBlocks.blockCustomJukebox), 20 * 30, 30); + + //Poo Collector + CORE.RA.addSixSlotAssemblingRecipe( + new ItemStack[] { + CI.machineHull_MV, + CI.getTieredComponent(OrePrefixes.circuit, 2, GTNH ? 4 : 2), + CI.getTieredComponent(OrePrefixes.pipe, 2, GTNH ? 4 : 2), + CI.getElectricPump(2, GTNH ? 4 : 2), + ALLOY.EGLIN_STEEL.getPlate(GTNH ? 8 : 4), + ALLOY.POTIN.getScrew(GTNH ? 12 : 6) + }, + ALLOY.TUMBAGA.getFluid(144 * 4), + ItemUtils.getSimpleStack(ModBlocks.blockPooCollector), + 20 * 60, + 30); + //Basic Steam Turbine |