From e1190e6dffd79ff9454f05a6cf24ef1dd0cdaeaf Mon Sep 17 00:00:00 2001 From: Hell13Cat <46496367+Hell13Cat@users.noreply.github.com> Date: Sat, 5 Feb 2022 22:18:42 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=B0=D1=84=D0=BB=D0=B8=20=D0=B8=20?= =?UTF-8?q?=D0=B2=D0=B0=D1=80=D0=B5=D0=BD=D1=8C=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .mcattributes | 2 ++ behavior_pack/items/mw_food_jam.json | 30 ++++++++++++++++++++++ behavior_pack/items/mw_food_waffles.json | 29 +++++++++++++++++++++ behavior_pack/manifest.json | 6 ++--- behavior_pack/recipes/mw_food_choko.json | 3 +++ behavior_pack/recipes/mw_food_jam.json | 26 +++++++++++++++++++ behavior_pack/recipes/mw_food_waffles.json | 23 +++++++++++++++++ resource_pack/manifest.json | 6 ++--- 8 files changed, 119 insertions(+), 6 deletions(-) create mode 100644 .mcattributes create mode 100644 behavior_pack/items/mw_food_jam.json create mode 100644 behavior_pack/items/mw_food_waffles.json create mode 100644 behavior_pack/recipes/mw_food_jam.json create mode 100644 behavior_pack/recipes/mw_food_waffles.json diff --git a/.mcattributes b/.mcattributes new file mode 100644 index 0000000..2effa0f --- /dev/null +++ b/.mcattributes @@ -0,0 +1,2 @@ +diagnostic.disable.minecraft.manifest.module.missing=true +diagnostic.disable.minecraft.manifest.module.missing=true \ No newline at end of file diff --git a/behavior_pack/items/mw_food_jam.json b/behavior_pack/items/mw_food_jam.json new file mode 100644 index 0000000..68462e9 --- /dev/null +++ b/behavior_pack/items/mw_food_jam.json @@ -0,0 +1,30 @@ +{ + "format_version": "1.17.0", + "minecraft:item": { + "description": { + "identifier": "mw_food:jam", + "category": "nature" + }, + "components": { + "minecraft:icon": { + "texture": "mw_food", + "frame": 2 + }, + "minecraft:display_name": { + "value": "Варенье" + }, + "minecraft:use_animation": "eat", + "minecraft:hand_equipped": false, + "minecraft:max_stack_size": 64, + "minecraft:foil": false, + "minecraft:food": { + "saturation_modifier": "low", + "nutrition": 4, + "can_always_eat": false, + "remove_effects": [], + "using_converts_to": "minecraft:glass_bottle" + }, + "minecraft:use_duration": 3 + } + } +} \ No newline at end of file diff --git a/behavior_pack/items/mw_food_waffles.json b/behavior_pack/items/mw_food_waffles.json new file mode 100644 index 0000000..2e7b869 --- /dev/null +++ b/behavior_pack/items/mw_food_waffles.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.17.0", + "minecraft:item": { + "description": { + "identifier": "mw_food:waffles", + "category": "nature" + }, + "components": { + "minecraft:icon": { + "texture": "mw_food", + "frame": 6 + }, + "minecraft:display_name": { + "value": "Вафли" + }, + "minecraft:use_animation": "eat", + "minecraft:hand_equipped": false, + "minecraft:max_stack_size": 64, + "minecraft:foil": false, + "minecraft:food": { + "saturation_modifier": "low", + "nutrition": 4, + "can_always_eat": false, + "remove_effects": [] + }, + "minecraft:use_duration": 3 + } + } +} \ No newline at end of file diff --git a/behavior_pack/manifest.json b/behavior_pack/manifest.json index 28f28ce..bce06f2 100644 --- a/behavior_pack/manifest.json +++ b/behavior_pack/manifest.json @@ -7,7 +7,7 @@ "version": [ 0, 3, - 14 + 16 ], "min_engine_version": [ 1, @@ -23,7 +23,7 @@ "version": [ 0, 3, - 14 + 16 ] } ], @@ -33,7 +33,7 @@ "version": [ 0, 3, - 14 + 16 ] } ] diff --git a/behavior_pack/recipes/mw_food_choko.json b/behavior_pack/recipes/mw_food_choko.json index 5b6c595..16fa08a 100644 --- a/behavior_pack/recipes/mw_food_choko.json +++ b/behavior_pack/recipes/mw_food_choko.json @@ -12,6 +12,9 @@ }, { "item": "minecraft:cocoa_beans" + }, + { + "item": "minecraft:paper" } ], "result": { diff --git a/behavior_pack/recipes/mw_food_jam.json b/behavior_pack/recipes/mw_food_jam.json new file mode 100644 index 0000000..38e4027 --- /dev/null +++ b/behavior_pack/recipes/mw_food_jam.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.12", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "mw_food:jam" + }, + "tags": [ "crafting_table" ], + "group": "candle", + "ingredients": [ + { + "item": "minecraft:sweet_berries", + "count": 2 + }, + { + "item": "minecraft:glass_bottle" + }, + { + "item": "minecraft:sugar" + } + ], + "result": { + "item": "mw_food:jam", + "count": 1 + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/mw_food_waffles.json b/behavior_pack/recipes/mw_food_waffles.json new file mode 100644 index 0000000..ea62fb9 --- /dev/null +++ b/behavior_pack/recipes/mw_food_waffles.json @@ -0,0 +1,23 @@ +{ + "format_version": "1.12", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "mw_food:waffles" + }, + "tags": [ "crafting_table" ], + "group": "candle", + "ingredients": [ + { + "item": "minecraft:sugar" + }, + { + "item": "minecraft:wheat", + "count": 2 + } + ], + "result": { + "item": "mw_food:waffles", + "count": 4 + } + } +} \ No newline at end of file diff --git a/resource_pack/manifest.json b/resource_pack/manifest.json index 776fda6..9987dea 100644 --- a/resource_pack/manifest.json +++ b/resource_pack/manifest.json @@ -7,7 +7,7 @@ "version": [ 0, 3, - 14 + 16 ], "min_engine_version": [ 1, @@ -23,7 +23,7 @@ "version": [ 0, 3, - 14 + 16 ] } ], @@ -33,7 +33,7 @@ "version": [ 0, 3, - 14 + 16 ] } ]