From fbe4c6407f6daa22460f300b0da802a6b8999485 Mon Sep 17 00:00:00 2001 From: m2r1k5 <61507029+m2r1k5@users.noreply.github.com> Date: Sat, 26 Mar 2022 10:03:09 +0800 Subject: [PATCH] ste harder auto hatch, ae2 fluid storage --- overrides/scripts/expertmode.zs | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/overrides/scripts/expertmode.zs b/overrides/scripts/expertmode.zs index 4718cf2..33d156a 100644 --- a/overrides/scripts/expertmode.zs +++ b/overrides/scripts/expertmode.zs @@ -810,6 +810,43 @@ recipes.addShaped(, [ [, , ], [, , ]]); +// Auto Maintenance Hatch +recipes.removeByRecipeName("gregtech:maintenance_hatch_automatic"); +recipes.addShaped(, [ + [, , ], + [, , ], + [, , ] +]); + +// Fluid Storage +recipes.removeByRecipeName("appliedenergistics2:network/cells/fluid_storage_components_cell_1k_part"); +recipes.removeByRecipeName("appliedenergistics2:network/cells/fluid_storage_components_cell_4k_part"); +recipes.removeByRecipeName("appliedenergistics2:network/cells/fluid_storage_components_cell_16k_part"); +recipes.removeByRecipeName("appliedenergistics2:network/cells/fluid_storage_components_cell_64k_part"); + +assembler.recipeBuilder() + .inputs( * 2, * 4, , * 2) + .outputs() + .duration(100).EUt(960) + .buildAndRegister(); + +assembler.recipeBuilder() + .inputs( * 2, * 4, , * 3) + .outputs() + .duration(100).EUt(960) + .buildAndRegister(); + +assembler.recipeBuilder() + .inputs( * 2, * 4, , * 3) + .outputs() + .duration(100).EUt(960) + .buildAndRegister(); + +assembler.recipeBuilder() + .inputs( * 2, * 4, , * 3) + .outputs() + .duration(100).EUt(960) + .buildAndRegister(); // Removals mods.jei.JEI.removeAndHide();