From a2308fe97bb74aa8803507a7059d131a555bb2fd Mon Sep 17 00:00:00 2001 From: Hell13Cat <46496367+Hell13Cat@users.noreply.github.com> Date: Sat, 29 Jan 2022 20:47:32 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=BC=D0=BF=D0=BE=D1=80=D1=82=20=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D1=8B=D1=85=20=D1=80=D0=B5=D1=86=D0=B5=D0=BF=D1=82?= =?UTF-8?q?=D0=BE=D0=B2=20=D0=B8=D0=B7=20=D0=B0=D0=B4=D0=B4=D0=BE=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=BD=D0=B0=20=D1=80=D0=B5=D1=86=D0=B5=D0=BF=D1=82?= =?UTF-8?q?=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- behavior_pack/recipes/crying_obsidian.json | 26 ++++++++++++++++++ behavior_pack/recipes/grass.json | 22 ++++++++++++++++ behavior_pack/recipes/gunpowder.json | 29 +++++++++++++++++++++ behavior_pack/recipes/string_to_cobweb.json | 24 +++++++++++++++++ 4 files changed, 101 insertions(+) create mode 100644 behavior_pack/recipes/crying_obsidian.json create mode 100644 behavior_pack/recipes/grass.json create mode 100644 behavior_pack/recipes/gunpowder.json create mode 100644 behavior_pack/recipes/string_to_cobweb.json diff --git a/behavior_pack/recipes/crying_obsidian.json b/behavior_pack/recipes/crying_obsidian.json new file mode 100644 index 0000000..eafa35c --- /dev/null +++ b/behavior_pack/recipes/crying_obsidian.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.16", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:crying_obsidian" + }, + "tags": [ "crafting_table" ], + "pattern": [ + "OGO", + "GOG", + "OGO" + ], + "key": { + "O": { + "item": "minecraft:obsidian" + }, + "G": { + "item": "minecraft:ghast_tear" + } + }, + "result": { + "item": "minecraft:crying_obsidian", + "count": 4 + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/grass.json b/behavior_pack/recipes/grass.json new file mode 100644 index 0000000..ab8a954 --- /dev/null +++ b/behavior_pack/recipes/grass.json @@ -0,0 +1,22 @@ + +{ + "format_version": "1.12", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:grass" + }, + "tags": [ "crafting_table" ], + "group": "candle", + "ingredients": [ + { + "item": "minecraft:dirt" + }, + { + "item": "minecraft:wheat_seeds" + } + ], + "result": { + "item": "minecraft:grass" + } + } + } \ No newline at end of file diff --git a/behavior_pack/recipes/gunpowder.json b/behavior_pack/recipes/gunpowder.json new file mode 100644 index 0000000..aa026db --- /dev/null +++ b/behavior_pack/recipes/gunpowder.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.12", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:gunpowder" + }, + + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "X X", + " # " + ], + "key": { + "X": { + "item": "minecraft:coal", + "data": 1 + }, + "#": { + "item": "minecraft:blaze_powder" + } + }, + "result": { + "item": "minecraft:gunpowder", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/string_to_cobweb.json b/behavior_pack/recipes/string_to_cobweb.json new file mode 100644 index 0000000..a7f7bc1 --- /dev/null +++ b/behavior_pack/recipes/string_to_cobweb.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.16", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:string_to_cobweb" + }, + + + "tags": [ "crafting_table" ], + "pattern": [ + "###", + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:string" + } + }, + "result": { + "item": "minecraft:web" + } + } +}