From de187847d7b5112ad433ca824ea6963a97f8669f Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Sat, 27 Apr 2019 18:51:04 +1000 Subject: [PATCH] recipes/resources: add resource recipes --- data/recipes/resources/caterium_ore.json | 7 +++++++ data/recipes/resources/coal.json | 7 +++++++ data/recipes/resources/copper_ore.json | 7 +++++++ data/recipes/resources/crude_oil.json | 7 +++++++ data/recipes/resources/iron_ore.json | 7 +++++++ 5 files changed, 35 insertions(+) create mode 100644 data/recipes/resources/caterium_ore.json create mode 100644 data/recipes/resources/coal.json create mode 100644 data/recipes/resources/copper_ore.json create mode 100644 data/recipes/resources/crude_oil.json create mode 100644 data/recipes/resources/iron_ore.json diff --git a/data/recipes/resources/caterium_ore.json b/data/recipes/resources/caterium_ore.json new file mode 100644 index 0000000..2451501 --- /dev/null +++ b/data/recipes/resources/caterium_ore.json @@ -0,0 +1,7 @@ +[ + { + "input": { }, + "output": { "caterium_ore": 1 }, + "machine": "miner" + } +] diff --git a/data/recipes/resources/coal.json b/data/recipes/resources/coal.json new file mode 100644 index 0000000..ae606c9 --- /dev/null +++ b/data/recipes/resources/coal.json @@ -0,0 +1,7 @@ +[ + { + "input": { }, + "output": { "coal": 1 }, + "machine": "miner" + } +] diff --git a/data/recipes/resources/copper_ore.json b/data/recipes/resources/copper_ore.json new file mode 100644 index 0000000..b8c58ca --- /dev/null +++ b/data/recipes/resources/copper_ore.json @@ -0,0 +1,7 @@ +[ + { + "input": { }, + "output": { "copper_ore": 1 }, + "machine": "miner" + } +] diff --git a/data/recipes/resources/crude_oil.json b/data/recipes/resources/crude_oil.json new file mode 100644 index 0000000..264c665 --- /dev/null +++ b/data/recipes/resources/crude_oil.json @@ -0,0 +1,7 @@ +[ + { + "input": { }, + "output": { "crude_oil": 1 }, + "machine": "oil_pump" + } +] diff --git a/data/recipes/resources/iron_ore.json b/data/recipes/resources/iron_ore.json new file mode 100644 index 0000000..982d91b --- /dev/null +++ b/data/recipes/resources/iron_ore.json @@ -0,0 +1,7 @@ +[ + { + "input": { }, + "output": { "iron_ore": 1 }, + "machine": "miner" + } +]