From fc48ea12e41aad64020e3d7ce5ceb2e20c4714ca Mon Sep 17 00:00:00 2001 From: Motschen Date: Tue, 16 Jun 2020 21:11:52 +0200 Subject: [PATCH] Fexed a few issues regarding resource files, german translations --- .../resources/assets/dishes/lang/de_de.json | 55 ++++++++++++++++ .../resources/assets/dishes/lang/en_us.json | 17 ++++- .../loot_tables/blocks/lettucebush.json | 66 +++++++++++++++++++ .../dishes/loot_tables/blocks/pizzabox.json | 19 ++++++ .../data/dishes/loot_tables/blocks/plate.json | 19 ++++++ .../dishes/loot_tables/blocks/tomatobush.json | 2 +- .../de_de/categories/american.json | 5 ++ .../de_de/categories/british.json | 5 ++ .../de_de/categories/general.json | 5 ++ .../de_de/categories/german.json | 5 ++ .../de_de/categories/italian.json | 5 ++ .../de_de/entries/cooking_guide/bacon.json | 18 +++++ .../entries/cooking_guide/cheese_roll.json | 18 +++++ .../entries/cooking_guide/cheese_slice.json | 18 +++++ .../entries/cooking_guide/cheeseburger.json | 18 +++++ .../entries/cooking_guide/chickenburger.json | 18 +++++ .../entries/cooking_guide/fishandchips.json | 18 +++++ .../de_de/entries/cooking_guide/flour.json | 18 +++++ .../de_de/entries/cooking_guide/fries.json | 18 +++++ .../entries/cooking_guide/hamburger.json | 18 +++++ .../de_de/entries/cooking_guide/knife.json | 22 +++++++ .../de_de/entries/cooking_guide/lettuce.json | 18 +++++ .../entries/cooking_guide/lettuceseed.json | 18 +++++ .../entries/cooking_guide/pizzabacon.json | 18 +++++ .../de_de/entries/cooking_guide/pizzabox.json | 18 +++++ .../de_de/entries/cooking_guide/pizzaham.json | 18 +++++ .../entries/cooking_guide/pizzasalami.json | 18 +++++ .../entries/cooking_guide/pizzatuna.json | 18 +++++ .../de_de/entries/cooking_guide/plate.json | 18 +++++ .../entries/cooking_guide/potato_slice.json | 18 +++++ .../cooking_guide/potatoeswithcurdcheese.json | 18 +++++ .../entries/cooking_guide/raw_bacon.json | 18 +++++ .../entries/cooking_guide/raw_fries.json | 18 +++++ .../entries/cooking_guide/raw_spaghetti.json | 18 +++++ .../de_de/entries/cooking_guide/salami.json | 22 +++++++ .../de_de/entries/cooking_guide/salt.json | 18 +++++ .../de_de/entries/cooking_guide/salt_ore.json | 18 +++++ .../entries/cooking_guide/schnitzel.json | 18 +++++ .../entries/cooking_guide/spaghetti.json | 18 +++++ .../cooking_guide/spaghetti_bolognese.json | 18 +++++ .../de_de/entries/cooking_guide/steak.json | 18 +++++ .../tinypotatoeswithcurdcheese.json | 18 +++++ .../de_de/entries/cooking_guide/tomato.json | 18 +++++ .../entries/cooking_guide/tomatoseed.json | 18 +++++ src/main/resources/fabric.mod.json | 2 +- 45 files changed, 804 insertions(+), 3 deletions(-) create mode 100644 src/main/resources/assets/dishes/lang/de_de.json create mode 100644 src/main/resources/data/dishes/loot_tables/blocks/lettucebush.json create mode 100644 src/main/resources/data/dishes/loot_tables/blocks/pizzabox.json create mode 100644 src/main/resources/data/dishes/loot_tables/blocks/plate.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/american.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/british.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/general.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/german.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/italian.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/bacon.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheese_roll.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheese_slice.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheeseburger.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/chickenburger.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/fishandchips.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/flour.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/fries.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/hamburger.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/knife.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/lettuce.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/lettuceseed.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzabacon.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzabox.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzaham.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzasalami.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzatuna.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/plate.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/potato_slice.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/potatoeswithcurdcheese.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_bacon.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_fries.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_spaghetti.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salami.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salt.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salt_ore.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/schnitzel.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/spaghetti.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/spaghetti_bolognese.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/steak.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tinypotatoeswithcurdcheese.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tomato.json create mode 100644 src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tomatoseed.json diff --git a/src/main/resources/assets/dishes/lang/de_de.json b/src/main/resources/assets/dishes/lang/de_de.json new file mode 100644 index 0000000..ee5077f --- /dev/null +++ b/src/main/resources/assets/dishes/lang/de_de.json @@ -0,0 +1,55 @@ +{ + "itemGroup.dishes.dishes":"Delicious Dishes", + "text.dishes.landing_text":"Dies ist ein Kochbuch, das dir beim Zubereiten der Gerichte der Mod Delicious Dishes hilft", + "book.dishes.cooking_guide":"Kochbuch", + "item.dishes.plate":"Teller", + "item.dishes.pizzabox":"Leerer Pizzakarton", + "item.dishes.potatoeswithcurdcheese":"Kartoffeln mit Quark", + "item.dishes.tinypotatoeswithcurdcheese":"Tiny Potatoes mit Quark", + "item.dishes.schnitzel":"Schnitzel", + "item.dishes.pizzasalami":"Pizza Salami", + "item.dishes.pizzaham":"Pizza Ham", + "item.dishes.pizzatuna":"Pizza Tuhnfisch", + "item.dishes.pizzabacon":"Pizza Bacon", + "item.dishes.spaghetti_bolognese":"Spaghetti Bolognese", + "item.dishes.steak":"Steak", + "item.dishes.hamburger":"Hamburger", + "item.dishes.chickenburger":"Chickenburger", + "item.dishes.cheeseburger":"Cheeseburger", + "item.dishes.fishandchips":"Fish and Chips", + "item.dishes.flour":"Mehl", + "item.dishes.raw_spaghetti":"Rohe Spaghetti", + "item.dishes.spaghetti":"Spaghetti", + "item.dishes.salt":"Salz", + "block.dishes.salt_ore":"Salzerz", + "item.dishes.tomato":"Tomate", + "item.dishes.tomatobush":"Tomatenbusch", + "item.dishes.tomatoseed":"Tomatensamen", + "item.dishes.lettuce":"Salat", + "item.dishes.raw_bacon":"Roher Speck", + "item.dishes.bacon":"Speck", + "item.dishes.lettucebush":"Salatbusch", + "item.dishes.lettuceseed":"Salatsamen", + "item.dishes.potato_slice":"Kartoffelstückchen", + "item.dishes.raw_fries":"Rohe Pommes", + "item.dishes.fries":"Pommes", + "item.dishes.salami":"Salami", + "item.dishes.cheese_roll":"Käserolle", + "item.dishes.cheese_slice":"Käsescheibe", + "item.dishes.knife":"Messer", + "block.dishes.plate":"Teller", + "block.dishes.pizzabox":"Leerer Pizzakarton", + "block.dishes.potatoeswithcurdcheese":"Kartoffeln mit Quark", + "block.dishes.tinypotatoeswithcurdcheese":"Tiny Potatoes mit Quark", + "block.dishes.schnitzel":"Schnitzel", + "block.dishes.pizzasalami":"Pizza Salami", + "block.dishes.pizzaham":"Pizza Schinken", + "block.dishes.pizzatuna":"Pizza Tuhnfisch", + "block.dishes.pizzabacon":"Pizza Bacon", + "block.dishes.spaghetti_bolognese":"Spaghetti Bolognese", + "block.dishes.steak":"Steak", + "block.dishes.hamburger":"Hamburger", + "block.dishes.chickenburger":"Chickenburger", + "block.dishes.cheeseburger":"Cheeseburger", + "block.dishes.fishandchips":"Fish and Chips" +} \ No newline at end of file diff --git a/src/main/resources/assets/dishes/lang/en_us.json b/src/main/resources/assets/dishes/lang/en_us.json index 728f7aa..971361d 100644 --- a/src/main/resources/assets/dishes/lang/en_us.json +++ b/src/main/resources/assets/dishes/lang/en_us.json @@ -36,5 +36,20 @@ "item.dishes.salami":"Salami", "item.dishes.cheese_roll":"Cheese Roll", "item.dishes.cheese_slice":"Cheese Slice", - "item.dishes.knife":"Knife" + "item.dishes.knife":"Knife", + "block.dishes.plate":"Plate", + "block.dishes.pizzabox":"Empty Pizzabox", + "block.dishes.potatoeswithcurdcheese":"Potatoes with Curd Cheese", + "block.dishes.tinypotatoeswithcurdcheese":"Tiny Potatoes with Curd Cheese", + "block.dishes.schnitzel":"Schnitzel", + "block.dishes.pizzasalami":"Pizza Salami", + "block.dishes.pizzaham":"Pizza Ham", + "block.dishes.pizzatuna":"Pizza Tuna", + "block.dishes.pizzabacon":"Pizza Bacon", + "block.dishes.spaghetti_bolognese":"Spaghetti Bolognese", + "block.dishes.steak":"Steak", + "block.dishes.hamburger":"Hamburger", + "block.dishes.chickenburger":"Chickenburger", + "block.dishes.cheeseburger":"Cheeseburger", + "block.dishes.fishandchips":"Fish and Chips" } \ No newline at end of file diff --git a/src/main/resources/data/dishes/loot_tables/blocks/lettucebush.json b/src/main/resources/data/dishes/loot_tables/blocks/lettucebush.json new file mode 100644 index 0000000..9a03703 --- /dev/null +++ b/src/main/resources/data/dishes/loot_tables/blocks/lettucebush.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "dishes:lettucebush", + "properties": { + "age": "7" + } + } + ], + "name": "dishes:lettuce" + }, + { + "type": "minecraft:item", + "name": "dishes:lettuceseed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.33 + } + } + ], + "name": "dishes:lettuce" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "dishes:lettucebush", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/loot_tables/blocks/pizzabox.json b/src/main/resources/data/dishes/loot_tables/blocks/pizzabox.json new file mode 100644 index 0000000..bf0d975 --- /dev/null +++ b/src/main/resources/data/dishes/loot_tables/blocks/pizzabox.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "dishes:pizzabox" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/loot_tables/blocks/plate.json b/src/main/resources/data/dishes/loot_tables/blocks/plate.json new file mode 100644 index 0000000..e5c6cbd --- /dev/null +++ b/src/main/resources/data/dishes/loot_tables/blocks/plate.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "dishes:plate" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/loot_tables/blocks/tomatobush.json b/src/main/resources/data/dishes/loot_tables/blocks/tomatobush.json index ef3b38a..4ff7319 100644 --- a/src/main/resources/data/dishes/loot_tables/blocks/tomatobush.json +++ b/src/main/resources/data/dishes/loot_tables/blocks/tomatobush.json @@ -44,7 +44,7 @@ } } ], - "name": "dishes:tomatoseed" + "name": "dishes:tomato" } ], "conditions": [ diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/american.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/american.json new file mode 100644 index 0000000..abb90bd --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/american.json @@ -0,0 +1,5 @@ +{ + "name": "Amerikanische Gerichte", + "description": "Essen aus den USA", + "icon": "dishes:flag_america" +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/british.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/british.json new file mode 100644 index 0000000..2434292 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/british.json @@ -0,0 +1,5 @@ +{ + "name": "Britische Gerichte", + "description": "Essen aus dem Vereinigten Königreich", + "icon": "dishes:flag_britain" +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/general.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/general.json new file mode 100644 index 0000000..5e33438 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/general.json @@ -0,0 +1,5 @@ +{ + "name": "Generell", + "description": "Zutaten und Untersetzer für Gerichte", + "icon": "dishes:plate" +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/german.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/german.json new file mode 100644 index 0000000..2ea8cc6 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/german.json @@ -0,0 +1,5 @@ +{ + "name": "Deutsche Gerichte", + "description": "Essen aus Deutschland", + "icon": "dishes:flag_germany" +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/italian.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/italian.json new file mode 100644 index 0000000..180d108 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/categories/italian.json @@ -0,0 +1,5 @@ +{ + "name": "Italienische Gerichte", + "description": "Essen aus Italien", + "icon": "dishes:flag_italy" +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/bacon.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/bacon.json new file mode 100644 index 0000000..b24fad9 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/bacon.json @@ -0,0 +1,18 @@ +{ + "name": "Speck", + "icon": "dishes:bacon", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:bacon", + "title": "Speck", + "link_recipe": false, + "text": "Speck kann man für die Herstellung von Pizza Bacon verwenden." + }, + { + "type": "smelting", + "recipe": "dishes:bacon_smelting" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheese_roll.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheese_roll.json new file mode 100644 index 0000000..8f53950 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheese_roll.json @@ -0,0 +1,18 @@ +{ + "name": "Käserolle", + "icon": "dishes:cheese_roll", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:cheese_roll", + "title": "Käserolle", + "link_recipe": false, + "text": "Eine rohes Stück Käse" + }, + { + "type": "crafting", + "recipe": "dishes:cheese_roll" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheese_slice.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheese_slice.json new file mode 100644 index 0000000..9c3fd81 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheese_slice.json @@ -0,0 +1,18 @@ +{ + "name": "Käsescheibe", + "icon": "dishes:cheese_slice", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:cheese_slice", + "title": "Käsescheibe", + "link_recipe": false, + "text": "Eine Scheibe Käse, aus einer Käserolle geschnitten" + }, + { + "type": "crafting", + "recipe": "dishes:cheese_slice" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheeseburger.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheeseburger.json new file mode 100644 index 0000000..9f990d0 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/cheeseburger.json @@ -0,0 +1,18 @@ +{ + "name": "Cheeseburger", + "icon": "dishes:cheeseburger", + "category": "dishes:american", + "pages": [ + { + "type": "spotlight", + "item": "dishes:cheeseburger", + "title": "Cheeseburger", + "link_recipe": false, + "text": "Ein Hamburger mit Käse." + }, + { + "type": "crafting", + "recipe": "dishes:cheeseburger" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/chickenburger.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/chickenburger.json new file mode 100644 index 0000000..6fa6aa9 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/chickenburger.json @@ -0,0 +1,18 @@ +{ + "name": "Chickenburger", + "icon": "dishes:chickenburger", + "category": "dishes:american", + "pages": [ + { + "type": "spotlight", + "item": "dishes:chickenburger", + "title": "Chickenburger", + "link_recipe": false, + "text": "Ein Hamburger, bloß mit Hühnchen statt Rindfleisch." + }, + { + "type": "crafting", + "recipe": "dishes:chickenburger" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/fishandchips.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/fishandchips.json new file mode 100644 index 0000000..b28b445 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/fishandchips.json @@ -0,0 +1,18 @@ +{ + "name": "Fish and Chips", + "icon": "dishes:fishandchips", + "category": "dishes:british", + "pages": [ + { + "type": "spotlight", + "item": "dishes:fishandchips", + "title": "Fish and Chips", + "link_recipe": false, + "text": "Briten lieben dieses Gericht!" + }, + { + "type": "crafting", + "recipe": "dishes:fishandchips" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/flour.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/flour.json new file mode 100644 index 0000000..e94e714 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/flour.json @@ -0,0 +1,18 @@ +{ + "name": "Mehl", + "icon": "dishes:flour", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:flour", + "title": "Mehl", + "link_recipe": false, + "text": "Mehl kann zur herstellung von Teigwaren und Pizza verwendet werden." + }, + { + "type": "crafting", + "recipe": "dishes:flour" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/fries.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/fries.json new file mode 100644 index 0000000..f557226 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/fries.json @@ -0,0 +1,18 @@ +{ + "name": "Pommes", + "icon": "dishes:fries", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:fries", + "title": "Pommes", + "link_recipe": false, + "text": "Gekochte Kartoffelscheiben mit Salz." + }, + { + "type": "smelting", + "recipe": "dishes:fries_smelting" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/hamburger.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/hamburger.json new file mode 100644 index 0000000..cdc0795 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/hamburger.json @@ -0,0 +1,18 @@ +{ + "name": "Hamburger", + "icon": "dishes:hamburger", + "category": "dishes:american", + "pages": [ + { + "type": "spotlight", + "item": "dishes:hamburger", + "title": "Hamburger", + "link_recipe": false, + "text": "Ein klassischer Hamburger" + }, + { + "type": "crafting", + "recipe": "dishes:hamburger" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/knife.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/knife.json new file mode 100644 index 0000000..829cf82 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/knife.json @@ -0,0 +1,22 @@ +{ + "name": "Messer", + "icon": "dishes:knife", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:knife", + "title": "Messer", + "link_recipe": false, + "text": "Erlaubt es dir, Essen in kleinere Stücke zu schneiden." + }, + { + "type": "crafting", + "recipe": "dishes:knife" + }, + { + "type": "crafting", + "recipe": "dishes:potato_slice" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/lettuce.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/lettuce.json new file mode 100644 index 0000000..4024be0 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/lettuce.json @@ -0,0 +1,18 @@ +{ + "name": "Salat", + "icon": "dishes:lettuce", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:lettuce", + "title": "Salat", + "link_recipe": false, + "text": "Salat wird zur Herstellung von vielen Gerichten verwendet. Du kannst ihn in Dörfern finden." + }, + { + "type": "crafting", + "recipe": "dishes:lettuceseed" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/lettuceseed.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/lettuceseed.json new file mode 100644 index 0000000..37436fa --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/lettuceseed.json @@ -0,0 +1,18 @@ +{ + "name": "Salatsamen", + "icon": "dishes:lettuceseed", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:lettuceseed", + "title": "Salatsamen", + "link_recipe": false, + "text": "Mit Salatsamen kannst du eine Salatfarm anlegen." + }, + { + "type": "crafting", + "recipe": "dishes:lettuceseed" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzabacon.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzabacon.json new file mode 100644 index 0000000..c533116 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzabacon.json @@ -0,0 +1,18 @@ +{ + "name": "Pizza Bacon", + "icon": "dishes:pizzabacon", + "category": "dishes:italian", + "pages": [ + { + "type": "spotlight", + "item": "dishes:pizzabacon", + "title": "Pizza Bacon", + "link_recipe": false, + "text": "Eine Pizza mit Bacon." + }, + { + "type": "crafting", + "recipe": "dishes:pizzabacon" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzabox.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzabox.json new file mode 100644 index 0000000..678f9bd --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzabox.json @@ -0,0 +1,18 @@ +{ + "name": "Pizzabox", + "icon": "dishes:pizzabox", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:pizzabox", + "title": "Pizzabox", + "link_recipe": false, + "text": "An empty pizzabox :(" + }, + { + "type": "crafting", + "recipe": "dishes:pizzabox" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzaham.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzaham.json new file mode 100644 index 0000000..a4084aa --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzaham.json @@ -0,0 +1,18 @@ +{ + "name": "Pizza Schinken", + "icon": "dishes:pizzaham", + "category": "dishes:italian", + "pages": [ + { + "type": "spotlight", + "item": "dishes:pizzaham", + "title": "Pizza Schinken", + "link_recipe": false, + "text": "Eine Pizza mit Schinken, yummy!" + }, + { + "type": "crafting", + "recipe": "dishes:pizzaham" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzasalami.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzasalami.json new file mode 100644 index 0000000..5ef280f --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzasalami.json @@ -0,0 +1,18 @@ +{ + "name": "Pizza Salami", + "icon": "dishes:pizzasalami", + "category": "dishes:italian", + "pages": [ + { + "type": "spotlight", + "item": "dishes:pizzasalami", + "title": "Pizza Salami", + "link_recipe": false, + "text": "Die klassische Pizza." + }, + { + "type": "crafting", + "recipe": "dishes:pizzasalami" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzatuna.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzatuna.json new file mode 100644 index 0000000..ceb7b47 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/pizzatuna.json @@ -0,0 +1,18 @@ +{ + "name": "Pizza Tuhnfisch", + "icon": "dishes:pizzatuna", + "category": "dishes:italian", + "pages": [ + { + "type": "spotlight", + "item": "dishes:pizzatuna", + "title": "Pizza Tuhnfisch", + "link_recipe": false, + "text": "Eine Pizza mit Tuhnfisch lol" + }, + { + "type": "crafting", + "recipe": "dishes:pizzatuna" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/plate.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/plate.json new file mode 100644 index 0000000..2acd159 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/plate.json @@ -0,0 +1,18 @@ +{ + "name": "Teller", + "icon": "dishes:plate", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:plate", + "title": "Teller", + "link_recipe": false, + "text": "Ein Teller." + }, + { + "type": "crafting", + "recipe": "dishes:plate" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/potato_slice.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/potato_slice.json new file mode 100644 index 0000000..bd49ca6 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/potato_slice.json @@ -0,0 +1,18 @@ +{ + "name": "Kartoffelscheibe", + "icon": "dishes:potato_slice", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:potato_slice", + "title": "Kartoffelscheibe", + "link_recipe": false, + "text": "Ein Stück einer Kartoffel." + }, + { + "type": "crafting", + "recipe": "dishes:potato_slice" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/potatoeswithcurdcheese.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/potatoeswithcurdcheese.json new file mode 100644 index 0000000..74331bd --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/potatoeswithcurdcheese.json @@ -0,0 +1,18 @@ +{ + "name": "Kartoffeln mit Quark", + "icon": "dishes:potatoeswithcurdcheese", + "category": "dishes:german", + "pages": [ + { + "type": "spotlight", + "item": "dishes:potatoeswithcurdcheese", + "title": "Kartoffeln mit Quark", + "link_recipe": false, + "text": "Sehr leckeres deutsches Essen." + }, + { + "type": "crafting", + "recipe": "dishes:potatoeswithcurdcheese" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_bacon.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_bacon.json new file mode 100644 index 0000000..1c13a0b --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_bacon.json @@ -0,0 +1,18 @@ +{ + "name": "Roher Speck", + "icon": "dishes:raw_bacon", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:raw_bacon", + "title": "Roher Speck", + "link_recipe": false, + "text": "Rohen Speck kann man kochen, worauf Speck entsteht." + }, + { + "type": "crafting", + "recipe": "dishes:raw_bacon" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_fries.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_fries.json new file mode 100644 index 0000000..588b1e4 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_fries.json @@ -0,0 +1,18 @@ +{ + "name": "Rohe Pommes", + "icon": "dishes:raw_fries", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:raw_fries", + "title": "Rohe Pommes", + "link_recipe": false, + "text": "Ein Kartoffelstück mit Salz. Man kann daraus im Ofen Pommes herstellen." + }, + { + "type": "crafting", + "recipe": "dishes:raw_fries" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_spaghetti.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_spaghetti.json new file mode 100644 index 0000000..b2b7704 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/raw_spaghetti.json @@ -0,0 +1,18 @@ +{ + "name": "Rohe Spaghetti", + "icon": "dishes:raw_spaghetti", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:raw_spaghetti", + "title": "Rohe Spaghetti", + "link_recipe": false, + "text": "Rohe Variante der Spaghetti." + }, + { + "type": "crafting", + "recipe": "dishes:raw_spaghetti" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salami.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salami.json new file mode 100644 index 0000000..920e7bf --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salami.json @@ -0,0 +1,22 @@ +{ + "name": "Salami", + "icon": "dishes:salami", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:salami", + "title": "Salami", + "link_recipe": false, + "text": "Salami ist eine Art Wurst, die auch als Salzwurst bezeichnet wird. Man kann sie aus Schweine- und Rindfleisch herstellen." + }, + { + "type": "crafting", + "recipe": "dishes:salami_pig" + }, + { + "type": "crafting", + "recipe": "dishes:salami_cow" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salt.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salt.json new file mode 100644 index 0000000..fccac2d --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salt.json @@ -0,0 +1,18 @@ +{ + "name": "Salz", + "icon": "dishes:salt", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:salt", + "title": "Sals", + "link_recipe": false, + "text": "Mit Salz kann viele Gerichte herstellen." + }, + { + "type": "smelting", + "recipe": "dishes:salt_smelting" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salt_ore.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salt_ore.json new file mode 100644 index 0000000..2173414 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/salt_ore.json @@ -0,0 +1,18 @@ +{ + "name": "Salzerz", + "icon": "dishes:salt_ore", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:salt_ore", + "title": "Salzerz", + "link_recipe": false, + "text": "Die Quelle von Salz." + }, + { + "type": "smelting", + "recipe": "dishes:salt_smelting" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/schnitzel.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/schnitzel.json new file mode 100644 index 0000000..87685e3 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/schnitzel.json @@ -0,0 +1,18 @@ +{ + "name": "Schnitzel", + "icon": "dishes:schnitzel", + "category": "dishes:german", + "pages": [ + { + "type": "spotlight", + "item": "dishes:schnitzel", + "title": "Schnitzel", + "link_recipe": false, + "text": "Lecker, lecker..." + }, + { + "type": "crafting", + "recipe": "dishes:schnitzel" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/spaghetti.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/spaghetti.json new file mode 100644 index 0000000..de36de1 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/spaghetti.json @@ -0,0 +1,18 @@ +{ + "name": "Spaghetti", + "icon": "dishes:salt", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:spaghetti", + "title": "Spaghetti", + "link_recipe": false, + "text": "Spaghetti sind Nudeln und können zur Herstellung von Spaghetti Bolognese verwendet werden." + }, + { + "type": "smelting", + "recipe": "dishes:spaghetti_smelting" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/spaghetti_bolognese.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/spaghetti_bolognese.json new file mode 100644 index 0000000..096a32b --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/spaghetti_bolognese.json @@ -0,0 +1,18 @@ +{ + "name": "Spaghetti Bolognese", + "icon": "dishes:spaghetti_bolognese", + "category": "dishes:italian", + "pages": [ + { + "type": "spotlight", + "item": "dishes:spaghetti_bolognese", + "title": "Spaghetti Bolognese", + "link_recipe": false, + "text": "Wer liebt Spaghetti nicht?" + }, + { + "type": "crafting", + "recipe": "dishes:spaghetti_bolognese" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/steak.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/steak.json new file mode 100644 index 0000000..6f965c3 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/steak.json @@ -0,0 +1,18 @@ +{ + "name": "Steak", + "icon": "dishes:steak", + "category": "dishes:american", + "pages": [ + { + "type": "spotlight", + "item": "dishes:steak", + "title": "Steak", + "link_recipe": false, + "text": "Ein sehr berühmtes Gericht." + }, + { + "type": "crafting", + "recipe": "dishes:steak" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tinypotatoeswithcurdcheese.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tinypotatoeswithcurdcheese.json new file mode 100644 index 0000000..7f8a50f --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tinypotatoeswithcurdcheese.json @@ -0,0 +1,18 @@ +{ + "name": "Tiny Potatoes mit Quark", + "icon": "dishes:tinypotatoeswithcurdcheese", + "category": "dishes:german", + "pages": [ + { + "type": "spotlight", + "item": "dishes:tinypotatoeswithcurdcheese", + "title": "Tiny Potatoes mit Quark", + "link_recipe": false, + "text": "OMG! Es ist TINY POTATO OMG! #TATERGANG! - Das Rezept funktioniert nur mit der Lil Tater Mod!" + }, + { + "type": "crafting", + "recipe": "dishes:tinypotatoeswithcurdcheese" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tomato.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tomato.json new file mode 100644 index 0000000..eb52e11 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tomato.json @@ -0,0 +1,18 @@ +{ + "name": "Tomate", + "icon": "dishes:tomato", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:tomato", + "title": "Tomate", + "link_recipe": false, + "text": "Eine Tomate ist eine rote Frucht, die für viele Rezepte verwendet wird. Sie ist in Dörfern zu finden." + }, + { + "type": "crafting", + "recipe": "dishes:tomatoseed" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tomatoseed.json b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tomatoseed.json new file mode 100644 index 0000000..ac8d177 --- /dev/null +++ b/src/main/resources/data/dishes/patchouli_books/cooking_guide/de_de/entries/cooking_guide/tomatoseed.json @@ -0,0 +1,18 @@ +{ + "name": "Tomatensamen", + "icon": "dishes:tomatoseed", + "category": "dishes:general", + "pages": [ + { + "type": "spotlight", + "item": "dishes:tomatoseed", + "title": "Tomatensamen", + "link_recipe": false, + "text": "Mit Tomatensamen kannst du eine Tomatenfarm anlegen." + }, + { + "type": "crafting", + "recipe": "dishes:tomatoseed" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index f0b60a4..290850b 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "id": "dishes", - "version": "1.0.0", + "version": "1.0.1", "name": "Delicious Dishes", "description": "Adds many cool new dishes with 3d models! Originally created for ModFest 1.16",