From 2616369c19f5fd5aec2c43ba4f6ba3ac88167753 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Tue, 30 Dec 2025 23:04:22 +0100 Subject: [PATCH 1/9] New Dark Pearl recipe - Now all items from the aether quests are actually used - Requires starting Nature's Aura Progression - Requires the Blast Furnace, pushing the player towards tech progression --- .../addingrecipes/bymod/naturesaura/ritualoftheforest.zs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/crafttweaker/addingrecipes/bymod/naturesaura/ritualoftheforest.zs b/scripts/crafttweaker/addingrecipes/bymod/naturesaura/ritualoftheforest.zs index 740aa433..1b2745bb 100644 --- a/scripts/crafttweaker/addingrecipes/bymod/naturesaura/ritualoftheforest.zs +++ b/scripts/crafttweaker/addingrecipes/bymod/naturesaura/ritualoftheforest.zs @@ -35,8 +35,11 @@ TreeRitual.addRecipe("storagedrawerstatus", , //storage drawers status 2 TreeRitual.addRecipe("storagedrawerstatus2", , , 200, [, , , , , , , ]); +//Dark Pearl +TreeRitual.addRecipe("darkpearl", , , 600, [, , , , , , , ]); + //MA clusters TreeRitual.addRecipe("nethercluster", , , 600, [, , , ]); TreeRitual.addRecipe("dyecluster", , , 600, [, , , , , , , ]); TreeRitual.addRecipe("mysticalcluster", , , 600, [, , , , , , , ]); -TreeRitual.addRecipe("endcluster", , , 600, [, , , ]); \ No newline at end of file +TreeRitual.addRecipe("endcluster", , , 600, [, , , ]); From 16f85778027f3cc4dd6dbc453e00e7d6539042fc Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Tue, 30 Dec 2025 23:07:41 +0100 Subject: [PATCH 2/9] Delete midnight directory This deletes the old dark pearl recipe, which was the only content this folder had --- .../crafttweaker/addingrecipes/bymod/midnight/crafting.zs | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 scripts/crafttweaker/addingrecipes/bymod/midnight/crafting.zs diff --git a/scripts/crafttweaker/addingrecipes/bymod/midnight/crafting.zs b/scripts/crafttweaker/addingrecipes/bymod/midnight/crafting.zs deleted file mode 100644 index ec0ca287..00000000 --- a/scripts/crafttweaker/addingrecipes/bymod/midnight/crafting.zs +++ /dev/null @@ -1,7 +0,0 @@ -#reloadable - -recipes.addShaped("midnight_tp",, [ -[,,], -[,,], -[,,] -]); \ No newline at end of file From 92dddf392c36b8918ba90cab911decda4f5135e7 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Tue, 30 Dec 2025 23:13:43 +0100 Subject: [PATCH 3/9] Change Misty World Portal recipes This replaces stone with infused rock, requiring further progress into Nature's Aura, as well as replacing the gold with Psimetal Ingots, requiring progress in Psi. I feel like this still works as Psimetal is based on gold. --- .../crafttweaker/mid/additions/extendedcrafting/Basic.zs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs b/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs index d4d8722e..ac0aad4a 100644 --- a/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs +++ b/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs @@ -62,8 +62,8 @@ static shapedHolders as Holder[] = [ Util.simpleShaped(, "block", []), //lapis block //mist - Util.simpleShaped(, "portaltop", [, , ]), //misty portal top - Util.simpleShaped(, "portalbottom", [, , ]), //misty portal bottom + Util.simpleShaped(, "portaltop", [, , ]), //misty portal top + Util.simpleShaped(, "portalbottom", [, , ]), //misty portal bottom //silentgems Util.simpleShaped(, "table", [ @@ -109,4 +109,4 @@ function run() { for holder in shapelessHolders { TableCrafting.addShapeless(1, holder.getOutput(), holder.getShapeless()); } -} \ No newline at end of file +} From 2b0bb212c2f00b788c7a441f82fd648621bb19dd Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Tue, 30 Dec 2025 23:19:30 +0100 Subject: [PATCH 4/9] Switch Top and Bottom meta 0 is the bottom, meta 1 is the top --- scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs b/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs index ac0aad4a..a69d73fd 100644 --- a/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs +++ b/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs @@ -62,8 +62,8 @@ static shapedHolders as Holder[] = [ Util.simpleShaped(, "block", []), //lapis block //mist - Util.simpleShaped(, "portaltop", [, , ]), //misty portal top - Util.simpleShaped(, "portalbottom", [, , ]), //misty portal bottom + Util.simpleShaped(, "portaltop", [, , ]), //misty portal top + Util.simpleShaped(, "portalbottom", [, , ]), //misty portal bottom //silentgems Util.simpleShaped(, "table", [ From 98f00f10094384d6de9ea83f1a4971b17d232714 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Tue, 30 Dec 2025 23:26:36 +0100 Subject: [PATCH 5/9] Add new recipe for Foggy Sponge Requires starting Botania --- scripts/crafttweaker/mid/additions/botania/PureDaisy.zs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/crafttweaker/mid/additions/botania/PureDaisy.zs b/scripts/crafttweaker/mid/additions/botania/PureDaisy.zs index 1bdfa519..a4927780 100644 --- a/scripts/crafttweaker/mid/additions/botania/PureDaisy.zs +++ b/scripts/crafttweaker/mid/additions/botania/PureDaisy.zs @@ -8,9 +8,12 @@ for meta in 0 .. 14 { PureDaisy.addRecipe(obsidian, stone, (150+(meta+1)*50)); } +//Foggy Sponge +PureDaisy.addRecipe(, , 200); + //Agate Logs PureDaisy.addRecipe(, , 100); PureDaisy.addRecipe(, , 100); PureDaisy.addRecipe(, , 100); PureDaisy.addRecipe(, , 100); -PureDaisy.addRecipe(, , 100); \ No newline at end of file +PureDaisy.addRecipe(, , 100); From 4f83eed1bd5b80368f05053654d46d105e298142 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Tue, 30 Dec 2025 23:33:01 +0100 Subject: [PATCH 6/9] Better Idea for the Misty World Portals, pt. 1 --- scripts/crafttweaker/early/util/Grid.zs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/crafttweaker/early/util/Grid.zs b/scripts/crafttweaker/early/util/Grid.zs index c1ebc379..e641b06f 100644 --- a/scripts/crafttweaker/early/util/Grid.zs +++ b/scripts/crafttweaker/early/util/Grid.zs @@ -108,14 +108,14 @@ static common3x3 as int[][][string] = { [ 2, 1, 2 ] ], "portalbottom": [ - [ 1, 1, 1 ], + [ 1, 3, 1 ], [ 2, 0, 2 ], [ 2, 2, 2 ] ], "portaltop": [ [ 2, 2, 2 ], [ 2, 0, 2 ], - [ 1, 1, 1 ] + [ 1, 3, 1 ] ], "sandwich": [ [ 2, 2, 2 ], @@ -461,4 +461,4 @@ function flatten(grid as IIngredient[][]) as IIngredient[] { } } return ret; -} \ No newline at end of file +} From 2f17ad0c8849d635c9694b7bace9bc46314e83ba Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Tue, 30 Dec 2025 23:38:42 +0100 Subject: [PATCH 7/9] remove old foggy sponge recipe --- scripts/crafttweaker/early/removals/Vanilla.zs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/crafttweaker/early/removals/Vanilla.zs b/scripts/crafttweaker/early/removals/Vanilla.zs index 84f895a3..9584310d 100644 --- a/scripts/crafttweaker/early/removals/Vanilla.zs +++ b/scripts/crafttweaker/early/removals/Vanilla.zs @@ -431,6 +431,7 @@ static itemRemovals as IItemStack[] = [ //mist------------------------------------------------------------------------------------------------------------------ , , + , //Foggy Sponge //moreplanets----------------------------------------------------------------------------------------------------------- , From 3b1b60201e9fe4230cd6e6dcebdf96f0dbd3fd54 Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Tue, 30 Dec 2025 23:39:39 +0100 Subject: [PATCH 8/9] Improved Portal Recipes --- scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs b/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs index a69d73fd..6618bdb3 100644 --- a/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs +++ b/scripts/crafttweaker/mid/additions/extendedcrafting/Basic.zs @@ -62,8 +62,8 @@ static shapedHolders as Holder[] = [ Util.simpleShaped(, "block", []), //lapis block //mist - Util.simpleShaped(, "portaltop", [, , ]), //misty portal top - Util.simpleShaped(, "portalbottom", [, , ]), //misty portal bottom + Util.simpleShaped(, "portaltop", [, , , ]), //misty portal top + Util.simpleShaped(, "portalbottom", [, , , ]), //misty portal bottom //silentgems Util.simpleShaped(, "table", [ From de66a81d36b0f9a2ddaf0f2abef7e8b3b0ad9c6b Mon Sep 17 00:00:00 2001 From: Johanniklas <57828910+JohanniklasLp@users.noreply.github.com> Date: Wed, 31 Dec 2025 01:38:20 +0100 Subject: [PATCH 9/9] Fix Oven recipe didn't realize that one uses portalbottom too --- scripts/crafttweaker/mid/additions/vanilla/Crafting.zs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/crafttweaker/mid/additions/vanilla/Crafting.zs b/scripts/crafttweaker/mid/additions/vanilla/Crafting.zs index 5621e24c..1cbb06ef 100644 --- a/scripts/crafttweaker/mid/additions/vanilla/Crafting.zs +++ b/scripts/crafttweaker/mid/additions/vanilla/Crafting.zs @@ -166,7 +166,8 @@ static shapedBuilders as Holder[] = [ Util.simpleShaped(, "portalbottom", [ , , - + , + ]), //Oven //darkutils-------------------------------------------------------------------------------------------------------------