diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/bread.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/bread.json new file mode 100644 index 0000000..125dbec --- /dev/null +++ b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/bread.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:wheat" + }, + { + "item": "minecraft:wheat" + }, + { + "item": "minecraft:wheat" + } + ], + "result": { + "id": "minecraft:bread" + } +} diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/paper.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/paper.json new file mode 100644 index 0000000..36362e0 --- /dev/null +++ b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/paper.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:sugar_cane" + }, + { + "item": "minecraft:sugar_cane" + }, + { + "item": "minecraft:sugar_cane" + } + ], + "result": { + "id": "minecraft:paper", + "count": 3 + } +} diff --git a/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/shulker_box.json b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/shulker_box.json new file mode 100644 index 0000000..1f62452 --- /dev/null +++ b/overrides/global_packs/mc_rebalance_datapack/data/minecraft/recipe/shulker_box.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:shulker_shell" + }, + { + "tag": "c:chests" + }, + { + "item": "minecraft:shulker_shell" + } + ], + "result": { + "id": "minecraft:shulker_box" + } +}