Added Crafting Recipe for Computer, Disk Platter, Microchip, PCB and Transistor

This commit is contained in:
lucsoft
2021-01-10 23:20:41 +01:00
parent adda06fd1c
commit d7e373f8a4
5 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"IMI",
"BCB",
"IPI"
],
"key": {
"I": {
"item": "minecraft:gold_ingot"
},
"C": {
"item": "minecraft:chest"
},
"M": {
"item": "oc2:microchip"
},
"P": {
"item": "oc2:pcb"
},
"B": {
"item": "minecraft:iron_bars"
}
},
"result": {
"item": "oc2:computer",
"count": 1
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" N ",
"N N",
" N "
],
"key": {
"N": {
"item": "minecraft:iron_nugget"
}
},
"result": {
"item": "oc2:disk_platter"
}
}

View File

@@ -0,0 +1,22 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"III",
"RTR",
"III"
],
"key": {
"I": {
"item": "minecraft:gold_nugget"
},
"T": {
"item": "oc2:transistor"
},
"R": {
"item": "minecraft:redstone"
}
},
"result": {
"item": "oc2:microchip"
}
}

View File

@@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:gold_nugget"
},
[
{
"item": "minecraft:slime_ball"
},
{
"item": "minecraft:honey_bottle"
}
],
[
{
"item": "minecraft:kelp"
},
{
"item": "minecraft:green_dye"
}
]
],
"result": {
"item": "oc2:pcb"
}
}

View File

@@ -0,0 +1,26 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"III",
"GPG",
" R "
],
"key": {
"I": {
"item": "minecraft:iron_ingot"
},
"G": {
"item": "minecraft:gold_nugget"
},
"R": {
"item": "minecraft:redstone"
},
"P": {
"item": "minecraft:paper"
}
},
"result": {
"item": "oc2:transistor",
"count": 4
}
}