recipes: add sulfur derived explosives

This commit is contained in:
Danny Robson 2019-07-07 15:35:51 +10:00
parent 2b4d0be835
commit 55e836950f
4 changed files with 103 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{
"type": [
"component"
],
"machine": "assembler",
"recipes": [
{
"input": {
"iron_plate": 3,
"iron_rod": 1,
"wire": 15,
"cable": 2
},
"output": {
"beacon": 1
},
"crafting_time": 8
},
{
"input": {
"steel_beam": 1,
"steel_pipe": 4,
"crystal_oscillator": 1
},
"output": {
"beacon": 5
},
"crafting_time": 32,
"requires": "alternative_beacon"
}
]
}

View File

@ -0,0 +1,29 @@
{
"type": [
"component"
],
"machine": "assembler",
"recipes": [
{
"input": {
"coal": 1,
"sulfur": 2
},
"output": {
"black_power": 1
},
"crafting_time": 8
},
{
"input": {
"compacted_coal": 1,
"sulfur": 2
},
"output": {
"black_power": 4
},
"crafting_time": 16,
"requires": "alternative_black_powder"
}
]
}

View File

@ -0,0 +1,31 @@
{
"type": [
"component"
],
"machine": "manufacturer",
"recipes": [
{
"input": {
"black_powder": 5,
"steel_pipe": 5,
"beacon": 1
},
"output": {
"nobelisk": 1
},
"crafting_time": 20
},
{
"input": {
"black_powder": 10,
"steel_pipe": 10,
"crystal_oscillator": 1
},
"output": {
"nobelisk": 3
},
"crafting_time": 40,
"requires": "alternative_nobelisk"
}
]
}

View File

@ -0,0 +1,11 @@
{
"type": [ "resource" ],
"machine": "miner",
"recipes":
[
{
"input": { },
"output": { "sulfur": 1 }
}
]
}