From 962fdbc633edecaf2f5dae412db047a7cf36b33c Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Fri, 3 May 2019 11:27:50 +1000 Subject: [PATCH] items/quartz: add quartz related recipes --- .../items/components/crystal_oscillator.json | 21 +++++++++++++++++++ .../items/components/quartz_crystal.json | 18 ++++++++++++++++ data/recipes/items/resources/quartz.json | 11 ++++++++++ 3 files changed, 50 insertions(+) create mode 100644 data/recipes/items/components/crystal_oscillator.json create mode 100644 data/recipes/items/components/quartz_crystal.json create mode 100644 data/recipes/items/resources/quartz.json 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 } + } + ] +}