From b70da71eaf0052e19b09ab98b3069278a49fbb49 Mon Sep 17 00:00:00 2001 From: KuroPeach <1193319600@qq.com> Date: Sun, 7 Aug 2022 13:10:39 +0800 Subject: [PATCH 1/7] Update Earlygame.zs --- overrides/scripts/Earlygame.zs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/overrides/scripts/Earlygame.zs b/overrides/scripts/Earlygame.zs index 7af56cd..313b533 100644 --- a/overrides/scripts/Earlygame.zs +++ b/overrides/scripts/Earlygame.zs @@ -386,4 +386,12 @@ cutter.recipeBuilder() .addTooltip(format.red("Cannot be discharged in GT Battery Buffers")); .addTooltip(format.yellow("Grid squares correspond to 1 chunk, up is north\nClick a resource name in sidebar to highlight only it\nUse JEI to check potential vein depth")); .addTooltip(format.yellow("Grid squares correspond to 1 chunk, up is north\nClick a resource name in sidebar to highlight only it\nUse JEI to check potential vein depth")); -.addTooltip(format.yellow("Grid squares correspond to 1 chunk, up is north\nClick a resource name in sidebar to highlight only it\nUse JEI to check potential vein depth")); \ No newline at end of file +.addTooltip(format.yellow("Grid squares correspond to 1 chunk, up is north\nClick a resource name in sidebar to highlight only it\nUse JEI to check potential vein depth")); + +// Treated Wood Stick +lathe.recipeBuilder() + .inputs() + .outputs( * 2) + .duration(20) + .EUt(30) + .buildAndRegister(); From 292840acd56a6fd53ace1c27067c364037ccabd8 Mon Sep 17 00:00:00 2001 From: Exa <11907282+Exaxxion@users.noreply.github.com> Date: Wed, 10 Aug 2022 19:38:36 -0700 Subject: [PATCH 2/7] Remove duplicate / conflicting recipes - Nether Quartz dust fluid extraction (appears twice in same file: extractor_solidifier.zs) - Liquid XP <-> Solidified XP duplicate recipe (already present in Microverse.zs) - Ender Pearl Dust -> Pulsating Dust (conflicts with decomp recipe) --- overrides/scripts/Earlygame.zs | 2 -- overrides/scripts/expertmode.zs | 12 ------------ overrides/scripts/extractor_solidifier.zs | 5 ----- 3 files changed, 19 deletions(-) diff --git a/overrides/scripts/Earlygame.zs b/overrides/scripts/Earlygame.zs index 313b533..b69efbc 100644 --- a/overrides/scripts/Earlygame.zs +++ b/overrides/scripts/Earlygame.zs @@ -269,8 +269,6 @@ recipes.addShapeless(,[ * 5], [null]).remove(); -electrolyzer.recipeBuilder().inputs([]).outputs([]).duration(200).EUt(1000).buildAndRegister(); -electrolyzer.findRecipe(60, [ * 10], [null]).remove(); furnace.setFuel(, 1200); diff --git a/overrides/scripts/expertmode.zs b/overrides/scripts/expertmode.zs index c1bb01a..ab2658c 100644 --- a/overrides/scripts/expertmode.zs +++ b/overrides/scripts/expertmode.zs @@ -132,18 +132,6 @@ makeShaped("of_nc_water_source", , { A : , B : }); -// Solidified Experience -solidifier.recipeBuilder() - .fluidInputs([ * 160]) - .notConsumable() - .outputs() - .duration(500).EUt(16).buildAndRegister(); - -fluid_extractor.recipeBuilder() - .inputs() - .fluidOutputs( * 160) - .duration(80).EUt(32).buildAndRegister(); - // XP Juice mixer.recipeBuilder() .inputs() diff --git a/overrides/scripts/extractor_solidifier.zs b/overrides/scripts/extractor_solidifier.zs index 70ed889..8aede1c 100644 --- a/overrides/scripts/extractor_solidifier.zs +++ b/overrides/scripts/extractor_solidifier.zs @@ -315,11 +315,6 @@ fluid_extractor.recipeBuilder() .fluidOutputs([ * 144]) .duration(180).EUt(16).buildAndRegister(); -fluid_extractor.recipeBuilder() - .inputs([]) - .fluidOutputs([ * 144]) - .duration(180).EUt(16).buildAndRegister(); - fluid_extractor.recipeBuilder() .inputs([.withTag({EntityTag: {id: "minecraft:cow"}})]) .fluidOutputs([ * 32000]) From 7a9b0ec1799c335b5df96656d67d377b40552204 Mon Sep 17 00:00:00 2001 From: Exa <11907282+Exaxxion@users.noreply.github.com> Date: Wed, 10 Aug 2022 19:59:22 -0700 Subject: [PATCH 3/7] Patch around NC crash with latest GTCEu/GCYM - Add Bansoukou v4.3.1 - Add patch files for NuclearCraft 2.18y to prevent crashes from GTCEu 2.4.0/GCYM 1.1.4 breaking API changes Source code for patches: https://github.com/Exaxxion/NuclearCraft/commits/2.18y-ceu Credit to PrototypeTrousers, whose proposed changes for 2.18zzz were the starting point for this customized backport to 2.18y. Patches currently tested against: GTCEu: a124805 (fix-property-storage-issues branch) rebased onto current master HEAD (8e52d4b) GCYM: d26197b --- manifest.json | 5 +++++ .../nc/integration/gtce/GTCERecipeHelper.class | Bin 0 -> 15946 bytes .../nc/recipe/AbstractRecipeHandler.class | Bin 0 -> 19969 bytes .../nc/recipe/RecipeTupleGenerator.class | Bin 0 -> 3114 bytes 4 files changed, 5 insertions(+) create mode 100644 overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/integration/gtce/GTCERecipeHelper.class create mode 100644 overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/recipe/AbstractRecipeHandler.class create mode 100644 overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/recipe/RecipeTupleGenerator.class diff --git a/manifest.json b/manifest.json index 095f312..eb85893 100644 --- a/manifest.json +++ b/manifest.json @@ -682,6 +682,11 @@ "projectID": 635555, "fileID": 3846179, "required": true + }, + { + "projectID": 434344, + "fileID": 3626352, + "required": true } ] } diff --git a/overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/integration/gtce/GTCERecipeHelper.class b/overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/integration/gtce/GTCERecipeHelper.class new file mode 100644 index 0000000000000000000000000000000000000000..6b46c8db3ef641e7d0aaaeedb25ac1288928f4af GIT binary patch literal 15946 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 literal 0 HcmV?d00001 diff --git a/overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/recipe/AbstractRecipeHandler.class b/overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/recipe/AbstractRecipeHandler.class new file mode 100644 index 0000000000000000000000000000000000000000..4ab02fc623526838ec0e53d305afc1516a63f68d GIT binary patch literal 19969 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 Y17Fzg$CD@UmDQ|nfExe77__MW4_DjgZ2$lO literal 0 HcmV?d00001 diff --git a/overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/recipe/RecipeTupleGenerator.class b/overrides/bansoukou/NuclearCraft-2.18y-1.12.2/nc/recipe/RecipeTupleGenerator.class new file mode 100644 index 0000000000000000000000000000000000000000..bdf28038a3c1529c885a76bd9c55da3a981df89b GIT binary patch literal 3114 zcmd5-OH))w6#jZ<;LZ~T9b^OqA1DvyA_yW73=)vh0aOqpSf!WYg4fK08tzz{b^buI z(`*u|QY?~9Di1@fvP`9tMN-Kw`z)=>B3WCM|OzHeZxc; zA%uhQAtKd&2M|5TFzdBj`x`1d450LPqfE7Vw@#HaDjm^G5QvsVB4P zbT+e~%G#zY7yXi9<$AU`WlUR7TNyK%GiGgF)=H1_GiDpf_quz#cebD9mZq*sx}Xor z%C7nK(wAqu#ht2P+PF88PfwdU=HQu%3xuuAeBLhTN@NUisgh--(YY-kZ=8dSWS0tZ zBkYAYgWV}rfzq6r&fYZ#()0FxRRYFcvY8+nj*wal*88SnTs(}UI2J-3>IL?!oA%{$ z#(kN&hQ=V85YbRghdI+0h}Op&oTxWkm+ml{p-Z3^fvTO3Q$wpjWHz5k-aL7x?1}6u2JWe_U}^g;5z?&Or3PRBXo}d zA{p~7qd}lUixoM7|1p}bKf>{@z?u;Bc7&p#sJ4i+F<&&ajFTQbMcs*LsM(dzeB$R+UWfT>~A$}kBkheeb+3KzP@nJILC0lh+@|FF)AFIfH|p6ojq zAnT5yAA>kgf_{j-)D2OWMz5>;9UYD&YH`lh@wnC)Mag9pC6`f@Tt-oH8AZuu6eWjI z0Wpa<_tj7)F5?0vKPtr#E|N6?KFen@Oev_CcS>@Ro-Xqgu410TmCSQI69vx^dP+8a zgd_Y`l5*Aj9^kB&FY`fWc?gq?WQOxQtbvVs=HGyi(TLAD|D0CKXu%Vl#E)pjuV}{~ zti_)=jc0su|3WwZK@VP_UHH%^0({O&&@aj{AgVDaj^VuM#E|GmTnr*1MldXHP(O{! z>PB2e*($dQYw&2O({MulDAWldl%|eXW(BPp+MXlu97QYeh!tt~mNT!BimEcMl&&Bk q>Y|hicg&B`Lcckzt~n5T3=ePArLS;BazUv2I6Wr9*(7xy6#WaeclVY6 literal 0 HcmV?d00001 From 8e7d8336548f2b4e1bcf3c73bfc4351ebe1bf4e8 Mon Sep 17 00:00:00 2001 From: Caedis Date: Sat, 13 Aug 2022 00:17:30 -0500 Subject: [PATCH 4/7] Use the proper title from the build scripts in randompatches.cfg --- overrides/config/randompatches.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overrides/config/randompatches.cfg b/overrides/config/randompatches.cfg index 76fdad2..8170b06 100644 --- a/overrides/config/randompatches.cfg +++ b/overrides/config/randompatches.cfg @@ -110,7 +110,7 @@ client { # The Minecraft window title. # Default: Minecraft 1.12.2 - S:title=Nomifactory (dev branch, 307ceaa) + S:title={{title}} } } From 62c3176689cf5a1bcbef5308691ef5fc28afd2e9 Mon Sep 17 00:00:00 2001 From: tracer4b <61507029+tracer4b@users.noreply.github.com> Date: Fri, 19 Aug 2022 11:53:34 +0800 Subject: [PATCH 5/7] update ceu and gcym --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 095f312..8e73fa6 100644 --- a/manifest.json +++ b/manifest.json @@ -635,12 +635,12 @@ }, { "projectID": 557242, - "fileID": 3859788, + "fileID": 3941501, "required": true }, { "projectID": 564858, - "fileID": 3783615, + "fileID": 3941516, "required": true }, { From 64ae76260e91ca65428bd6e91c0e52e792687991 Mon Sep 17 00:00:00 2001 From: tracer4b <61507029+tracer4b@users.noreply.github.com> Date: Fri, 19 Aug 2022 15:12:45 +0800 Subject: [PATCH 6/7] fix simulation chamber in dml multi --- overrides/scripts/multiblock_dml.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overrides/scripts/multiblock_dml.zs b/overrides/scripts/multiblock_dml.zs index 6a5aaf9..c4290f5 100644 --- a/overrides/scripts/multiblock_dml.zs +++ b/overrides/scripts/multiblock_dml.zs @@ -121,7 +121,7 @@ val dml_sim_chamber = Builder.start("dml_sim_chamber", 3100) .where('E', ) // enderium .where('G', ) .where('O', /* omnium */) - .where('-', ) + .where('-', CTPredicate.getAny()) .where('C', CTPredicate.states() | controller.autoAbilities(true, false, true, true, false, false, false)) .build(); From 2089c24fda283f3e8eb6271401d843410b74403b Mon Sep 17 00:00:00 2001 From: tracer4b <61507029+tracer4b@users.noreply.github.com> Date: Fri, 19 Aug 2022 23:30:26 +0800 Subject: [PATCH 7/7] qb update --- .../normal/betterquesting/DefaultQuests.json | 717 ++++++++++-------- .../config/betterquesting/DefaultQuests.json | 42 +- 2 files changed, 430 insertions(+), 329 deletions(-) diff --git a/overrides/config-overrides/normal/betterquesting/DefaultQuests.json b/overrides/config-overrides/normal/betterquesting/DefaultQuests.json index 1be0da5..45f28fa 100644 --- a/overrides/config-overrides/normal/betterquesting/DefaultQuests.json +++ b/overrides/config-overrides/normal/betterquesting/DefaultQuests.json @@ -3,13 +3,12 @@ "questDatabase:9": { "0:10": { "preRequisites:11": [ - 26, - 490 + 26 ], "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "The main purpose for this device is to turn §6Activated Certus Quartz Crystal§r into §6Charged Certus Quartz Crystal§r.\n\nThis device can be powered with RF via energy conduits or use AE energy from a network via ME conduits or cables.\n\nIt accepts power from two sides. Which two sides? It\u0027s pretty easy to guess.\n\n\n\n\n\n\n\n\nOk, ok. It\u0027s the top and bottom.\n\n", + "desc:8": "The main purpose for this device is to turn §6Certus Quartz§r into §6Charged Certus Quartz Crystal§r.\n\nThis device can be powered with RF via energy conduits or use AE energy from a network via ME conduits or cables.\n\nIt accepts power from two sides. Which two sides? It\u0027s pretty easy to guess.\n\n\n\n\n\n\n\n\nOk, ok. It\u0027s the top and bottom.\n\n", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -58,9 +57,9 @@ "requiredItems:9": { "0:10": { "Count:3": 1, - "Damage:2": 0, + "Damage:2": 214, "OreDict:8": "", - "id:8": "appliedenergistics2:material" + "id:8": "gregtech:meta_gem" }, "1:10": { "Count:3": 1, @@ -3614,19 +3613,21 @@ } }, "52:10": { - "preRequisites:11": [], + "preRequisites:11": [ + 98 + ], "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "§2Coming soon!", + "desc:8": "The §2Cleanroom§r is a hollow multiblock free of contaminants. Going forward, most new circuit-related recipes, as well as some unique things like §3Fusion Casings§r, will need to be run in machines inside a Cleanroom. This is another ported §5GT5u§r feature, but just like with Maintenance, it won\u0027t be as harsh.\n\nOnce built, it must be well-maintained and powered for a while to clean the inside. The Cleanroom\u0027s power draw will decrease once it fully cleans itself. Recipes requiring the Cleanroom will §conly§r run when inside a §cfully-cleaned§r Cleanroom; if not, the recipe will not start, or recipe progress might be lost. (Recipe inputs will §enever be voided§r.)\n\nThe Cleanroom can be built in any size between 5x5x5 and 15x15x15. The Controller is placed in the center of the top face, and the rest of the top face is built from §3Filter Casings§r. The rest of the wall space is filled with §3Plascrete§r.\n\nFor transfer between the clean environment and the outside world:\n- Items and fluids through §3Passthrough Hatches§r. They automatically input from one side and output from the opposite side.\n- Energy through §3Hulls§r or §3Diodes§r (of any tier).\n- AE2 channels through §3Hulls§r.\n- Players through regular §3Doors§r. The room remains clean when doors are opened.\n\nApart from the \"official\" solutions, non-physical methods of transfer such as §3Ender Chests§r might be effective.\n\nYou will also need an §3Energy §rand §3Maintenance Hatch §rfor cleaning. §3Cleanroom Glass§r can replace any §3Plascrete§r, except in the edges.\n\nIf you\u0027re facing issues forming the Cleanroom:\n- The wall space must be at least 75% §3Plascrete§r or §3Cleanroom Glass§r. The floor block directly under the controller must also be §3Plascrete§r or §3Cleanroom Glass§r.\n- GT generators and Muffler Hatches are §cnot allowed§r in Cleanrooms.\n- Try rotating the controller with a wrench, or for even side lengths, try the other central positions.", "globalshare:1": 0, "icon:10": { "Count:3": 1, - "Damage:2": 0, + "Damage:2": 1035, "OreDict:8": "", - "id:8": "minecraft:concrete" + "id:8": "gregtech:machine" }, - "ismain:1": 0, + "ismain:1": 1, "issilent:1": 0, "lockedprogress:1": 0, "name:8": "§2Cleanroom", @@ -3641,11 +3642,49 @@ } }, "questID:3": 52, - "rewards:9": {}, - "tasks:9": { + "rewards:9": { "0:10": { "index:3": 0, - "taskID:8": "bq_standard:checkbox" + "rewardID:8": "bq_standard:item", + "rewards:9": { + "0:10": { + "Count:3": 2, + "Damage:2": 0, + "OreDict:8": "", + "id:8": "contenttweaker:omnicoin25" + } + } + } + }, + "tasks:9": { + "0:10": { + "autoConsume:1": 0, + "consume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "partialMatch:1": 1, + "requiredItems:9": { + "0:10": { + "Count:3": 1, + "Damage:2": 1035, + "OreDict:8": "", + "id:8": "gregtech:machine" + }, + "1:10": { + "Count:3": 8, + "Damage:2": 1, + "OreDict:8": "", + "id:8": "gregtech:cleanroom_casing" + }, + "2:10": { + "Count:3": 44, + "Damage:2": 0, + "OreDict:8": "", + "id:8": "gregtech:cleanroom_casing" + } + }, + "taskID:8": "bq_standard:retrieval" } } }, @@ -5502,7 +5541,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "Cuts things up.\n\nThe §3Cutting Machine§r is able to cut wafers, rods, wood, and various other things for you, making it a versatile crafting tool. Cutting blocks into 9 plates may be faster than using a §2Metal Bender §rto make them one at a time.\n\nThe MV version is required for cutting §6Silicon Boules§r for easier §6Diodes§r, and for cutting §6Wafers§r into usable components. \n\nThe blade will require you to make §2Vanadiumsteel§r.\n\nCutting Machines work with plain §9Water§r for all recipes. You can also use §9Distilled Water§r which speeds up the processing somewhat, or §9Lubricant§r that speeds it up greatly (and uses very little per operation). These might be a little tricky to make right now, but are very worthwhile upgrades in the future.\n\nYou might consider waiting until you have §2Integrated Circuits§r before progressing too far down the path of MV machines, since these circuits are much easier to make than §2Electronic Circuits§r.", + "desc:8": "Cuts things up.\n\nThe §3Cutting Machine§r is able to cut wafers, rods, wood, and various other things for you, making it a versatile crafting tool. Cutting blocks into 9 plates may be faster than using a §2Metal Bender §rto make them one at a time.\n\nThe MV version is required for cutting §6Silicon Boules§r for easier §6Diodes§r, and for cutting §6Wafers§r into usable components. \n\nThe blade will require you to make §2Vanadiumsteel§r.\n\nCutting Machines work with plain §9Water§r for all recipes. You can also use §9Distilled Water§r which speeds up the processing somewhat, or §9Lubricant§r that speeds it up greatly (and uses very little per operation). These might be a little tricky to make right now, but are very worthwhile upgrades in the future.\n", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -5944,7 +5983,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "Much easier to mass produce than §6Electronic Circuits§r, and they fulfill the same function in nearly all cases.\n\nYou should be batch crafting these.", + "desc:8": "These aren\u0027t necessarily easier to mass produce than §6Electronic Circuits§r, but they\u0027re required to produce the §6Advanced Integrated Circuit§r, your first §6HV§r circuit.\n\nOtherwise, they fulfill the same requirements.", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -12828,7 +12867,8 @@ "192:10": { "preRequisites:11": [ 132, - 532 + 532, + 52 ], "properties:10": { "betterquesting:10": { @@ -21773,7 +21813,8 @@ "327:10": { "preRequisites:11": [ 279, - 537 + 537, + 914 ], "properties:10": { "betterquesting:10": { @@ -29910,7 +29951,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "An §3Autoclave§r is a machine that uses liquids (usually water) to polish stones, carve gems into lenses, infuse gems with special liquids, and crystallize various dusts.\n\nYou\u0027ll need an Autoclave for many recipes, but right now you want it to make §6Activated Certus Quartz Crystals§r for §bApplied Energistics§r out of the §bGregTech§r §6Certus Quartz§r and its dust you get from mining and ore processing.", + "desc:8": "An §3Autoclave§r is a machine that uses liquids (usually water) to polish stones, carve gems into lenses, infuse gems with special liquids, and crystallize various dusts.\n\nYou\u0027ll need an Autoclave for many recipes, but most presently you will need it to make §6Pulsating Crystal§r and §6Vibrant Crystal§r from EnderIO.", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -41070,7 +41111,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "Thorium is another basic fissile material that can be used to get into the fissile chain. Thorium comes from §6Pitchblende Ore§r, §6Thorium Ore§r, and even §2Black Granite§r (with a few processing steps).\n\nThorium-Bred Uranium, or §6TBU§r for short, is made from nine clumps of §6Thorium 232§r enriched in a §3Thermal Centrifuge§r.\n\nThe depleted fuel provides tiny clumps of §6Uranium 233§r, §6Uranium 235§r, §6§6Neptunium 236§r, and §6Neptunium 237§r.", + "desc:8": "Thorium is another basic fissile material that can be used to get into the fissile chain. Thorium comes from §6Pitchblende Ore§r, §6Thorium Ore§r, and even §2(Black) Granite§r (with a few processing steps).\n\nThorium-Bred Uranium, or §6TBU§r for short, is made from nine clumps of §6Thorium 232§r enriched in a §3Thermal Centrifuge§r.\n\nThe depleted fuel provides tiny clumps of §6Uranium 233§r, §6Uranium 235§r, §6§6Neptunium 236§r, and §6Neptunium 237§r.", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -41197,13 +41238,13 @@ "0:10": { "Count:3": 1, "Damage:2": 116, - "OreDict:8": "ingotUranium238", + "OreDict:8": "ingotUranium", "id:8": "gregtech:meta_ingot" }, "1:10": { "Count:3": 1, "Damage:2": 117, - "OreDict:8": "ingotUranium235", + "OreDict:8": "", "id:8": "gregtech:meta_ingot" } }, @@ -41422,9 +41463,9 @@ "requiredItems:9": { "0:10": { "Count:3": 1, - "Damage:2": 4, + "Damage:2": 81, "OreDict:8": "", - "id:8": "nuclearcraft:plutonium" + "id:8": "gregtech:meta_ingot" }, "1:10": { "Count:3": 8, @@ -48870,12 +48911,6 @@ "Damage:2": 0, "OreDict:8": "", "id:8": "appliedenergistics2:quartz_vibrant_glass" - }, - "6:10": { - "Count:3": 1, - "Damage:2": 0, - "OreDict:8": "", - "id:8": "deepmoblearning:simulation_chamber" } }, "taskID:8": "bq_standard:retrieval" @@ -52332,7 +52367,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "§2Upgraded forms of the EBF and Vacuum Freezer. Can run up to 2,048 recipes in parallel.\n\nThe Rotary Hearth Furnace is quite big!", + "desc:8": "§2Upgraded forms of the EBF and Vacuum Freezer. Can accept Parallel Control Hatches.\n\nThe Rotary Hearth Furnace is quite big!", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -54298,7 +54333,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "§2Certain multiblocks in CEu will require a Maintenance Hatch and/or Muffler Hatch. These cannot be shared between multiblocks. If you knew Maintenance in GT5u, fret not - Maintenance mechanics are far less punishing in CEu.\n\n§r- §aMuffler§r: This hatch must be §cunobstructed§r so it can output its beautiful smoke particles. When a recipe is performed, there is a small chance for the §3Muffler Hatch§r to give bonus items, typically tiny Dusts of Ash. It voids excess when full, so do not worry about it stopping machines from running.\n\n- §aMaintenance§r: You will need to do Maintenance for the Multiblock to begin operating. This is done by having a §9Wrench§r, a §9Screwdriver§r, a §9Soft Mallet§r, a §9Hammer§r, a §9Wire Cutter§r, and a §9Crowbar§r in your inventory, opening the Maintenance Hatch and §eclicking the center spot once§r. §cNo need to move tools individually§r. Alternatively, you can fix problems by placing §9Tape§r in the Maintenance Hatch. \n\nMaintenance problems may occur after §d48 real hours of activity§r. Needless to say, they are very rare. Each problem increases the recipe durations by 10%. Fixing the problems is done the same way as above.\n\nAt §6HV§r age, you will unlock other Maintenance Hatches that do not enforce fixing the problems manually. Both start with §6no Maintenance required§r:\n\n- §3Automatic Maintenance Hatch§r: Eliminates the need for Maintenance, §6forever§r.\n\n- §3Configurable Maintenance Hatch§r: You can configure it to cut off §a10% duration§r on recipes, at the cost of making Maintenance issues happen three times as fast. That is §d16 real hours§r of activity. §9Tape§r can fix problems in this Hatch as well.\n", + "desc:8": "§2Certain multiblocks in CEu will require a Maintenance Hatch and/or Muffler Hatch. These cannot be shared between multiblocks. If you knew Maintenance in GT5u, fret not - Maintenance mechanics are far less punishing in CEu.\n\n§r- §aMuffler§r: This hatch must be §cunobstructed§r so it can output its beautiful smoke particles. When a recipe is performed, there is a small chance for the §3Muffler Hatch§r to give bonus items, typically tiny Dusts of Ash. It voids excess when full, so do not worry about it stopping machines from running.\n\n- §aMaintenance§r: You will need to do Maintenance for the Multiblock to begin operating. This is done by having a §9Wrench§r, a §9Screwdriver§r, a §9Soft Mallet§r, a §9Hammer§r, a §9Wire Cutter§r, and a §9Crowbar§r in your inventory, opening the Maintenance Hatch and §eclicking the center spot once§r. §cNo need to move tools individually§r. Alternatively, you can fix problems by placing §9Tape§r in the Maintenance Hatch. \n\nMaintenance problems may occur after §d48 real hours of activity§r. Needless to say, they are very rare. Each problem increases the recipe durations by 10%. Fixing the problems is done the same way as above.\n\nLater, you will unlock other Maintenance Hatches that do not enforce fixing the problems manually. Both start with §6no Maintenance required§r:\n\n- §3Automatic Maintenance Hatch§r (§6HV§r): Eliminates the need for Maintenance, §6forever§r.\n\n- §3Configurable Maintenance Hatch§r (§6HV§r): You can configure it to cut off §a10% duration§r on recipes, at the cost of making Maintenance issues happen three times as fast. That is §d16 real hours§r of activity. §9Tape§r can fix problems in this Hatch as well.\n\n- §3Automatic Filtration Maintenance Hatch§r (§3UV§r): Eliminates the need for Maintenance, and provides a §6Cleanroom§r environment to recipes run within it.", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -54939,7 +54974,8 @@ }, "904:10": { "preRequisites:11": [ - 339 + 339, + 914 ], "properties:10": { "betterquesting:10": { @@ -55502,6 +55538,70 @@ "taskID:8": "bq_standard:checkbox" } } + }, + "914:10": { + "preRequisites:11": [ + 255 + ], + "properties:10": { + "betterquesting:10": { + "autoclaim:1": 0, + "desc:8": "Wetware-related processes require some stronger sterilisation. You will need to build another §3Cleanroom§r to run these recipes inside. Instead of §3Filter Casings§r, use §3Sterilizing Filter Casings§r in the top face.\n\nNote that a Sterile Cleanroom cannot handle recipes which require regular Cleanrooms.", + "globalshare:1": 0, + "icon:10": { + "Count:3": 1, + "Damage:2": 2, + "OreDict:8": "", + "id:8": "gregtech:cleanroom_casing" + }, + "ismain:1": 1, + "issilent:1": 0, + "lockedprogress:1": 0, + "name:8": "Cleaner Room", + "questlogic:8": "AND", + "repeat_relative:1": 1, + "repeattime:3": -1, + "simultaneous:1": 0, + "snd_complete:8": "minecraft:entity.player.levelup", + "snd_update:8": "minecraft:entity.player.levelup", + "tasklogic:8": "AND", + "visibility:8": "NORMAL" + } + }, + "questID:3": 914, + "rewards:9": { + "0:10": { + "index:3": 0, + "rewardID:8": "bq_standard:item", + "rewards:9": { + "0:10": { + "Count:3": 1, + "Damage:2": 0, + "OreDict:8": "", + "id:8": "contenttweaker:omnicoin5" + } + } + } + }, + "tasks:9": { + "0:10": { + "autoConsume:1": 0, + "consume:1": 0, + "groupDetect:1": 0, + "ignoreNBT:1": 0, + "index:3": 0, + "partialMatch:1": 1, + "requiredItems:9": { + "0:10": { + "Count:3": 8, + "Damage:2": 2, + "OreDict:8": "", + "id:8": "gregtech:cleanroom_casing" + } + }, + "taskID:8": "bq_standard:retrieval" + } + } } }, "questLines:9": { @@ -55528,7 +55628,7 @@ "id:3": 0, "sizeX:3": 24, "sizeY:3": 24, - "x:3": -516, + "x:3": -560, "y:3": 136 }, "1:10": { @@ -55577,8 +55677,8 @@ "id:3": 29, "sizeX:3": 24, "sizeY:3": 24, - "x:3": -792, - "y:3": 40 + "x:3": -736, + "y:3": 8 }, "8:10": { "id:3": 30, @@ -55612,8 +55712,8 @@ "id:3": 39, "sizeX:3": 24, "sizeY:3": 24, - "x:3": -840, - "y:3": 40 + "x:3": -692, + "y:3": 8 }, "13:10": { "id:3": 41, @@ -55689,15 +55789,15 @@ "id:3": 215, "sizeX:3": 24, "sizeY:3": 24, - "x:3": -840, - "y:3": 88 + "x:3": -792, + "y:3": 40 }, "24:10": { "id:3": 228, "sizeX:3": 24, "sizeY:3": 24, - "x:3": -560, - "y:3": 88 + "x:3": -840, + "y:3": 40 }, "25:10": { "id:3": 231, @@ -55745,7 +55845,7 @@ "id:3": 282, "sizeX:3": 48, "sizeY:3": 48, - "x:3": -480, + "x:3": -520, "y:3": 124 }, "32:10": { @@ -55794,8 +55894,8 @@ "id:3": 490, "sizeX:3": 24, "sizeY:3": 24, - "x:3": -560, - "y:3": 136 + "x:3": -840, + "y:3": 88 }, "39:10": { "id:3": 497, @@ -56092,678 +56192,671 @@ "y:3": 460 }, "10:10": { - "id:3": 52, - "sizeX:3": 32, - "sizeY:3": 32, - "x:3": -592, - "y:3": 492 - }, - "11:10": { "id:3": 55, "sizeX:3": 24, "sizeY:3": 24, "x:3": -336, "y:3": 20 }, - "12:10": { + "11:10": { "id:3": 57, "sizeX:3": 24, "sizeY:3": 24, "x:3": -248, "y:3": 532 }, - "13:10": { + "12:10": { "id:3": 67, "sizeX:3": 24, "sizeY:3": 24, "x:3": -164, "y:3": 496 }, - "14:10": { + "13:10": { "id:3": 70, "sizeX:3": 24, "sizeY:3": 24, "x:3": -292, "y:3": -16 }, - "15:10": { + "14:10": { "id:3": 71, "sizeX:3": 24, "sizeY:3": 24, "x:3": -248, "y:3": 68 }, - "16:10": { + "15:10": { "id:3": 72, "sizeX:3": 32, "sizeY:3": 32, "x:3": -656, "y:3": 16 }, - "17:10": { + "16:10": { "id:3": 74, "sizeX:3": 24, "sizeY:3": 24, "x:3": -200, "y:3": 104 }, - "18:10": { + "17:10": { "id:3": 75, "sizeX:3": 24, "sizeY:3": 24, "x:3": -200, "y:3": 68 }, - "19:10": { + "18:10": { "id:3": 76, "sizeX:3": 24, "sizeY:3": 24, "x:3": -604, "y:3": 68 }, - "20:10": { + "19:10": { "id:3": 78, "sizeX:3": 24, "sizeY:3": 24, "x:3": -464, "y:3": 20 }, - "21:10": { + "20:10": { "id:3": 79, "sizeX:3": 24, "sizeY:3": 24, "x:3": -336, "y:3": 104 }, - "22:10": { + "21:10": { "id:3": 80, "sizeX:3": 24, "sizeY:3": 24, "x:3": -464, "y:3": 68 }, - "23:10": { + "22:10": { "id:3": 81, "sizeX:3": 24, "sizeY:3": 24, "x:3": -464, "y:3": 104 }, - "24:10": { + "23:10": { "id:3": 82, "sizeX:3": 24, "sizeY:3": 24, "x:3": -528, "y:3": 20 }, - "25:10": { + "24:10": { "id:3": 83, "sizeX:3": 24, "sizeY:3": 24, "x:3": -384, "y:3": 140 }, - "26:10": { + "25:10": { "id:3": 84, "sizeX:3": 24, "sizeY:3": 24, "x:3": -464, "y:3": 140 }, - "27:10": { + "26:10": { "id:3": 86, - "sizeX:3": 48, - "sizeY:3": 48, - "x:3": -540, - "y:3": 128 + "sizeX:3": 24, + "sizeY:3": 24, + "x:3": -528, + "y:3": 140 }, - "28:10": { + "27:10": { "id:3": 87, "sizeX:3": 24, "sizeY:3": 24, "x:3": -528, - "y:3": 188 + "y:3": 180 }, - "29:10": { + "28:10": { "id:3": 88, "sizeX:3": 24, "sizeY:3": 24, "x:3": -424, "y:3": 140 }, - "30:10": { + "29:10": { "id:3": 89, - "sizeX:3": 24, - "sizeY:3": 24, - "x:3": -528, - "y:3": 228 + "sizeX:3": 32, + "sizeY:3": 32, + "x:3": -532, + "y:3": 224 }, - "31:10": { + "30:10": { "id:3": 90, "sizeX:3": 48, "sizeY:3": 48, "x:3": -540, "y:3": 364 }, - "32:10": { + "31:10": { "id:3": 91, "sizeX:3": 24, "sizeY:3": 24, "x:3": -248, "y:3": 104 }, - "33:10": { + "32:10": { "id:3": 92, "sizeX:3": 24, "sizeY:3": 24, "x:3": -152, "y:3": 188 }, - "34:10": { + "33:10": { "id:3": 93, "sizeX:3": 48, "sizeY:3": 48, "x:3": -260, "y:3": 328 }, - "35:10": { + "34:10": { "id:3": 94, "sizeX:3": 24, "sizeY:3": 24, "x:3": -324, "y:3": 264 }, - "36:10": { + "35:10": { "id:3": 95, "sizeX:3": 40, "sizeY:3": 40, "x:3": -412, "y:3": 332 }, - "37:10": { + "36:10": { "id:3": 96, "sizeX:3": 24, "sizeY:3": 24, "x:3": -404, "y:3": 388 }, - "38:10": { + "37:10": { "id:3": 98, "sizeX:3": 36, "sizeY:3": 36, "x:3": -254, "y:3": 222 }, - "39:10": { + "38:10": { "id:3": 104, "sizeX:3": 40, "sizeY:3": 40, "x:3": -316, "y:3": 380 }, - "40:10": { + "39:10": { "id:3": 107, "sizeX:3": 24, "sizeY:3": 24, "x:3": -152, "y:3": 104 }, - "41:10": { + "40:10": { "id:3": 112, "sizeX:3": 24, "sizeY:3": 24, "x:3": -104, "y:3": 104 }, - "42:10": { + "41:10": { "id:3": 126, "sizeX:3": 24, "sizeY:3": 24, "x:3": -152, "y:3": 340 }, - "43:10": { + "42:10": { "id:3": 129, "sizeX:3": 24, "sizeY:3": 24, "x:3": -384, "y:3": 88 }, - "44:10": { + "43:10": { "id:3": 130, "sizeX:3": 32, "sizeY:3": 32, - "x:3": -580, + "x:3": -592, "y:3": 336 }, - "45:10": { + "44:10": { "id:3": 131, "sizeX:3": 24, "sizeY:3": 24, "x:3": -404, "y:3": 432 }, - "46:10": { + "45:10": { "id:3": 132, "sizeX:3": 24, "sizeY:3": 24, "x:3": -360, "y:3": 496 }, - "47:10": { + "46:10": { "id:3": 133, "sizeX:3": 32, "sizeY:3": 32, "x:3": -532, "y:3": 428 }, - "48:10": { + "47:10": { "id:3": 134, "sizeX:3": 24, "sizeY:3": 24, "x:3": -472, "y:3": 432 }, - "49:10": { + "48:10": { "id:3": 135, "sizeX:3": 40, "sizeY:3": 40, "x:3": -536, "y:3": 488 }, - "50:10": { + "49:10": { "id:3": 154, "sizeX:3": 40, "sizeY:3": 40, "x:3": -208, "y:3": 220 }, - "51:10": { + "50:10": { "id:3": 165, "sizeX:3": 24, "sizeY:3": 24, "x:3": -324, "y:3": 192 }, - "52:10": { + "51:10": { "id:3": 184, "sizeX:3": 24, "sizeY:3": 24, "x:3": -364, "y:3": 192 }, - "53:10": { + "52:10": { "id:3": 187, "sizeX:3": 36, "sizeY:3": 36, "x:3": -254, "y:3": 14 }, - "54:10": { + "53:10": { "id:3": 203, "sizeX:3": 24, "sizeY:3": 24, "x:3": -404, "y:3": 496 }, - "55:10": { + "54:10": { "id:3": 213, "sizeX:3": 24, "sizeY:3": 24, "x:3": -288, "y:3": 460 }, - "56:10": { + "55:10": { "id:3": 227, "sizeX:3": 24, "sizeY:3": 24, "x:3": -152, "y:3": -16 }, - "57:10": { + "56:10": { "id:3": 233, "sizeX:3": 32, "sizeY:3": 32, "x:3": -156, "y:3": 136 }, - "58:10": { + "57:10": { "id:3": 236, "sizeX:3": 24, "sizeY:3": 24, "x:3": -472, "y:3": 284 }, - "59:10": { + "58:10": { "id:3": 237, "sizeX:3": 24, "sizeY:3": 24, "x:3": -104, "y:3": 140 }, - "60:10": { + "59:10": { "id:3": 319, "sizeX:3": 32, "sizeY:3": 32, "x:3": -640, "y:3": 312 }, - "61:10": { + "60:10": { "id:3": 338, "sizeX:3": 24, "sizeY:3": 24, "x:3": -200, "y:3": 388 }, - "62:10": { + "61:10": { "id:3": 398, "sizeX:3": 36, "sizeY:3": 36, - "x:3": -582, + "x:3": -594, "y:3": 222 }, - "63:10": { + "62:10": { "id:3": 502, "sizeX:3": 24, "sizeY:3": 24, "x:3": -472, "y:3": 388 }, - "64:10": { + "63:10": { "id:3": 504, "sizeX:3": 24, "sizeY:3": 24, "x:3": -444, "y:3": 264 }, - "65:10": { + "64:10": { "id:3": 505, "sizeX:3": 24, "sizeY:3": 24, "x:3": -404, "y:3": 264 }, - "66:10": { + "65:10": { "id:3": 507, "sizeX:3": 24, "sizeY:3": 24, "x:3": -360, "y:3": 432 }, - "67:10": { + "66:10": { "id:3": 509, "sizeX:3": 24, "sizeY:3": 24, "x:3": -248, "y:3": -16 }, - "68:10": { + "67:10": { "id:3": 540, "sizeX:3": 24, "sizeY:3": 24, "x:3": -336, "y:3": 140 }, - "69:10": { + "68:10": { "id:3": 541, "sizeX:3": 32, "sizeY:3": 32, "x:3": -640, "y:3": 356 }, - "70:10": { + "69:10": { "id:3": 546, "sizeX:3": 24, "sizeY:3": 24, "x:3": -404, "y:3": 192 }, - "71:10": { + "70:10": { "id:3": 549, "sizeX:3": 24, "sizeY:3": 24, "x:3": -292, "y:3": 68 }, - "72:10": { + "71:10": { "id:3": 551, "sizeX:3": 24, "sizeY:3": 24, "x:3": -184, "y:3": 140 }, - "73:10": { + "72:10": { "id:3": 556, "sizeX:3": 32, "sizeY:3": 32, "x:3": -640, "y:3": 268 }, - "74:10": { + "73:10": { "id:3": 609, "sizeX:3": 32, "sizeY:3": 32, "x:3": -640, "y:3": 224 }, - "75:10": { + "74:10": { "id:3": 727, "sizeX:3": 24, "sizeY:3": 24, "x:3": -384, "y:3": 20 }, - "76:10": { + "75:10": { "id:3": 728, "sizeX:3": 24, "sizeY:3": 24, "x:3": -112, "y:3": 20 }, - "77:10": { + "76:10": { "id:3": 730, "sizeX:3": 24, "sizeY:3": 24, "x:3": -152, "y:3": 20 }, - "78:10": { + "77:10": { "id:3": 731, "sizeX:3": 24, "sizeY:3": 24, "x:3": -192, "y:3": 20 }, - "79:10": { + "78:10": { "id:3": 747, "sizeX:3": 24, "sizeY:3": 24, "x:3": -152, "y:3": 68 }, - "80:10": { + "79:10": { "id:3": 781, "sizeX:3": 32, "sizeY:3": 32, "x:3": -252, "y:3": 456 }, - "81:10": { + "80:10": { "id:3": 787, "sizeX:3": 24, "sizeY:3": 24, "x:3": -424, "y:3": 88 }, - "82:10": { + "81:10": { "id:3": 801, "sizeX:3": 24, "sizeY:3": 24, "x:3": -200, "y:3": 188 }, - "83:10": { + "82:10": { "id:3": 810, "sizeX:3": 24, "sizeY:3": 24, "x:3": -284, "y:3": 264 }, - "84:10": { + "83:10": { "id:3": 812, "sizeX:3": 0, "sizeY:3": 0, "x:3": -392, "y:3": 352 }, - "85:10": { + "84:10": { "id:3": 816, "sizeX:3": 48, "sizeY:3": 48, "x:3": -616, "y:3": 128 }, - "86:10": { + "85:10": { "id:3": 818, "sizeX:3": 24, "sizeY:3": 24, "x:3": -652, "y:3": 68 }, - "87:10": { + "86:10": { "id:3": 819, "sizeX:3": 24, "sizeY:3": 24, "x:3": -292, "y:3": 20 }, - "88:10": { + "87:10": { "id:3": 820, "sizeX:3": 24, "sizeY:3": 24, "x:3": -604, "y:3": 20 }, - "89:10": { + "88:10": { "id:3": 821, "sizeX:3": 24, "sizeY:3": 24, "x:3": -464, "y:3": -17 }, - "90:10": { + "89:10": { "id:3": 822, "sizeX:3": 24, "sizeY:3": 24, "x:3": -528, "y:3": 68 }, - "91:10": { + "90:10": { "id:3": 823, "sizeX:3": 24, "sizeY:3": 24, "x:3": -384, "y:3": 48 }, - "92:10": { + "91:10": { "id:3": 824, "sizeX:3": 24, "sizeY:3": 24, "x:3": -404, "y:3": 464 }, - "93:10": { + "92:10": { "id:3": 830, "sizeX:3": 32, "sizeY:3": 32, "x:3": -156, "y:3": 292 }, - "94:10": { + "93:10": { "id:3": 831, "sizeX:3": 24, "sizeY:3": 24, "x:3": -200, "y:3": 296 }, - "95:10": { + "94:10": { "id:3": 832, "sizeX:3": 24, "sizeY:3": 24, "x:3": -104, "y:3": 296 }, - "96:10": { + "95:10": { "id:3": 833, "sizeX:3": 24, "sizeY:3": 24, "x:3": -104, "y:3": 340 }, - "97:10": { + "96:10": { "id:3": 834, "sizeX:3": 24, "sizeY:3": 24, "x:3": -360, "y:3": 388 }, - "98:10": { + "97:10": { "id:3": 835, "sizeX:3": 24, "sizeY:3": 24, "x:3": -248, "y:3": 388 }, - "99:10": { + "98:10": { "id:3": 836, "sizeX:3": 24, "sizeY:3": 24, "x:3": -292, "y:3": 140 }, - "100:10": { + "99:10": { "id:3": 837, "sizeX:3": 24, "sizeY:3": 24, "x:3": -292, "y:3": 104 }, - "101:10": { + "100:10": { "id:3": 886, "sizeX:3": 24, "sizeY:3": 24, - "x:3": -552, - "y:3": 268 + "x:3": -556, + "y:3": 264 }, - "102:10": { + "101:10": { "id:3": 887, "sizeX:3": 24, "sizeY:3": 24, "x:3": -364, "y:3": 264 }, - "103:10": { + "102:10": { "id:3": 894, "sizeX:3": 24, "sizeY:3": 24, "x:3": -472, "y:3": 340 }, - "104:10": { + "103:10": { "id:3": 895, "sizeX:3": 24, "sizeY:3": 24, "x:3": -472, - "y:3": 188 + "y:3": 180 }, - "105:10": { + "104:10": { "id:3": 896, "sizeX:3": 24, "sizeY:3": 24, "x:3": -104, "y:3": 256 }, - "106:10": { + "105:10": { "id:3": 897, "sizeX:3": 24, "sizeY:3": 24, @@ -56806,993 +56899,1000 @@ "y:3": -48 }, "2:10": { + "id:3": 52, + "sizeX:3": 40, + "sizeY:3": 40, + "x:3": -724, + "y:3": 32 + }, + "3:10": { "id:3": 54, "sizeX:3": 24, "sizeY:3": 24, "x:3": -636, "y:3": 204 }, - "3:10": { + "4:10": { "id:3": 65, "sizeX:3": 48, "sizeY:3": 48, "x:3": -560, "y:3": 216 }, - "4:10": { + "5:10": { "id:3": 68, "sizeX:3": 24, "sizeY:3": 24, "x:3": -456, "y:3": 276 }, - "5:10": { + "6:10": { "id:3": 132, "sizeX:3": 32, "sizeY:3": 32, "x:3": -640, "y:3": -52 }, - "6:10": { + "7:10": { "id:3": 139, "sizeX:3": 24, "sizeY:3": 24, "x:3": -228, "y:3": 132 }, - "7:10": { + "8:10": { "id:3": 144, "sizeX:3": 24, "sizeY:3": 24, "x:3": -228, "y:3": 168 }, - "8:10": { + "9:10": { "id:3": 148, "sizeX:3": 36, "sizeY:3": 36, "x:3": -762, "y:3": 102 }, - "9:10": { + "10:10": { "id:3": 149, "sizeX:3": 24, "sizeY:3": 24, "x:3": -756, "y:3": 72 }, - "10:10": { + "11:10": { "id:3": 150, "sizeX:3": 48, "sizeY:3": 48, "x:3": -576, "y:3": -12 }, - "11:10": { + "12:10": { "id:3": 151, "sizeX:3": 24, "sizeY:3": 24, "x:3": -756, "y:3": -48 }, - "12:10": { + "13:10": { "id:3": 152, "sizeX:3": 24, "sizeY:3": 24, "x:3": -756, "y:3": 0 }, - "13:10": { + "14:10": { "id:3": 153, "sizeX:3": 24, "sizeY:3": 24, "x:3": -684, "y:3": -48 }, - "14:10": { + "15:10": { "id:3": 156, "sizeX:3": 24, "sizeY:3": 24, "x:3": -564, "y:3": 40 }, - "15:10": { + "16:10": { "id:3": 157, "sizeX:3": 24, "sizeY:3": 24, "x:3": -564, "y:3": 72 }, - "16:10": { + "17:10": { "id:3": 158, "sizeX:3": 24, "sizeY:3": 24, "x:3": -512, "y:3": 72 }, - "17:10": { + "18:10": { "id:3": 159, "sizeX:3": 24, "sizeY:3": 24, "x:3": -456, "y:3": 72 }, - "18:10": { + "19:10": { "id:3": 161, "sizeX:3": 24, "sizeY:3": 24, "x:3": -56, "y:3": -48 }, - "19:10": { + "20:10": { "id:3": 162, "sizeX:3": 24, "sizeY:3": 24, "x:3": -240, "y:3": 40 }, - "20:10": { + "21:10": { "id:3": 163, "sizeX:3": 24, "sizeY:3": 24, "x:3": -276, "y:3": 8 }, - "21:10": { + "22:10": { "id:3": 164, "sizeX:3": 24, "sizeY:3": 24, "x:3": -124, "y:3": -12 }, - "22:10": { + "23:10": { "id:3": 165, "sizeX:3": 24, "sizeY:3": 24, "x:3": -92, "y:3": -12 }, - "23:10": { + "24:10": { "id:3": 166, "sizeX:3": 24, "sizeY:3": 24, "x:3": -56, "y:3": -12 }, - "24:10": { + "25:10": { "id:3": 167, "sizeX:3": 24, "sizeY:3": 24, "x:3": -156, "y:3": -12 }, - "25:10": { + "26:10": { "id:3": 168, "sizeX:3": 24, "sizeY:3": 24, "x:3": -124, "y:3": 24 }, - "26:10": { + "27:10": { "id:3": 170, "sizeX:3": 20, "sizeY:3": 20, "x:3": -302, "y:3": 74 }, - "27:10": { + "28:10": { "id:3": 171, "sizeX:3": 48, "sizeY:3": 48, "x:3": -420, "y:3": -12 }, - "28:10": { + "29:10": { "id:3": 172, "sizeX:3": 24, "sizeY:3": 24, "x:3": -276, "y:3": 72 }, - "29:10": { + "30:10": { "id:3": 173, "sizeX:3": 24, "sizeY:3": 24, "x:3": -360, "y:3": 0 }, - "30:10": { + "31:10": { "id:3": 174, "sizeX:3": 24, "sizeY:3": 24, "x:3": -408, "y:3": -48 }, - "31:10": { + "32:10": { "id:3": 175, "sizeX:3": 24, "sizeY:3": 24, "x:3": -408, "y:3": 40 }, - "32:10": { + "33:10": { "id:3": 176, "sizeX:3": 24, "sizeY:3": 24, "x:3": -306, "y:3": -48 }, - "33:10": { + "34:10": { "id:3": 177, "sizeX:3": 24, "sizeY:3": 24, "x:3": -258, "y:3": -48 }, - "34:10": { + "35:10": { "id:3": 178, "sizeX:3": 24, "sizeY:3": 24, "x:3": -204, "y:3": 24 }, - "35:10": { + "36:10": { "id:3": 179, "sizeX:3": 32, "sizeY:3": 32, "x:3": -160, "y:3": 68 }, - "36:10": { + "37:10": { "id:3": 180, "sizeX:3": 24, "sizeY:3": 24, "x:3": -204, "y:3": -12 }, - "37:10": { + "38:10": { "id:3": 181, "sizeX:3": 24, "sizeY:3": 24, "x:3": -204, "y:3": -48 }, - "38:10": { + "39:10": { "id:3": 182, "sizeX:3": 24, "sizeY:3": 24, "x:3": -276, "y:3": 108 }, - "39:10": { + "40:10": { "id:3": 184, "sizeX:3": 24, "sizeY:3": 24, "x:3": -108, "y:3": -48 }, - "40:10": { + "41:10": { "id:3": 185, "sizeX:3": 48, "sizeY:3": 48, "x:3": -420, "y:3": 96 }, - "41:10": { + "42:10": { "id:3": 186, "sizeX:3": 24, "sizeY:3": 24, "x:3": -684, "y:3": 276 }, - "42:10": { + "43:10": { "id:3": 188, "sizeX:3": 24, "sizeY:3": 24, "x:3": -600, "y:3": 108 }, - "43:10": { + "44:10": { "id:3": 190, "sizeX:3": 24, "sizeY:3": 24, "x:3": -684, "y:3": 240 }, - "44:10": { + "45:10": { "id:3": 192, "sizeX:3": 24, "sizeY:3": 24, "x:3": -636, - "y:3": 88 + "y:3": 40 }, - "45:10": { + "46:10": { "id:3": 194, "sizeX:3": 24, "sizeY:3": 24, "x:3": -600, "y:3": 40 }, - "46:10": { + "47:10": { "id:3": 197, "sizeX:3": 24, "sizeY:3": 24, "x:3": -456, "y:3": 204 }, - "47:10": { + "48:10": { "id:3": 198, "sizeX:3": 24, "sizeY:3": 24, "x:3": -420, "y:3": 240 }, - "48:10": { + "49:10": { "id:3": 199, "sizeX:3": 24, "sizeY:3": 24, "x:3": -228, "y:3": 204 }, - "49:10": { + "50:10": { "id:3": 201, "sizeX:3": 24, "sizeY:3": 24, "x:3": -456, "y:3": 144 }, - "50:10": { + "51:10": { "id:3": 234, "sizeX:3": 24, "sizeY:3": 24, "x:3": -264, "y:3": 168 }, - "51:10": { + "52:10": { "id:3": 235, "sizeX:3": 24, "sizeY:3": 24, "x:3": -840, "y:3": 108 }, - "52:10": { + "53:10": { "id:3": 245, "sizeX:3": 24, "sizeY:3": 24, "x:3": -792, "y:3": 156 }, - "53:10": { + "54:10": { "id:3": 246, "sizeX:3": 24, "sizeY:3": 24, "x:3": -548, "y:3": 180 }, - "54:10": { + "55:10": { "id:3": 248, "sizeX:3": 24, "sizeY:3": 24, "x:3": -774, "y:3": 246 }, - "55:10": { + "56:10": { "id:3": 249, "sizeX:3": 24, "sizeY:3": 24, "x:3": -792, "y:3": 276 }, - "56:10": { + "57:10": { "id:3": 250, "sizeX:3": 24, "sizeY:3": 24, "x:3": -810, "y:3": 246 }, - "57:10": { + "58:10": { "id:3": 255, "sizeX:3": 24, "sizeY:3": 24, "x:3": -548, "y:3": 144 }, - "58:10": { + "59:10": { "id:3": 261, "sizeX:3": 24, "sizeY:3": 24, "x:3": -288, "y:3": 276 }, - "59:10": { + "60:10": { "id:3": 267, "sizeX:3": 24, "sizeY:3": 24, "x:3": -744, "y:3": 204 }, - "60:10": { + "61:10": { "id:3": 275, "sizeX:3": 24, "sizeY:3": 24, "x:3": -924, "y:3": 60 }, - "61:10": { + "62:10": { "id:3": 297, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": 108 }, - "62:10": { + "63:10": { "id:3": 298, "sizeX:3": 24, "sizeY:3": 24, "x:3": -840, "y:3": 60 }, - "63:10": { + "64:10": { "id:3": 299, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": 144 }, - "64:10": { + "65:10": { "id:3": 300, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": 180 }, - "65:10": { + "66:10": { "id:3": 301, "sizeX:3": 24, "sizeY:3": 24, "x:3": -804, "y:3": 24 }, - "66:10": { + "67:10": { "id:3": 302, "sizeX:3": 24, "sizeY:3": 24, "x:3": -840, "y:3": 24 }, - "67:10": { + "68:10": { "id:3": 303, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": 24 }, - "68:10": { + "69:10": { "id:3": 304, "sizeX:3": 24, "sizeY:3": 24, "x:3": -924, "y:3": 24 }, - "69:10": { + "70:10": { "id:3": 305, "sizeX:3": 24, "sizeY:3": 24, "x:3": -924, "y:3": -12 }, - "70:10": { + "71:10": { "id:3": 306, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": -12 }, - "71:10": { + "72:10": { "id:3": 307, "sizeX:3": 24, "sizeY:3": 24, "x:3": -840, "y:3": -12 }, - "72:10": { + "73:10": { "id:3": 308, "sizeX:3": 24, "sizeY:3": 24, "x:3": -804, "y:3": -12 }, - "73:10": { + "74:10": { "id:3": 309, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": -48 }, - "74:10": { + "75:10": { "id:3": 310, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": 216 }, - "75:10": { + "76:10": { "id:3": 311, "sizeX:3": 24, "sizeY:3": 24, "x:3": -288, "y:3": 204 }, - "76:10": { + "77:10": { "id:3": 312, "sizeX:3": 24, "sizeY:3": 24, "x:3": -324, "y:3": 240 }, - "77:10": { + "78:10": { "id:3": 318, "sizeX:3": 24, "sizeY:3": 24, "x:3": -330, "y:3": 108 }, - "78:10": { + "79:10": { "id:3": 328, "sizeX:3": 24, "sizeY:3": 24, "x:3": -156, "y:3": 132 }, - "79:10": { + "80:10": { "id:3": 339, "sizeX:3": 24, "sizeY:3": 24, "x:3": -720, "y:3": 156 }, - "80:10": { + "81:10": { "id:3": 340, "sizeX:3": 24, "sizeY:3": 24, "x:3": -756, "y:3": 156 }, - "81:10": { + "82:10": { "id:3": 341, "sizeX:3": 20, "sizeY:3": 20, "x:3": -418, "y:3": 279 }, - "82:10": { + "83:10": { "id:3": 344, "sizeX:3": 24, "sizeY:3": 24, "x:3": -508, "y:3": 180 }, - "83:10": { + "84:10": { "id:3": 347, "sizeX:3": 24, "sizeY:3": 24, "x:3": -156, "y:3": 204 }, - "84:10": { + "85:10": { "id:3": 350, "sizeX:3": 32, "sizeY:3": 32, "x:3": -160, "y:3": 236 }, - "85:10": { + "86:10": { "id:3": 390, "sizeX:3": 24, "sizeY:3": 24, "x:3": -924, "y:3": 216 }, - "86:10": { + "87:10": { "id:3": 391, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": 60 }, - "87:10": { + "88:10": { "id:3": 416, "sizeX:3": 24, "sizeY:3": 24, "x:3": -312, "y:3": 40 }, - "88:10": { + "89:10": { "id:3": 500, "sizeX:3": 24, "sizeY:3": 24, "x:3": -600, "y:3": 240 }, - "89:10": { + "90:10": { "id:3": 512, "sizeX:3": 24, "sizeY:3": 24, "x:3": -456, "y:3": 240 }, - "90:10": { + "91:10": { "id:3": 526, "sizeX:3": 48, "sizeY:3": 48, "x:3": -648, "y:3": 144 }, - "91:10": { + "92:10": { "id:3": 527, "sizeX:3": 24, "sizeY:3": 24, "x:3": -288, "y:3": 240 }, - "92:10": { + "93:10": { "id:3": 532, "sizeX:3": 48, "sizeY:3": 48, "x:3": -648, "y:3": -12 }, - "93:10": { + "94:10": { "id:3": 542, "sizeX:3": 24, "sizeY:3": 24, "x:3": -492, "y:3": 240 }, - "94:10": { + "95:10": { "id:3": 549, "sizeX:3": 48, "sizeY:3": 48, "x:3": -520, "y:3": 368 }, - "95:10": { + "96:10": { "id:3": 555, "sizeX:3": 24, "sizeY:3": 24, "x:3": -924, "y:3": 252 }, - "96:10": { + "97:10": { "id:3": 580, "sizeX:3": 48, "sizeY:3": 48, "x:3": -460, "y:3": 368 }, - "97:10": { + "98:10": { "id:3": 610, "sizeX:3": 24, "sizeY:3": 24, "x:3": -192, "y:3": 168 }, - "98:10": { + "99:10": { "id:3": 611, "sizeX:3": 24, "sizeY:3": 24, "x:3": -156, "y:3": 168 }, - "99:10": { + "100:10": { "id:3": 669, "sizeX:3": 24, "sizeY:3": 24, "x:3": -204, "y:3": 276 }, - "100:10": { + "101:10": { "id:3": 671, "sizeX:3": 24, "sizeY:3": 24, "x:3": -108, "y:3": 276 }, - "101:10": { + "102:10": { "id:3": 672, "sizeX:3": 24, "sizeY:3": 24, "x:3": -156, "y:3": 276 }, - "102:10": { + "103:10": { "id:3": 673, "sizeX:3": 24, "sizeY:3": 24, "x:3": -108, "y:3": 312 }, - "103:10": { + "104:10": { "id:3": 674, "sizeX:3": 24, "sizeY:3": 24, "x:3": -156, "y:3": 312 }, - "104:10": { + "105:10": { "id:3": 675, "sizeX:3": 24, "sizeY:3": 24, "x:3": -204, "y:3": 312 }, - "105:10": { + "106:10": { "id:3": 676, "sizeX:3": 24, "sizeY:3": 24, "x:3": -204, "y:3": 348 }, - "106:10": { + "107:10": { "id:3": 677, "sizeX:3": 24, "sizeY:3": 24, "x:3": -108, "y:3": 348 }, - "107:10": { + "108:10": { "id:3": 678, "sizeX:3": 24, "sizeY:3": 24, "x:3": -204, "y:3": 396 }, - "108:10": { + "109:10": { "id:3": 679, "sizeX:3": 24, "sizeY:3": 24, "x:3": -156, "y:3": 348 }, - "109:10": { + "110:10": { "id:3": 680, "sizeX:3": 48, "sizeY:3": 48, "x:3": -168, "y:3": 384 }, - "110:10": { + "111:10": { "id:3": 693, "sizeX:3": 24, "sizeY:3": 24, "x:3": -492, "y:3": 276 }, - "111:10": { + "112:10": { "id:3": 694, "sizeX:3": 24, "sizeY:3": 24, "x:3": -524, "y:3": 276 }, - "112:10": { + "113:10": { "id:3": 732, "sizeX:3": 24, "sizeY:3": 24, "x:3": -120, "y:3": 168 }, - "113:10": { + "114:10": { "id:3": 745, "sizeX:3": 24, "sizeY:3": 24, "x:3": -252, "y:3": 240 }, - "114:10": { + "115:10": { "id:3": 746, "sizeX:3": 24, "sizeY:3": 24, "x:3": -852, "y:3": 216 }, - "115:10": { + "116:10": { "id:3": 748, "sizeX:3": 24, "sizeY:3": 24, "x:3": -852, "y:3": 252 }, - "116:10": { + "117:10": { "id:3": 751, "sizeX:3": 24, "sizeY:3": 24, "x:3": -852, "y:3": 180 }, - "117:10": { + "118:10": { "id:3": 756, "sizeX:3": 24, "sizeY:3": 24, "x:3": -840, "y:3": -48 }, - "118:10": { + "119:10": { "id:3": 773, "sizeX:3": 0, "sizeY:3": 0, "x:3": -144, "y:3": 84 }, - "119:10": { + "120:10": { "id:3": 783, "sizeX:3": 48, "sizeY:3": 48, "x:3": -340, "y:3": 368 }, - "120:10": { + "121:10": { "id:3": 785, "sizeX:3": 24, "sizeY:3": 24, "x:3": -420, "y:3": 180 }, - "121:10": { + "122:10": { "id:3": 798, "sizeX:3": 24, "sizeY:3": 24, "x:3": -252, "y:3": 348 }, - "122:10": { + "123:10": { "id:3": 799, "sizeX:3": 24, "sizeY:3": 24, "x:3": -252, "y:3": 276 }, - "123:10": { + "124:10": { "id:3": 800, "sizeX:3": 0, "sizeY:3": 0, "x:3": -264, "y:3": 84 }, - "124:10": { + "125:10": { "id:3": 806, "sizeX:3": 24, "sizeY:3": 24, "x:3": -56, "y:3": 108 }, - "125:10": { + "126:10": { "id:3": 807, "sizeX:3": 24, "sizeY:3": 24, "x:3": -276, "y:3": 40 }, - "126:10": { + "127:10": { "id:3": 825, "sizeX:3": 24, "sizeY:3": 24, "x:3": -684, "y:3": -100 }, - "127:10": { + "128:10": { "id:3": 826, "sizeX:3": 40, "sizeY:3": 40, "x:3": -64, "y:3": -108 }, - "128:10": { + "129:10": { "id:3": 827, "sizeX:3": 24, "sizeY:3": 24, "x:3": -258, "y:3": -79 }, - "129:10": { + "130:10": { "id:3": 828, "sizeX:3": 32, "sizeY:3": 32, "x:3": -384, "y:3": 272 }, - "130:10": { + "131:10": { "id:3": 835, "sizeX:3": 24, "sizeY:3": 24, "x:3": -156, "y:3": -48 }, - "131:10": { + "132:10": { "id:3": 838, "sizeX:3": 24, "sizeY:3": 24, "x:3": -600, "y:3": 156 }, - "132:10": { + "133:10": { "id:3": 841, "sizeX:3": 24, "sizeY:3": 24, "x:3": -324, "y:3": 312 }, - "133:10": { + "134:10": { "id:3": 849, "sizeX:3": 24, "sizeY:3": 24, "x:3": -380, "y:3": 240 }, - "134:10": { + "135:10": { "id:3": 850, "sizeX:3": 32, "sizeY:3": 32, "x:3": -384, "y:3": 308 }, - "135:10": { + "136:10": { "id:3": 851, "sizeX:3": 24, "sizeY:3": 24, "x:3": -324, "y:3": 276 }, - "136:10": { + "137:10": { "id:3": 852, "sizeX:3": 24, "sizeY:3": 24, "x:3": -56, "y:3": 348 }, - "137:10": { + "138:10": { "id:3": 857, "sizeX:3": 24, "sizeY:3": 24, "x:3": -720, "y:3": 312 }, - "138:10": { + "139:10": { "id:3": 858, "sizeX:3": 32, "sizeY:3": 32, "x:3": -552, "y:3": 308 }, - "139:10": { + "140:10": { "id:3": 859, "sizeX:3": 32, "sizeY:3": 32, "x:3": -424, "y:3": 308 }, - "140:10": { + "141:10": { "id:3": 888, "sizeX:3": 32, "sizeY:3": 32, "x:3": -60, "y:3": 68 }, - "141:10": { + "142:10": { "id:3": 892, "sizeX:3": 48, "sizeY:3": 48, "x:3": -400, "y:3": 368 }, - "142:10": { + "143:10": { "id:3": 899, "sizeX:3": 24, "sizeY:3": 24, "x:3": -888, "y:3": -100 }, - "143:10": { + "144:10": { "id:3": 900, "sizeX:3": 24, "sizeY:3": 24, @@ -59394,6 +59494,13 @@ "sizeY:3": 24, "x:3": -576, "y:3": 264 + }, + "123:10": { + "id:3": 914, + "sizeX:3": 24, + "sizeY:3": 24, + "x:3": -312, + "y:3": 156 } } }, @@ -61416,9 +61523,9 @@ "desc:8": "Convert between matter and energy with §bApplied Energistics§r§r.\n\nAutomate ALL the things! o/", "icon:10": { "Count:3": 1, - "Damage:2": 2, + "Damage:2": 0, "OreDict:8": "", - "id:8": "chisel:futura" + "id:8": "appliedenergistics2:controller" }, "name:8": "Matter-Energy", "visibility:8": "ALWAYS" @@ -61696,7 +61803,7 @@ }, "questSettings:10": { "betterquesting:10": { - "editmode:1": 0, + "editmode:1": 1, "hardcore:1": 0, "home_anchor_x:5": 0.5, "home_anchor_y:5": 0.0, diff --git a/overrides/config/betterquesting/DefaultQuests.json b/overrides/config/betterquesting/DefaultQuests.json index 978467a..45f28fa 100644 --- a/overrides/config/betterquesting/DefaultQuests.json +++ b/overrides/config/betterquesting/DefaultQuests.json @@ -5541,7 +5541,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "Cuts things up.\n\nThe §3Cutting Machine§r is able to cut wafers, rods, wood, and various other things for you, making it a versatile crafting tool. Cutting blocks into 9 plates may be faster than using a §2Metal Bender §rto make them one at a time.\n\nThe MV version is required for cutting §6Silicon Boules§r for easier §6Diodes§r, and for cutting §6Wafers§r into usable components. \n\nThe blade will require you to make §2Vanadiumsteel§r.\n\nCutting Machines work with plain §9Water§r for all recipes. You can also use §9Distilled Water§r which speeds up the processing somewhat, or §9Lubricant§r that speeds it up greatly (and uses very little per operation). These might be a little tricky to make right now, but are very worthwhile upgrades in the future.\n\nYou might consider waiting until you have §2Integrated Circuits§r before progressing too far down the path of MV machines, since these circuits are much easier to make than §2Electronic Circuits§r.", + "desc:8": "Cuts things up.\n\nThe §3Cutting Machine§r is able to cut wafers, rods, wood, and various other things for you, making it a versatile crafting tool. Cutting blocks into 9 plates may be faster than using a §2Metal Bender §rto make them one at a time.\n\nThe MV version is required for cutting §6Silicon Boules§r for easier §6Diodes§r, and for cutting §6Wafers§r into usable components. \n\nThe blade will require you to make §2Vanadiumsteel§r.\n\nCutting Machines work with plain §9Water§r for all recipes. You can also use §9Distilled Water§r which speeds up the processing somewhat, or §9Lubricant§r that speeds it up greatly (and uses very little per operation). These might be a little tricky to make right now, but are very worthwhile upgrades in the future.\n", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -5983,7 +5983,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "Much easier to mass produce than §6Electronic Circuits§r, and they fulfill the same function in nearly all cases.\n\nYou should be batch crafting these.", + "desc:8": "These aren\u0027t necessarily easier to mass produce than §6Electronic Circuits§r, but they\u0027re required to produce the §6Advanced Integrated Circuit§r, your first §6HV§r circuit.\n\nOtherwise, they fulfill the same requirements.", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -48911,12 +48911,6 @@ "Damage:2": 0, "OreDict:8": "", "id:8": "appliedenergistics2:quartz_vibrant_glass" - }, - "6:10": { - "Count:3": 1, - "Damage:2": 0, - "OreDict:8": "", - "id:8": "deepmoblearning:simulation_chamber" } }, "taskID:8": "bq_standard:retrieval" @@ -52373,7 +52367,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "§2Upgraded forms of the EBF and Vacuum Freezer. Can run up to 2,048 recipes in parallel.\n\nThe Rotary Hearth Furnace is quite big!", + "desc:8": "§2Upgraded forms of the EBF and Vacuum Freezer. Can accept Parallel Control Hatches.\n\nThe Rotary Hearth Furnace is quite big!", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -54339,7 +54333,7 @@ "properties:10": { "betterquesting:10": { "autoclaim:1": 0, - "desc:8": "§2Certain multiblocks in CEu will require a Maintenance Hatch and/or Muffler Hatch. These cannot be shared between multiblocks. If you knew Maintenance in GT5u, fret not - Maintenance mechanics are far less punishing in CEu.\n\n§r- §aMuffler§r: This hatch must be §cunobstructed§r so it can output its beautiful smoke particles. When a recipe is performed, there is a small chance for the §3Muffler Hatch§r to give bonus items, typically tiny Dusts of Ash. It voids excess when full, so do not worry about it stopping machines from running.\n\n- §aMaintenance§r: You will need to do Maintenance for the Multiblock to begin operating. This is done by having a §9Wrench§r, a §9Screwdriver§r, a §9Soft Mallet§r, a §9Hammer§r, a §9Wire Cutter§r, and a §9Crowbar§r in your inventory, opening the Maintenance Hatch and §eclicking the center spot once§r. §cNo need to move tools individually§r. Alternatively, you can fix problems by placing §9Tape§r in the Maintenance Hatch. \n\nMaintenance problems may occur after §d48 real hours of activity§r. Needless to say, they are very rare. Each problem increases the recipe durations by 10%. Fixing the problems is done the same way as above.\n\nAt §6HV§r age, you will unlock other Maintenance Hatches that do not enforce fixing the problems manually. Both start with §6no Maintenance required§r:\n\n- §3Automatic Maintenance Hatch§r: Eliminates the need for Maintenance, §6forever§r.\n\n- §3Configurable Maintenance Hatch§r: You can configure it to cut off §a10% duration§r on recipes, at the cost of making Maintenance issues happen three times as fast. That is §d16 real hours§r of activity. §9Tape§r can fix problems in this Hatch as well.\n", + "desc:8": "§2Certain multiblocks in CEu will require a Maintenance Hatch and/or Muffler Hatch. These cannot be shared between multiblocks. If you knew Maintenance in GT5u, fret not - Maintenance mechanics are far less punishing in CEu.\n\n§r- §aMuffler§r: This hatch must be §cunobstructed§r so it can output its beautiful smoke particles. When a recipe is performed, there is a small chance for the §3Muffler Hatch§r to give bonus items, typically tiny Dusts of Ash. It voids excess when full, so do not worry about it stopping machines from running.\n\n- §aMaintenance§r: You will need to do Maintenance for the Multiblock to begin operating. This is done by having a §9Wrench§r, a §9Screwdriver§r, a §9Soft Mallet§r, a §9Hammer§r, a §9Wire Cutter§r, and a §9Crowbar§r in your inventory, opening the Maintenance Hatch and §eclicking the center spot once§r. §cNo need to move tools individually§r. Alternatively, you can fix problems by placing §9Tape§r in the Maintenance Hatch. \n\nMaintenance problems may occur after §d48 real hours of activity§r. Needless to say, they are very rare. Each problem increases the recipe durations by 10%. Fixing the problems is done the same way as above.\n\nLater, you will unlock other Maintenance Hatches that do not enforce fixing the problems manually. Both start with §6no Maintenance required§r:\n\n- §3Automatic Maintenance Hatch§r (§6HV§r): Eliminates the need for Maintenance, §6forever§r.\n\n- §3Configurable Maintenance Hatch§r (§6HV§r): You can configure it to cut off §a10% duration§r on recipes, at the cost of making Maintenance issues happen three times as fast. That is §d16 real hours§r of activity. §9Tape§r can fix problems in this Hatch as well.\n\n- §3Automatic Filtration Maintenance Hatch§r (§3UV§r): Eliminates the need for Maintenance, and provides a §6Cleanroom§r environment to recipes run within it.", "globalshare:1": 0, "icon:10": { "Count:3": 1, @@ -56311,17 +56305,17 @@ }, "26:10": { "id:3": 86, - "sizeX:3": 48, - "sizeY:3": 48, - "x:3": -540, - "y:3": 128 + "sizeX:3": 24, + "sizeY:3": 24, + "x:3": -528, + "y:3": 140 }, "27:10": { "id:3": 87, "sizeX:3": 24, "sizeY:3": 24, "x:3": -528, - "y:3": 188 + "y:3": 180 }, "28:10": { "id:3": 88, @@ -56332,10 +56326,10 @@ }, "29:10": { "id:3": 89, - "sizeX:3": 24, - "sizeY:3": 24, - "x:3": -528, - "y:3": 228 + "sizeX:3": 32, + "sizeY:3": 32, + "x:3": -532, + "y:3": 224 }, "30:10": { "id:3": 90, @@ -56432,7 +56426,7 @@ "id:3": 130, "sizeX:3": 32, "sizeY:3": 32, - "x:3": -580, + "x:3": -592, "y:3": 336 }, "44:10": { @@ -56558,7 +56552,7 @@ "id:3": 398, "sizeX:3": 36, "sizeY:3": 36, - "x:3": -582, + "x:3": -594, "y:3": 222 }, "62:10": { @@ -56831,8 +56825,8 @@ "id:3": 886, "sizeX:3": 24, "sizeY:3": 24, - "x:3": -552, - "y:3": 268 + "x:3": -556, + "y:3": 264 }, "101:10": { "id:3": 887, @@ -56853,7 +56847,7 @@ "sizeX:3": 24, "sizeY:3": 24, "x:3": -472, - "y:3": 188 + "y:3": 180 }, "104:10": { "id:3": 896,