diff --git a/data/recipes/items/components/crystal_oscillator.json b/data/recipes/items/components/crystal_oscillator.json new file mode 100644 index 0000000..693db48 --- /dev/null +++ b/data/recipes/items/components/crystal_oscillator.json @@ -0,0 +1,21 @@ +{ + "type": [ + "component" + ], + "machine": "manufacturer", + "stack_size": 100, + "recipes": [ + { + "input": { + "quartz_crystal": 10, + "cable": 14, + "reinforced_iron_plate": 4 + }, + "output": { + "crystal_oscillator": 1 + }, + "crafting_time": 32, + "clicks": 8 + } + ] +} diff --git a/data/recipes/items/components/quartz_crystal.json b/data/recipes/items/components/quartz_crystal.json new file mode 100644 index 0000000..eeffc81 --- /dev/null +++ b/data/recipes/items/components/quartz_crystal.json @@ -0,0 +1,18 @@ +{ + "type": [ + "component" + ], + "machine": "constructor", + "recipes": [ + { + "input": { + "quartz": 2 + }, + "output": { + "quartz_crystal": 1 + }, + "crafting_time": 4, + "clicks": 1 + } + ] +} \ No newline at end of file diff --git a/data/recipes/items/resources/quartz.json b/data/recipes/items/resources/quartz.json new file mode 100644 index 0000000..23189fe --- /dev/null +++ b/data/recipes/items/resources/quartz.json @@ -0,0 +1,11 @@ +{ + "type": [ "resource" ], + "machine": "miner", + "recipes": + [ + { + "input": { }, + "output": { "quartz": 1 } + } + ] +}