Added Crafting Recipe for Computer, Disk Platter, Microchip, PCB and Transistor
This commit is contained in:
29
src/main/resources/data/oc2/recipes/computer.json
Normal file
29
src/main/resources/data/oc2/recipes/computer.json
Normal 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
|
||||
}
|
||||
}
|
||||
16
src/main/resources/data/oc2/recipes/disk_platter.json
Normal file
16
src/main/resources/data/oc2/recipes/disk_platter.json
Normal 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"
|
||||
}
|
||||
}
|
||||
22
src/main/resources/data/oc2/recipes/microchip.json
Normal file
22
src/main/resources/data/oc2/recipes/microchip.json
Normal 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"
|
||||
}
|
||||
}
|
||||
27
src/main/resources/data/oc2/recipes/pcb.json
Normal file
27
src/main/resources/data/oc2/recipes/pcb.json
Normal 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"
|
||||
}
|
||||
}
|
||||
26
src/main/resources/data/oc2/recipes/transistor.json
Normal file
26
src/main/resources/data/oc2/recipes/transistor.json
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user