added crafting recipes for first items

This commit is contained in:
steev 2023-11-06 10:08:56 +01:00
parent e9ae0b06e6
commit 6c53e00e27
3 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"MCM",
"CRC",
"MCM"
],
"key": {
"M": {
"item": "minecraft:iron_ingot"
},
"C": {
"item": "minecraft:copper_ingot"
},
"R": {
"item": "minecraft:redstone"
}
},
"result": {
"item": "brewcraft:heater_body",
"count": 1
}
}

View File

@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"HCH",
"PRP",
"HCH"
],
"key": {
"H": {
"item": "brewcraft:heater_body"
},
"C": {
"item": "minecraft:copper_ingot"
},
"R": {
"item": "minecraft:redstone"
},
"P": {
"item": "brewcraft:pressed_iron"
}
},
"result": {
"item": "brewcraft:heater_element",
"count": 1
}
}

View File

@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"III",
"ICI",
"III"
],
"key": {
"I": {
"item": "minecraft:iron_ingot"
},
"C": {
"item": "minecraft:copper_ingot"
}
},
"result": {
"item": "brewcraft:mashine_body",
"count": 1
}
}