From 763432bed3046acd31da706821e23c54bfa51bbe Mon Sep 17 00:00:00 2001 From: tracer4b <61507029+tracer4b@users.noreply.github.com> Date: Mon, 9 May 2022 19:23:30 +0800 Subject: [PATCH] move stabilized miners to assembly line --- .../brandon3055/CustomFusionRecipes.json | 84 +------------------ overrides/scripts/expertmode.zs | 49 +++++++++++ 2 files changed, 50 insertions(+), 83 deletions(-) diff --git a/overrides/config/brandon3055/CustomFusionRecipes.json b/overrides/config/brandon3055/CustomFusionRecipes.json index 2551b7e..47d6deb 100644 --- a/overrides/config/brandon3055/CustomFusionRecipes.json +++ b/overrides/config/brandon3055/CustomFusionRecipes.json @@ -340,87 +340,5 @@ "ore:dragonEgg", "ore:ingotDraconium" ] - }, - { - "mode": "ADD", - "result": "contenttweaker:tieroneship_stabilized", - "catalyst": "contenttweaker:tieroneship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - },{ - "mode": "ADD", - "result": "contenttweaker:tiertwoship_stabilized", - "catalyst": "contenttweaker:tiertwoship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - },{ - "mode": "ADD", - "result": "contenttweaker:tierthreeship_stabilized", - "catalyst": "contenttweaker:tierthreeship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - },{ - "mode": "ADD", - "result": "contenttweaker:tierfourship_stabilized", - "catalyst": "contenttweaker:tierfourship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - },{ - "mode": "ADD", - "result": "contenttweaker:tierfourandhalfship_stabilized", - "catalyst": "contenttweaker:tierfourandhalfship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - },{ - "mode": "ADD", - "result": "contenttweaker:tierfiveship_stabilized", - "catalyst": "contenttweaker:tierfiveship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - },{ - "mode": "ADD", - "result": "contenttweaker:tiersixship_stabilized", - "catalyst": "contenttweaker:tiersixship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - },{ - "mode": "ADD", - "result": "contenttweaker:tiersevenship_stabilized", - "catalyst": "contenttweaker:tiersevenship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - },{ - "mode": "ADD", - "result": "contenttweaker:tiereightship_stabilized", - "catalyst": "contenttweaker:tiereightship", - "energy": 10000000000, - "tier": 3, - "ingredients": [ - "contenttweaker:heartofauniverse" - ] - } + } ] diff --git a/overrides/scripts/expertmode.zs b/overrides/scripts/expertmode.zs index 354fa57..1da0932 100644 --- a/overrides/scripts/expertmode.zs +++ b/overrides/scripts/expertmode.zs @@ -549,6 +549,55 @@ recipes.addShaped(, [ [, , ] ]); +// Stabilized Miners +assembly_line.recipeBuilder() + .inputs(, , * 4, * 24, * 6, * 6, * 6, * 6) + .fluidInputs( * 48000, * 576, * 576) + .outputs() + .duration(5000).EUt(500000).buildAndRegister(); + +assembly_line.recipeBuilder() + .inputs(, , * 4, * 24, * 6, * 6, * 6, * 6) + .fluidInputs( * 48000, * 576, * 576) + .outputs() + .duration(5000).EUt(500000).buildAndRegister(); + +assembly_line.recipeBuilder() + .inputs(, , * 4, * 24, * 6, * 6, * 6, * 6) + .fluidInputs( * 48000, * 576, * 576) + .outputs() + .duration(5000).EUt(500000).buildAndRegister(); + +assembly_line.recipeBuilder() + .inputs(, , * 4, * 24, * 6, * 6, * 6, * 6) + .fluidInputs( * 48000, * 576, * 576) + .outputs() + .duration(5000).EUt(500000).buildAndRegister(); + +assembly_line.recipeBuilder() + .inputs(, , * 4, * 24, * 6, * 6, * 6, * 6) + .fluidInputs( * 48000, * 576, * 576) + .outputs() + .duration(5000).EUt(500000).buildAndRegister(); + +assembly_line.recipeBuilder() + .inputs(, , * 4, * 24, * 6, * 6, * 6, * 6) + .fluidInputs( * 48000, * 576, * 576) + .outputs() + .duration(5000).EUt(500000).buildAndRegister(); + +assembly_line.recipeBuilder() + .inputs(, , * 4, * 24, * 6, * 6, * 6, * 6) + .fluidInputs( * 48000, * 576, * 576) + .outputs() + .duration(5000).EUt(500000).buildAndRegister(); + +assembly_line.recipeBuilder() + .inputs(, , * 4, * 24, * 6, * 6, * 6, * 6) + .fluidInputs( * 48000, * 576, * 576) + .outputs() + .duration(5000).EUt(500000).buildAndRegister(); + // Remove shortcut recipes recipes.remove( * 16); recipes.removeByRecipeName("appliedenergistics2:misc/vanilla_comparator");