From 96c9b1aca7ecae4ec0548bee97895101a70597b1 Mon Sep 17 00:00:00 2001 From: Hell13Cat <46496367+Hell13Cat@users.noreply.github.com> Date: Tue, 25 Jan 2022 21:26:46 +0300 Subject: [PATCH] =?UTF-8?q?=D0=90=D0=B1=D1=81=D0=B5=D0=BD=D1=82=20=D0=B8?= =?UTF-8?q?=20=D0=BF=D0=B8=D0=B2=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../functions/mw_alko_absent.mcfunction | 1 + .../functions/mw_alko_beer.mcfunction | 1 + behavior_pack/items/mw_alko_absent.json | 49 +++++++++++++++++++ behavior_pack/items/mw_alko_beer.json | 37 ++++++++++++++ behavior_pack/recipes/mw_alko_absent.json | 14 ++++++ behavior_pack/recipes/mw_alko_beer.json | 14 ++++++ 6 files changed, 116 insertions(+) create mode 100644 behavior_pack/functions/mw_alko_absent.mcfunction create mode 100644 behavior_pack/functions/mw_alko_beer.mcfunction create mode 100644 behavior_pack/items/mw_alko_absent.json create mode 100644 behavior_pack/items/mw_alko_beer.json create mode 100644 behavior_pack/recipes/mw_alko_absent.json create mode 100644 behavior_pack/recipes/mw_alko_beer.json diff --git a/behavior_pack/functions/mw_alko_absent.mcfunction b/behavior_pack/functions/mw_alko_absent.mcfunction new file mode 100644 index 0000000..7d07c2d --- /dev/null +++ b/behavior_pack/functions/mw_alko_absent.mcfunction @@ -0,0 +1 @@ +give @s mw_alko:absent \ No newline at end of file diff --git a/behavior_pack/functions/mw_alko_beer.mcfunction b/behavior_pack/functions/mw_alko_beer.mcfunction new file mode 100644 index 0000000..7d07c2d --- /dev/null +++ b/behavior_pack/functions/mw_alko_beer.mcfunction @@ -0,0 +1 @@ +give @s mw_alko:absent \ No newline at end of file diff --git a/behavior_pack/items/mw_alko_absent.json b/behavior_pack/items/mw_alko_absent.json new file mode 100644 index 0000000..6308e9b --- /dev/null +++ b/behavior_pack/items/mw_alko_absent.json @@ -0,0 +1,49 @@ +{ + "format_version": "1.10", + "minecraft:item": { + "description": { + "identifier": "mw_alko:absent", + "category": "items" + }, + "components": { + "minecraft:hand_equipped": false, + "minecraft:max_stack_size": 1, + "minecraft:foil": false, + "minecraft:stack_by_data": true, + "minecraft:food": { + "saturation_modifier": "low", + "nutrition": 4, + "can_always_eat": true, + "effects": [ + { + "name": "nausea", + "chance": 1, + "duration": 300, + "amplifier": 3 + }, + { + "name": "slowness", + "chance": 1, + "duration": 60, + "amplifier": 2 + }, + { + "name": "strength", + "chance": 1, + "duration": 90, + "amplifier": 2 + }, + { + "name": "poison", + "chance": 1, + "duration": 4, + "amplifier": 1 + } + ], + "remove_effects": [], + "using_converts_to": "mw_alko:bottle" + }, + "minecraft:use_duration": 32 + } + } +} \ No newline at end of file diff --git a/behavior_pack/items/mw_alko_beer.json b/behavior_pack/items/mw_alko_beer.json new file mode 100644 index 0000000..5302e31 --- /dev/null +++ b/behavior_pack/items/mw_alko_beer.json @@ -0,0 +1,37 @@ +{ + "format_version": "1.10", + "minecraft:item": { + "description": { + "identifier": "mw_alko:beer", + "category": "items" + }, + "components": { + "minecraft:hand_equipped": false, + "minecraft:max_stack_size": 1, + "minecraft:foil": false, + "minecraft:stack_by_data": true, + "minecraft:food": { + "saturation_modifier": "normal", + "nutrition": 4, + "can_always_eat": true, + "effects": [ + { + "name": "nausea", + "chance": 1, + "duration": 80, + "amplifier": 1 + }, + { + "name": "strength", + "chance": 1, + "duration": 20, + "amplifier": 1 + } + ], + "remove_effects": [], + "using_converts_to": "mw_alko:beer" + }, + "minecraft:use_duration": 32 + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/mw_alko_absent.json b/behavior_pack/recipes/mw_alko_absent.json new file mode 100644 index 0000000..986e173 --- /dev/null +++ b/behavior_pack/recipes/mw_alko_absent.json @@ -0,0 +1,14 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "mw_alko:absent" + }, + + "tags": [ "brewing_stand" ], + + "input": "mw_alko:alcohol", + "reagent": "minecraft:grass", + "output": "mw_alko:absent" + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/mw_alko_beer.json b/behavior_pack/recipes/mw_alko_beer.json new file mode 100644 index 0000000..33f380d --- /dev/null +++ b/behavior_pack/recipes/mw_alko_beer.json @@ -0,0 +1,14 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "mw_alko:beer" + }, + + "tags": [ "brewing_stand" ], + + "input": "mw_alko:bottle_water", + "reagent": "minecraft:wheat", + "output": "mw_alko:beer" + } +} \ No newline at end of file