From c1e88a8f26be20ecddcd021ef1fc12d0ce6fea6f Mon Sep 17 00:00:00 2001 From: whizzball1 Date: Wed, 21 Aug 2013 09:01:32 -0700 Subject: [PATCH] Created Thermal Expansion Barebones, includes only crafting table and furnace-able items. Contains Copper Gear, Electrum Blend, Electrum Ingot, Machine Frame, Pneumatic Servo, Redstone Conductance Coil, Redstone Reception Coil, Redstone Transmission Coil, Tin Gear. --- html/data/thermal_expansion.json | 43 ++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 html/data/thermal_expansion.json diff --git a/html/data/thermal_expansion.json b/html/data/thermal_expansion.json new file mode 100644 index 000000000..87ba332b5 --- /dev/null +++ b/html/data/thermal_expansion.json @@ -0,0 +1,43 @@ +{ + "name": "Thermal Expansion", + "description": "Crafting Recipes from Thermal Expansion, by King Lemming and the CoFH team", + "recipes": [ + { + "output": [[1, "Copper Gear"]], + "input": [[1, "Cobblestone Gear"], [4, "Copper Ingot"]], + "tools": ["Crafting Table"] + }, { + "output": [[1, "Electrum Blend"]], + "input": [[1, "Gold Dust"], [1, "Silver Dust"]], + "tools": [] + }, { + "output": [[1, "Electrum Ingot"]], + "input": [[1, "Electrum Dust"], [125, "milli-coal"]], + "tools": ["Furnace"] + }, { + "output": [[1, "Machine Frame"]], + "input": [[4, "Iron Ingot"], [4, "Glass"], [1, "Gold Ingot"]], + "tools": ["Crafting Table"] + }, { + "output": [[1, "Pneumatic Servo"]], + "input": [[2, "Glass"], [2, "Iron Ingot"], [1, "Redstone"]], + "tools": ["Crafting Table"] + }, { + "output": [[1, "Redstone Conductance Coil"]], + "input": [[2, "Redstone"], [1, "Electrum Ingot"]], + "tools": ["Crafting Table"] + }, { + "output": [[1, "Redstone Reception Coil"]], + "input": [[2, "Redstone"], [1, "Gold Ingot"]], + "tools": ["Crafting Table"] + }, { + "output": [[1, "Redstone Transmission Coil"]], + "input": [[2, "Redstone"], [1, "Silver Ingot"]], + "tools": ["Crafting Table"] + }, { + "output": [[1, "Tin Gear"]], + "input": [[4, "Tin Ingot"], [1, "Cobblestone Gear"]], + "tools": ["Crafting Table"] + } + ] +}