diff --git a/data/recipes/items/components/ai_limiter.json b/data/recipes/items/components/ai_limiter.json index e50202e..87c4746 100644 --- a/data/recipes/items/components/ai_limiter.json +++ b/data/recipes/items/components/ai_limiter.json @@ -7,7 +7,7 @@ "recipes": [ { "input": { - "circuit_board": 1, + "circuit_board": 2, "quickwire": 18 }, "output": { diff --git a/data/recipes/items/components/alclad_aluminum_sheet.json b/data/recipes/items/components/alclad_aluminum_sheet.json index b56607e..131de80 100644 --- a/data/recipes/items/components/alclad_aluminum_sheet.json +++ b/data/recipes/items/components/alclad_aluminum_sheet.json @@ -6,13 +6,14 @@ "recipes": [ { "input": { - "aluminum_ingot": 12, + "aluminum_ingot": 3, "copper_ingot": 2 }, "output": { "alclad_aluminum_sheet": 3 }, - "crafting_time": 12 + "crafting_time": 12, + "clicks": 3 } ] } diff --git a/data/recipes/items/components/aluminum_ingot.json b/data/recipes/items/components/aluminum_ingot.json index f72d545..d368c19 100644 --- a/data/recipes/items/components/aluminum_ingot.json +++ b/data/recipes/items/components/aluminum_ingot.json @@ -13,7 +13,8 @@ "output": { "aluminum_ingot": 2 }, - "crafting_time": 4 + "crafting_time": 4, + "clicks": 4 } ] } diff --git a/data/recipes/items/components/biomass.json b/data/recipes/items/components/biomass.json new file mode 100644 index 0000000..b463089 --- /dev/null +++ b/data/recipes/items/components/biomass.json @@ -0,0 +1,44 @@ +{ + "type": [ + "component" + ], + "machine": ["constructor", "_craft_bench"], + "recipes": [ + { + "input": { + "leaves": 10 + }, + "output": { + "biomass": 6 + }, + "crafting_time": 4 + }, + { + "input": { + "wood": 5 + }, + "output": { + "biomass": 25 + }, + "crafting_Time": 4 + }, + { + "input": { + "mycelia": 10 + }, + "output": { + "biomass": 10 + }, + "crafting_Time": 4 + }, + { + "input": { + "alien_carapace": 1 + }, + "output": { + "biomass": 100 + }, + "crafting_Time": 4 + } + ] +} diff --git a/data/recipes/items/components/circuit_board.json b/data/recipes/items/components/circuit_board.json index 5ea2c6b..153168c 100644 --- a/data/recipes/items/components/circuit_board.json +++ b/data/recipes/items/components/circuit_board.json @@ -11,7 +11,7 @@ "plastic": 6 }, "output": { - "circuit_board": 1 + "circuit_board": 2 }, "crafting_time": 12, "clicks": 3, diff --git a/data/recipes/items/components/computer.json b/data/recipes/items/components/computer.json index 07b0dbd..a4501bd 100644 --- a/data/recipes/items/components/computer.json +++ b/data/recipes/items/components/computer.json @@ -7,7 +7,7 @@ "recipes": [ { "input": { - "circuit_board": 5, + "circuit_board": 10, "cable": 12, "plastic": 18, "screw": 60 diff --git a/data/recipes/items/components/modular_frame.json b/data/recipes/items/components/modular_frame.json index fa61a3d..e092db5 100644 --- a/data/recipes/items/components/modular_frame.json +++ b/data/recipes/items/components/modular_frame.json @@ -8,7 +8,7 @@ { "input": { "reinforced_iron_plate": 3, - "iron_rod": 3 + "iron_rod": 6 }, "output": { "modular_frame": 1 diff --git a/data/recipes/items/components/steel_ingot.json b/data/recipes/items/components/steel_ingot.json index 3dfa306..8ddd33a 100644 --- a/data/recipes/items/components/steel_ingot.json +++ b/data/recipes/items/components/steel_ingot.json @@ -11,7 +11,7 @@ "coal": 3 }, "output": { - "steel_ingot": 2 + "steel_ingot": 3 }, "crafting_time": 4, "clicks": 4, diff --git a/data/recipes/items/components/uranium_cell.json b/data/recipes/items/components/uranium_cell.json index 19218b2..7bfd29e 100644 --- a/data/recipes/items/components/uranium_cell.json +++ b/data/recipes/items/components/uranium_cell.json @@ -2,7 +2,7 @@ "type": [ "component" ], - "machine": "constructor", + "machine": "assembler", "recipes": [ { "input": { diff --git a/data/recipes/items/resources/silica.json b/data/recipes/items/resources/silica.json index bcd4af6..24dc710 100644 --- a/data/recipes/items/resources/silica.json +++ b/data/recipes/items/resources/silica.json @@ -4,8 +4,14 @@ "recipes": [ { - "input": { }, - "output": { "silica": 1 } + "input": { + "quart": 2 + }, + "output": { + "silica": 3 + }, + "crafting_time": 4, + "clicks": 1 } ] } diff --git a/data/recipes/machine/production/craft_bench.json b/data/recipes/machine/production/craft_bench.json new file mode 100644 index 0000000..b2cb203 --- /dev/null +++ b/data/recipes/machine/production/craft_bench.json @@ -0,0 +1,24 @@ +{ + "type": [ + "machine" + ], + "machine": "craft_bench", + "requires": "hub_upgrade_2", + "power_usage": 4, + "size": [ + 6, + 3, + 3 + ], + "recipes": [ + { + "input": { + "iron_plate": 3, + "iron_rod": 2 + }, + "output": { + "craft_bench": 1 + } + } + ] +} diff --git a/data/recipes/machine/production/portable_miner.json b/data/recipes/machine/production/portable_miner.json index 849b27a..cc5b737 100644 --- a/data/recipes/machine/production/portable_miner.json +++ b/data/recipes/machine/production/portable_miner.json @@ -14,7 +14,8 @@ "output": { "portable_miner": 1 }, - "requires": "hub_upgrade_1" + "requires": "hub_upgrade_1", + "clicks": 10 } ] }