From adab60c654ff49b0c031c50b09bd324118551c9e Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Sun, 9 Nov 2025 22:10:58 +0000 Subject: [PATCH] Make gravel craftable 2 sand + 2 flint = 2 gravel --- data/mc_rebalance/recipes/gravel.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 data/mc_rebalance/recipes/gravel.json diff --git a/data/mc_rebalance/recipes/gravel.json b/data/mc_rebalance/recipes/gravel.json new file mode 100644 index 0000000..ecdb338 --- /dev/null +++ b/data/mc_rebalance/recipes/gravel.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": { + "item": "minecraft:sand" + }, + "F": { + "item": "minecraft:flint" + } + }, + "pattern": [ + "SF", + "FS" + ], + "result": { + "count": 2, + "item": "minecraft:gravel" + }, + "show_notification": true +}