diff --git a/behavior_pack/items/mw_food_fish_fillet.json b/behavior_pack/items/mw_food_fish_fillet.json new file mode 100644 index 0000000..1d0c945 --- /dev/null +++ b/behavior_pack/items/mw_food_fish_fillet.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.17.0", + "minecraft:item": { + "description": { + "identifier": "mw_food:fish_fillet", + "category": "nature" + }, + "components": { + "minecraft:icon": { + "texture": "mw_food", + "frame": 1 + }, + "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/items/mw_food_fish_steak.json b/behavior_pack/items/mw_food_fish_steak.json new file mode 100644 index 0000000..d922778 --- /dev/null +++ b/behavior_pack/items/mw_food_fish_steak.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.17.0", + "minecraft:item": { + "description": { + "identifier": "mw_food:fish_steak", + "category": "nature" + }, + "components": { + "minecraft:icon": { + "texture": "mw_food", + "frame": 7 + }, + "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 6f5e9a7..26201a3 100644 --- a/behavior_pack/manifest.json +++ b/behavior_pack/manifest.json @@ -7,7 +7,7 @@ "version": [ 0, 3, - 16 + 18 ], "min_engine_version": [ 1, @@ -23,7 +23,7 @@ "version": [ 0, 3, - 16 + 18 ] } ], @@ -33,7 +33,7 @@ "version": [ 0, 3, - 16 + 18 ] } ] diff --git a/behavior_pack/recipes/mw_food_fish_fillet.json b/behavior_pack/recipes/mw_food_fish_fillet.json new file mode 100644 index 0000000..5d2b994 --- /dev/null +++ b/behavior_pack/recipes/mw_food_fish_fillet.json @@ -0,0 +1,21 @@ +{ + "format_version": "1.12", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "mw_food:fish_fillet" + }, + "tags": [ + "crafting_table" + ], + "group": "candle", + "ingredients": [ + { + "item": "minecraft:cod" + } + ], + "result": { + "item": "mw_food:fish_fillet", + "count": 2 + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/mw_food_fish_steak.json b/behavior_pack/recipes/mw_food_fish_steak.json new file mode 100644 index 0000000..33faea3 --- /dev/null +++ b/behavior_pack/recipes/mw_food_fish_steak.json @@ -0,0 +1,21 @@ +{ + "format_version": "1.12", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "mw_food:fish_steak" + }, + "tags": [ + "crafting_table" + ], + "group": "candle", + "ingredients": [ + { + "item": "minecraft:cod" + } + ], + "result": { + "item": "mw_food:fish_steak", + "count": 2 + } + } +} \ No newline at end of file diff --git a/resource_pack/manifest.json b/resource_pack/manifest.json index 88f4b3f..1422e0a 100644 --- a/resource_pack/manifest.json +++ b/resource_pack/manifest.json @@ -7,7 +7,7 @@ "version": [ 0, 3, - 16 + 18 ], "min_engine_version": [ 1, @@ -23,7 +23,7 @@ "version": [ 0, 3, - 16 + 18 ] } ], @@ -33,7 +33,7 @@ "version": [ 0, 3, - 16 + 18 ] } ] diff --git a/resource_pack/textures/item_texture.json b/resource_pack/textures/item_texture.json index 4f0ab49..02d8977 100644 --- a/resource_pack/textures/item_texture.json +++ b/resource_pack/textures/item_texture.json @@ -21,7 +21,8 @@ "textures/items/food/jerky", "textures/items/food/pieapple", "textures/items/food/sardines", - "textures/items/food/waffles" + "textures/items/food/waffles", + "textures/items/food/fishsteak" ] } } diff --git a/resource_pack/textures/items/food/fishsteak.png b/resource_pack/textures/items/food/fishsteak.png new file mode 100644 index 0000000..131a85a Binary files /dev/null and b/resource_pack/textures/items/food/fishsteak.png differ