More recipes for assembling machine
This commit is contained in:
parent
cfc9b4af6a
commit
c5694575f7
14 changed files with 135 additions and 3 deletions
6
src/main/resources/data/c/tags/items/emerald_plate.json
Normal file
6
src/main/resources/data/c/tags/items/emerald_plate.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"techreborn:emerald_plate"
|
||||
]
|
||||
}
|
|
@ -7,7 +7,8 @@
|
|||
"item": "techreborn:silicon_plate"
|
||||
},
|
||||
{
|
||||
"tag": "c:electrum_ingot"
|
||||
"tag": "c:electrum_plate",
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "techreborn:assembling_machine",
|
||||
"power": 20,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:industrial_circuit"
|
||||
},
|
||||
{
|
||||
"item": "techreborn:data_storage_core"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:data_storage_chip"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "techreborn:assembling_machine",
|
||||
"power": 20,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:electronic_circuit"
|
||||
},
|
||||
{
|
||||
"tag": "c:peridot_plate",
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:data_storage_core"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "techreborn:assembling_machine",
|
||||
"power": 20,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:electronic_circuit"
|
||||
},
|
||||
{
|
||||
"tag": "c:emerald_plate"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:data_storage_core"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -7,7 +7,7 @@
|
|||
"item": "techreborn:silicon_plate"
|
||||
},
|
||||
{
|
||||
"item": "techreborn:insulated_copper_cable",
|
||||
"tag": "c:copper_plate",
|
||||
"count": 2
|
||||
}
|
||||
],
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "techreborn:assembling_machine",
|
||||
"power": 20,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:industrial_circuit"
|
||||
},
|
||||
{
|
||||
"item": "techreborn:lapotron_crystal"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:energy_flow_chip"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "techreborn:assembling_machine",
|
||||
"power": 20,
|
||||
"time": 200,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:advanced_circuit"
|
||||
},
|
||||
{
|
||||
"tag": "c:platinum_plate"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:industrial_circuit"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "techreborn:assembling_machine",
|
||||
"power": 20,
|
||||
"time": 700,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "techreborn:solid_fuel_generator"
|
||||
},
|
||||
{
|
||||
"item": "techreborn:magnalium_plate"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "techreborn:wind_mill"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -10,7 +10,7 @@
|
|||
"tag": "c:aluminum_plate"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:ink_sac"
|
||||
"item": "minecraft:black_dye"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:glass_pane"
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "techreborn:extractor",
|
||||
"power": 10,
|
||||
"time": 300,
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:ink_sac"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "minecraft:black_dye",
|
||||
"count": 2
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue