Fixed a few issues with certain resource files, german translations

This commit is contained in:
Motschen
2020-06-16 21:09:36 +02:00
parent 041137dcfe
commit 3110be2b0f
45 changed files with 804 additions and 3 deletions

View File

@@ -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"
}

View File

@@ -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"
}

View File

@@ -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"
}
]
}

View File

@@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "dishes:pizzabox"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View File

@@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "dishes:plate"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View File

@@ -44,7 +44,7 @@
}
}
],
"name": "dishes:tomatoseed"
"name": "dishes:tomato"
}
],
"conditions": [

View File

@@ -0,0 +1,5 @@
{
"name": "Amerikanische Gerichte",
"description": "Essen aus den USA",
"icon": "dishes:flag_america"
}

View File

@@ -0,0 +1,5 @@
{
"name": "Britische Gerichte",
"description": "Essen aus dem Vereinigten Königreich",
"icon": "dishes:flag_britain"
}

View File

@@ -0,0 +1,5 @@
{
"name": "Generell",
"description": "Zutaten und Untersetzer für Gerichte",
"icon": "dishes:plate"
}

View File

@@ -0,0 +1,5 @@
{
"name": "Deutsche Gerichte",
"description": "Essen aus Deutschland",
"icon": "dishes:flag_germany"
}

View File

@@ -0,0 +1,5 @@
{
"name": "Italienische Gerichte",
"description": "Essen aus Italien",
"icon": "dishes:flag_italy"
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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"
}
]
}

View File

@@ -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",