From 5bdaeab6e8b822451f3e494927e9e9055a18b222 Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Sun, 24 Aug 2025 03:02:53 +0100 Subject: [PATCH] Changed grout recipe * Grout now requires iron nuggets instead of gravel, requiring more exploration before players can make a forge --- .../smeltery/scorched/nether_grout.json | 13 +++++++++++++ .../scorched/nether_grout_multiple.json | 13 +++++++++++++ .../recipes/smeltery/seared/grout.json | 13 +++++++++++++ .../smeltery/seared/grout_multiple.json | 19 +++++++++++++++++++ 4 files changed, 58 insertions(+) create mode 100644 data/tconstruct/recipes/smeltery/scorched/nether_grout.json create mode 100644 data/tconstruct/recipes/smeltery/scorched/nether_grout_multiple.json create mode 100644 data/tconstruct/recipes/smeltery/seared/grout.json create mode 100644 data/tconstruct/recipes/smeltery/seared/grout_multiple.json diff --git a/data/tconstruct/recipes/smeltery/scorched/nether_grout.json b/data/tconstruct/recipes/smeltery/scorched/nether_grout.json new file mode 100644 index 0000000..3dcc658 --- /dev/null +++ b/data/tconstruct/recipes/smeltery/scorched/nether_grout.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + {"item": "minecraft:magma_cream"}, + [{"item": "minecraft:soul_sand"}, {"item": "minecraft:soul_soil"}], + {"item": "minecraft:iron_nugget"} + ], + "result": { + "count": 2, + "item": "tconstruct:nether_grout" + } +} diff --git a/data/tconstruct/recipes/smeltery/scorched/nether_grout_multiple.json b/data/tconstruct/recipes/smeltery/scorched/nether_grout_multiple.json new file mode 100644 index 0000000..1414db0 --- /dev/null +++ b/data/tconstruct/recipes/smeltery/scorched/nether_grout_multiple.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + {"item": "minecraft:magma_block"}, [{"item": "minecraft:soul_sand"}, {"item": "minecraft:soul_soil"}], [{"item": "minecraft:soul_sand"}, {"item": "minecraft:soul_soil"}], + [{"item": "minecraft:soul_sand"}, {"item": "minecraft:soul_soil"}], [{"item": "minecraft:soul_sand"}, {"item": "minecraft:soul_soil"}], {"item": "minecraft:iron_nugget"}, + {"item": "minecraft:iron_nugget"}, {"item": "minecraft:iron_nugget"}, {"item": "minecraft:iron_nugget"} + ], + "result": { + "count": 8, + "item": "tconstruct:nether_grout" + } +} diff --git a/data/tconstruct/recipes/smeltery/seared/grout.json b/data/tconstruct/recipes/smeltery/seared/grout.json new file mode 100644 index 0000000..2417b15 --- /dev/null +++ b/data/tconstruct/recipes/smeltery/seared/grout.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + {"item": "minecraft:clay_ball"}, + {"tag": "minecraft:sand"}, + {"item": "minecraft:iron_nugget"} + ], + "result": { + "count": 2, + "item": "tconstruct:grout" + } +} diff --git a/data/tconstruct/recipes/smeltery/seared/grout_multiple.json b/data/tconstruct/recipes/smeltery/seared/grout_multiple.json new file mode 100644 index 0000000..ce49bec --- /dev/null +++ b/data/tconstruct/recipes/smeltery/seared/grout_multiple.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + {"item": "minecraft:clay"}, + {"tag": "minecraft:sand"}, + {"tag": "minecraft:sand"}, + {"tag": "minecraft:sand"}, + {"tag": "minecraft:sand"}, + {"item": "minecraft:iron_nugget"}, + {"item": "minecraft:iron_nugget"}, + {"item": "minecraft:iron_nugget"}, + {"item": "minecraft:iron_nugget"} + ], + "result": { + "count": 8, + "item": "tconstruct:grout" + } +}