From b8919851e63c45a2e188184ff0a4859c09a6a827 Mon Sep 17 00:00:00 2001 From: "kepler155c@gmail.com" Date: Sun, 24 Feb 2019 06:59:30 -0500 Subject: [PATCH] finish recipe books --- builder/apis/turtle.lua | 4 +- farms/apis/craft.lua | 320 + {core/apis/turtle => farms/apis}/crafting.lua | 2 +- {core/apis/turtle => farms/apis}/level.lua | 0 farms/etc/recipes/minecraft.db | 52 + farms/superTreefarm.lua | 2 +- farms/treefarm.lua | 4 +- ignore/Music.lua | 2 +- milo/.package | 1 + milo/apis/craft2.lua | 2 +- recipeBook/etc/names/appliedenergistics2.json | 592 -- recipeBook/etc/names/computercraft.json | 20 - recipeBook/etc/names/enderio.json | 226 - recipeBook/etc/names/exnihiloadscensio.json | 35 - recipeBook/etc/names/extrautils2.json | 70 - recipeBook/etc/names/ironchest.json | 22 - recipeBook/etc/names/rftools.json | 37 - recipeBook/etc/names/storagedrawers.json | 33 - recipeBook/etc/names/tconstruct.json | 36 - recipeBook/etc/recipeBook.db | 20 +- recipeBook/etc/recipes/appliedenergistics2.db | 91 - recipeBook/etc/recipes/botania.db | 455 -- recipeBook/etc/recipes/computercraft.db | 91 - recipeBook/etc/recipes/enderio.db | 548 -- recipeBook/etc/recipes/exnihilo.db | 47 - recipeBook/etc/recipes/extrautils2.db | 172 - recipeBook/etc/recipes/ironchest.db | 118 - recipeBook/etc/recipes/mekanism.db | 62 - {core => recipeBook}/etc/recipes/minecraft.db | 14 + recipeBook/etc/recipes/mysticalagriculture.db | 182 - recipeBook/etc/recipes/rftools.db | 130 - recipeBook/etc/recipes/skyblockinfinity.db | 5267 ----------------- recipeBook/etc/recipes/storagedrawers.db | 34 - recipeBook/etc/recipes/tconstruct.db | 40 - {core/apis/turtle => storage/apis}/craft.lua | 0 storage/chestManager.lua | 2 +- 36 files changed, 400 insertions(+), 8333 deletions(-) create mode 100644 farms/apis/craft.lua rename {core/apis/turtle => farms/apis}/crafting.lua (97%) rename {core/apis/turtle => farms/apis}/level.lua (100%) create mode 100644 farms/etc/recipes/minecraft.db delete mode 100644 recipeBook/etc/names/appliedenergistics2.json delete mode 100644 recipeBook/etc/names/computercraft.json delete mode 100644 recipeBook/etc/names/enderio.json delete mode 100644 recipeBook/etc/names/exnihiloadscensio.json delete mode 100644 recipeBook/etc/names/extrautils2.json delete mode 100644 recipeBook/etc/names/ironchest.json delete mode 100644 recipeBook/etc/names/rftools.json delete mode 100644 recipeBook/etc/names/storagedrawers.json delete mode 100644 recipeBook/etc/names/tconstruct.json delete mode 100644 recipeBook/etc/recipes/appliedenergistics2.db delete mode 100644 recipeBook/etc/recipes/botania.db delete mode 100644 recipeBook/etc/recipes/computercraft.db delete mode 100644 recipeBook/etc/recipes/enderio.db delete mode 100644 recipeBook/etc/recipes/exnihilo.db delete mode 100644 recipeBook/etc/recipes/extrautils2.db delete mode 100644 recipeBook/etc/recipes/ironchest.db delete mode 100644 recipeBook/etc/recipes/mekanism.db rename {core => recipeBook}/etc/recipes/minecraft.db (99%) delete mode 100644 recipeBook/etc/recipes/mysticalagriculture.db delete mode 100644 recipeBook/etc/recipes/rftools.db delete mode 100644 recipeBook/etc/recipes/skyblockinfinity.db delete mode 100644 recipeBook/etc/recipes/storagedrawers.db delete mode 100644 recipeBook/etc/recipes/tconstruct.db rename {core/apis/turtle => storage/apis}/craft.lua (100%) diff --git a/builder/apis/turtle.lua b/builder/apis/turtle.lua index 4d5901e..f21363b 100644 --- a/builder/apis/turtle.lua +++ b/builder/apis/turtle.lua @@ -119,7 +119,7 @@ function supplyPage:enable(builder) self.statusBar:setValue('fuel', string.format('Fuel: %dk', math.floor(turtle.getFuelLevel() / 1024))) - Event.addNamedTimer('supplyRefresh', 6, true, function() + self.timer = Event.onInterval(6, function() if self.enabled then self.builder:autocraft(self.builder:getSupplies()) self:refresh() @@ -131,7 +131,7 @@ function supplyPage:enable(builder) end function supplyPage:disable() - Event.cancelNamedTimer('supplyRefresh') + Event.off(self.timer) end function supplyPage:setSupplies(supplies) diff --git a/farms/apis/craft.lua b/farms/apis/craft.lua new file mode 100644 index 0000000..40f5d32 --- /dev/null +++ b/farms/apis/craft.lua @@ -0,0 +1,320 @@ +local itemDB = require('core.itemDB') +local Util = require('util') + +local fs = _G.fs +local turtle = _G.turtle + +local RECIPES_DIR = 'packages/farms/etc/recipes' +local USER_RECIPES = 'usr/config/recipes.db' + +local Craft = { } + +local function clearGrid(inventoryAdapter) + for i = 1, 16 do + local count = turtle.getItemCount(i) + if count > 0 then + inventoryAdapter:insert(i, count) + if turtle.getItemCount(i) ~= 0 then + -- inventory is possibly full + return false + end + end + end + return true +end + +local function splitKey(key) + local t = Util.split(key, '(.-):') + local item = { } + if #t[#t] > 8 then + item.nbtHash = table.remove(t) + end + item.damage = tonumber(table.remove(t)) + item.name = table.concat(t, ':') + return item +end + +function Craft.getItemCount(items, item) + if type(item) == 'string' then + item = splitKey(item) + end + + local count = 0 + for _,v in pairs(items) do + if v.name == item.name and + (not item.damage or v.damage == item.damage) and + v.nbtHash == item.nbtHash then + if item.damage then + return v.count + end + count = count + v.count + end + end + return count +end + +local function turtleCraft(recipe, qty, inventoryAdapter) + if not clearGrid(inventoryAdapter) then + return false + end + + for k,v in pairs(recipe.ingredients) do + local item = splitKey(v) + local provideQty = qty + --[[ + Turtles can only craft 1 item at a time when using a tool. + + if recipe.craftingTools and recipe.craftingTools[k] then + provideQty = 1 + end + ]]-- + inventoryAdapter:provide(item, provideQty, k) + if turtle.getItemCount(k) == 0 then -- ~= qty then + -- FIX: ingredients cannot be stacked +--debug('failed ' .. v .. ' - ' .. provideQty) + return false + end + end + + return turtle.craft() +end + +function Craft.loadRecipes() + Craft.recipes = { } + + Util.merge(Craft.recipes, (Util.readTable(fs.combine(RECIPES_DIR, 'minecraft.db')) or { }).recipes) + + local config = Util.readTable('usr/config/recipeBooks.db') or { } + for _, book in pairs(config) do + local recipeFile = Util.readTable(book) + Util.merge(Craft.recipes, recipeFile.recipes) + end + + local recipes = Util.readTable(USER_RECIPES) or { } + Util.merge(Craft.recipes, recipes) +end + +function Craft.sumIngredients(recipe) + -- produces { ['minecraft:planks:0'] = 8 } + local t = { } + for _,item in pairs(recipe.ingredients) do + t[item] = (t[item] or 0) + 1 + end +-- need a check for crafting tool + return t +end + +function Craft.craftRecipe(recipe, count, inventoryAdapter) + if type(recipe) == 'string' then + recipe = Craft.recipes[recipe] + if not recipe then + return 0, 'No recipe' + end + end + + local items = inventoryAdapter:listItems() + if not items then + return 0, 'Inventory changed' + end + + count = math.ceil(count / recipe.count) + local maxCount = recipe.maxCount or math.floor(64 / recipe.count) + + for key,icount in pairs(Craft.sumIngredients(recipe)) do + local itemCount = Craft.getItemCount(items, key) + local need = icount * count + if recipe.craftingTools and recipe.craftingTools[key] then + need = 1 + end + maxCount = math.min(maxCount, itemDB:getMaxCount(key)) + if itemCount < need then + local irecipe = Craft.findRecipe(key) + if irecipe then + local iqty = need - itemCount + local crafted = Craft.craftRecipe(irecipe, iqty, inventoryAdapter) + if crafted ~= iqty then + turtle.select(1) + return 0 + end + end + end + end + + local crafted = 0 + repeat + if not turtleCraft(recipe, math.min(count, maxCount), inventoryAdapter) then + turtle.select(1) + break + end + crafted = crafted + math.min(count, maxCount) + count = count - maxCount + until count <= 0 + + clearGrid(inventoryAdapter) + turtle.select(1) + return crafted * recipe.count +end + +local function makeRecipeKey(item) + if type(item) == 'string' then + item = splitKey(item) + end + return table.concat({ item.name, item.damage or 0, item.nbtHash }, ':') +end + +function Craft.findRecipe(key) + if type(key) ~= 'string' then + key = itemDB:makeKey(key) + end + + local item = itemDB:splitKey(key) + if item.damage then + return Craft.recipes[makeRecipeKey(item)] + end + + -- handle cases where the request is like : IC2:reactorVent:* + for rkey,recipe in pairs(Craft.recipes) do + local r = itemDB:splitKey(rkey) + if item.name == r.name and + (not item.nbtHash or r.nbtHash == item.nbtHash) then + return recipe + end + end +end + +-- determine the full list of ingredients needed to craft +-- a quantity of a recipe. +function Craft.getResourceList(inRecipe, items, inCount) + local summed = { } + + local function sumItems(recipe, key, count) + local item = itemDB:splitKey(key) + local summedItem = summed[key] + if not summedItem then + summedItem = Util.shallowCopy(item) + summedItem.recipe = Craft.findRecipe(key) + summedItem.count = Craft.getItemCount(items, item) + summedItem.displayName = itemDB:getName(item) + summedItem.total = 0 + summedItem.need = 0 + summedItem.used = 0 + summed[key] = summedItem + end + local total = count + local used = math.min(summedItem.count, total) + local need = total - used + + if recipe.craftingTools and recipe.craftingTools[key] then + summedItem.total = 1 + if summedItem.count > 0 then + summedItem.used = 1 + summedItem.need = 0 + need = 0 + elseif not summedItem.recipe then + summedItem.need = 1 + need = 1 + else + need = 1 + end + else + summedItem.total = summedItem.total + total + summedItem.count = summedItem.count - used + summedItem.used = summedItem.used + used + if not summedItem.recipe then + summedItem.need = summedItem.need + need + end + end + + if need > 0 and summedItem.recipe then + need = math.ceil(need / summedItem.recipe.count) + for ikey,iqty in pairs(Craft.sumIngredients(summedItem.recipe)) do + sumItems(summedItem.recipe, ikey, math.ceil(need * iqty)) + end + end + end + + inCount = math.ceil(inCount / inRecipe.count) + for ikey,iqty in pairs(Craft.sumIngredients(inRecipe)) do + sumItems(inRecipe, ikey, math.ceil(inCount * iqty)) + end + + return summed +end + +function Craft.getResourceList4(inRecipe, items, count) + local summed = Craft.getResourceList(inRecipe, items, count) +-- filter down to just raw materials + return Util.filter(summed, function(a) return a.used > 0 or a.need > 0 end) +end + +-- given a certain quantity, return how many of those can be crafted +function Craft.getCraftableAmount(inRecipe, count, items, missing) + local function sumItems(recipe, summedItems, count) + local canCraft = 0 + + for _ = 1, count do + for _,item in pairs(recipe.ingredients) do + local summedItem = summedItems[item] or Craft.getItemCount(items, item) + + local irecipe = Craft.findRecipe(item) + if irecipe and summedItem <= 0 then + summedItem = summedItem + sumItems(irecipe, summedItems, 1) + end + if summedItem <= 0 then + if missing and not irecipe then + missing.name = item + end + return canCraft + end + if not recipe.craftingTools or not recipe.craftingTools[item] then + summedItems[item] = summedItem - 1 + end + end + canCraft = canCraft + recipe.count + end + + return canCraft + end + + return sumItems(inRecipe, { }, math.ceil(count / inRecipe.count)) +end + +function Craft.canCraft(item, count, items) + return Craft.getCraftableAmount(Craft.recipes[item], count, items) == count +end + +function Craft.setRecipes(recipes) + Craft.recipes = recipes +end + +function Craft.getCraftableAmountTest() + local results = { } + Craft.setRecipes(Util.readTable('usr/etc/recipes.db')) + + local items = { + { name = 'minecraft:planks', damage = 0, count = 5 }, + { name = 'minecraft:log', damage = 0, count = 2 }, + } + results[1] = { item = 'chest', expected = 1, + got = Craft.getCraftableAmount(Craft.recipes['minecraft:chest:0'], 2, items) } + + items = { + { name = 'minecraft:log', damage = 0, count = 1 }, + { name = 'minecraft:coal', damage = 1, count = 1 }, + } + results[2] = { item = 'torch', expected = 4, + got = Craft.getCraftableAmount(Craft.recipes['minecraft:torch:0'], 4, items) } + + return results +end + +function Craft.craftRecipeTest(name, count) + local ChestAdapter = require('core.chestAdapter18') + local chestAdapter = ChestAdapter({ wrapSide = 'top', direction = 'down' }) + Craft.setRecipes(Util.readTable('usr/etc/recipes.db')) + return { Craft.craftRecipe(Craft.recipes[name], count, chestAdapter) } +end + +Craft.loadRecipes() + +return Craft diff --git a/core/apis/turtle/crafting.lua b/farms/apis/crafting.lua similarity index 97% rename from core/apis/turtle/crafting.lua rename to farms/apis/crafting.lua index f3af51d..07725a5 100644 --- a/core/apis/turtle/crafting.lua +++ b/farms/apis/crafting.lua @@ -1,5 +1,5 @@ local Adapter = require('core.inventoryAdapter') -local Craft = require('core.turtle.craft') +local Craft = require('farms.craft') local turtle = _G.turtle diff --git a/core/apis/turtle/level.lua b/farms/apis/level.lua similarity index 100% rename from core/apis/turtle/level.lua rename to farms/apis/level.lua diff --git a/farms/etc/recipes/minecraft.db b/farms/etc/recipes/minecraft.db new file mode 100644 index 0000000..985def3 --- /dev/null +++ b/farms/etc/recipes/minecraft.db @@ -0,0 +1,52 @@ +{ + name = "Minecraft", + version = "", + recipes = { + [ "minecraft:furnace:0" ] = { + count = 1, + ingredients = { + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + [ 9 ] = "minecraft:cobblestone:0", + [ 10 ] = "minecraft:cobblestone:0", + [ 11 ] = "minecraft:cobblestone:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 7 ] = "minecraft:cobblestone:0", + }, + }, + [ "minecraft:torch:0" ] = { + ingredients = { + "minecraft:coal:1", + [ 5 ] = "minecraft:stick:0", + }, + count = 4, + }, + [ "minecraft:stick:0" ] = { + ingredients = { + "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + }, + count = 4, + }, + [ "minecraft:planks:0" ] = { + count = 4, + ingredients = { + [ 6 ] = "minecraft:log:0", + }, + }, + [ "minecraft:chest:0" ] = { + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 9 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:planks:0", + [ 11 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 7 ] = "minecraft:planks:0", + }, + count = 1, + }, + }, +} \ No newline at end of file diff --git a/farms/superTreefarm.lua b/farms/superTreefarm.lua index fdf8ed2..c6d8862 100644 --- a/farms/superTreefarm.lua +++ b/farms/superTreefarm.lua @@ -758,7 +758,7 @@ local tasks = { local s, m = turtle.run(function() turtle.reset() - require('core.turtle.crafting') + require('farms.crafting') --turtle.addFeatures('core.crafting') turtle.set({ attackPolicy = 'attack', diff --git a/farms/treefarm.lua b/farms/treefarm.lua index 04dbf79..f8f018c 100644 --- a/farms/treefarm.lua +++ b/farms/treefarm.lua @@ -751,8 +751,8 @@ local tasks = { local s, m = turtle.run(function() - require('core.turtle.crafting') - require('core.turtle.level') + require('farms.crafting') + require('farms.level') --turtle.addFeatures('level', 'core.crafting') turtle.set({ attackPolicy = "attack" }) diff --git a/ignore/Music.lua b/ignore/Music.lua index b69fd29..2af2b86 100644 --- a/ignore/Music.lua +++ b/ignore/Music.lua @@ -202,7 +202,7 @@ function page:play(onOff) self:updateStationName() radio.playAudio() - Event.addNamedTimer('songTimer', 180, false, function() + Event.onInterval(180, function() if self.playing then self:seek() self:play(true) diff --git a/milo/.package b/milo/.package index d3f8b6e..0c444cb 100644 --- a/milo/.package +++ b/milo/.package @@ -1,6 +1,7 @@ { required = { 'core', + 'recipeBook', }, title = 'Milo: Advanced inventory management', repository = 'kepler155c/opus-apps/{{OPUS_BRANCH}}/milo', diff --git a/milo/apis/craft2.lua b/milo/apis/craft2.lua index 36008a3..bba15d9 100644 --- a/milo/apis/craft2.lua +++ b/milo/apis/craft2.lua @@ -10,7 +10,7 @@ local Craft = { STATUS_ERROR = 'error', STATUS_SUCCESS = 'success', - RECIPES_DIR = 'packages/core/etc/recipes', + RECIPES_DIR = 'packages/recipeBook/etc/recipes', USER_DIR = 'usr/etc/recipes', USER_RECIPES = 'usr/config/recipes.db', MACHINE_LOOKUP = 'usr/config/machine_crafting.db', diff --git a/recipeBook/etc/names/appliedenergistics2.json b/recipeBook/etc/names/appliedenergistics2.json deleted file mode 100644 index 97afeff..0000000 --- a/recipeBook/etc/names/appliedenergistics2.json +++ /dev/null @@ -1,592 +0,0 @@ -{ - "smooth_sky_stone_block": { - "name": "Sky Stone Block" - }, - "fluix_block": { - "name": "Fluix Block" - }, - "charger": { - "name": "Charger" - }, - "network_tool": { - "name": "Network Tool" - }, - "wireless_terminal": { - "name": [ - "Wireless Terminal" - ] - }, - "certus_quartz_cutting_knife": { - "name": "Certus Quartz Cutting Knife" - }, - "storage_cell_16k": { - "name": "16k ME Storage Cell" - }, - "grindstone": { - "name": "Quartz Grindstone" - }, - "material": { - "name": [ - "Certus Quartz Crystal", - "Charged Certus Quartz Crystal", - "Certus Quartz Dust", - "Nether Quartz Dust", - "", - "", - "", - "Fluix Crystal", - "Fluix Dust", - "Fluix Pearl", - "Pure Certus Quartz Crystal", - "Pure Nether Quartz Crystal", - "Pure Fluix Crystal", - "Inscriber Calculation Press", - "", - "", - "Printed Calculation Circuit", - "Printed Engineering Circuit", - "Printed Logic Circuit", - "", - "Printed Silicon", - "", - "Logic Processor", - "Calculation Processor", - "Engineering Processor", - "", - "", - "", - "Advanced Card", - "", - "Acceleration Card", - "", - "2³ Spatial Component", - "16³ Spatial Component", - "128³ Spatial Component", - "1k ME Storage Component", - "4k ME Storage Component", - "16k ME Storage Component", - "64k ME Storage Component", - "ME Storage Housing", - "", - "Wireless Receiver", - "Wireless Booster", - "Formation Core", - "Annihilation Core", - "", - "", - "", - "", - "", - "", - "", - "Blank Pattern" - ] - }, - "controller": { - "name": "ME Controller" - }, - "quartz_glass": { - "name": "Quartz Glass" - }, - "quartz_growth_accelerator": { - "name": "Crystal Growth Accelerator" - }, - "energy_acceptor": { - "name": "Energy Acceptor" - }, - "part": { - "name": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "ME Glass Cable - Fluix", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "Cable Anchor", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "Quartz Fiber", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "Illuminated Panel", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "ME Storage Bus", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "ME Annihilation Plane", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "ME Pattern Terminal", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "ME Crafting Terminal", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "ME Terminal", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "ME Interface" - ] - }, - "dense_energy_cell": { - "name": "Dense Energy Cell" - }, - "drive": { - "name": "ME Drive" - }, - "crafting_unit": { - "name": "Crafting Unit" - }, - "interface": { - "name": "ME Interface" - }, - "energy_cell": { - "name": "Energy Cell" - }, - "wireless_access_point": { - "name": "ME Wireless Access Point" - }, - "condenser": { - "name": "Matter Condenser" - }, - "nether_quartz_wrench": { - "name": "Nether Quartz Wrench" - }, - "crank": { - "name": "Wooden Crank" - }, - "molecular_assembler": { - "name": "Molecular Assembler" - }, - "chest": { - "name": "ME Chest" - }, - "security_station": { - "name": "ME Security Terminal" - }, - "sky_stone_block": { - "name": "Sky Stone" - }, - "crafting_storage_64k": { - "name": "64k Crafting Storage" - }, - "inscriber": { - "name": "Inscriber" - }, - "crystal_seed": { - "name": [ - "Nether Quartz Seed" - ] - } -} \ No newline at end of file diff --git a/recipeBook/etc/names/computercraft.json b/recipeBook/etc/names/computercraft.json deleted file mode 100644 index 64362b6..0000000 --- a/recipeBook/etc/names/computercraft.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "peripheral": { - "name": [ - "Disk Drive", - "", - "", - "", - "Advanced Monitor" - ] - }, - "advanced_modem": { - "name": "Ender Modem" - }, - "pocket_computer": { - "name": [ - "", - "Advanced Pocket Computer" - ] - } -} \ No newline at end of file diff --git a/recipeBook/etc/names/enderio.json b/recipeBook/etc/names/enderio.json deleted file mode 100644 index cd2deb5..0000000 --- a/recipeBook/etc/names/enderio.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "blockSolarPanel": { - "name": [ - "Photovoltaic Cell", - "Advanced Photovoltaic Cell", - "Vibrant Photovoltaic Cell" - ] - }, - "blockFusedQuartz": { - "name": [ - "Fused Quartz", - "Quite Clear Glass", - "Enlightened Fused Quartz", - "", - "Dark Fused Quartz", - "Dark Clear Glass" - ] - }, - "blockVacuumChest": { - "name": [ - "Vacuum Chest" - ] - }, - "itemExtractSpeedUpgrade": { - "name": "Item Conduit Speed Upgrade" - }, - "blockPainter": { - "name": "Painting Machine" - }, - "blockTransceiver": { - "name": "Dimensional Transceiver" - }, - "darkSteel_chestplate": { - "name": "Dark Plate" - }, - "blockSliceAndSplice": { - "name": "Slice'N'Splice" - }, - "itemConduitFacade": { - "name": "Conduit Facade" - }, - "itemBasicFilterUpgrade": { - "name": [ - "Basic Item Filter", - "Advanced Item Filter", - "Counting Item Filter" - ] - }, - "blockExperienceObelisk": { - "name": "Experience Obelisk" - }, - "itemLiquidConduit": { - "name": [ - "Fluid Conduit", - "Pressurized Fluid Conduit", - "Ender Fluid Conduit" - ] - }, - "blockFarmStation": { - "name": "Farming Station" - }, - "blockEndermanSkull": { - "name": [ - "Enderman Head", - "", - "Tormented Enderman Head" - ] - }, - "blockAlloySmelter": { - "name": "Alloy Smelter" - }, - "itemRedstoneConduit": { - "name": "Redstone Conduit" - }, - "itemPowerConduit": { - "name": [ - "Energy Conduit", - "Enhanced Energy Conduit", - "Ender Energy Conduit" - ] - }, - "itemTravelStaff": { - "name": "Staff of Traveling" - }, - "blockSagMill": { - "name": [ - "SAG Mill (Configured)" - ] - }, - "itemItemConduit": { - "name": "Item Conduit" - }, - "itemConduitProbe": { - "name": "Conduit Probe" - }, - "itemPowderIngot": { - "name": [ - "", - "", - "", - "", - "", - "", - "Enderium Base" - ] - }, - "blockBuffer": { - "name": [ - "Item Buffer" - ] - }, - "blockPoweredSpawner": { - "name": "Powered Spawner" - }, - "itemBasicCapacitor": { - "name": [ - "Basic Capacitor", - "Double-Layer Capacitor", - "Octadic Capacitor", - "Modified Power Holding Device" - ] - }, - "blockCapBank": { - "name": [ - "", - "Basic Capacitor Bank", - "Capacitor Bank", - "Vibrant Capacitor Bank" - ] - }, - "blockTank": { - "name": [ - "Fluid Tank (Configured)" - ] - }, - "blockKillerJoe": { - "name": [ - "Killer Joe" - ] - }, - "blockWirelessCharger": { - "name": "Wireless Charger" - }, - "darkSteel_sword": { - "name": [ - "The Ender" - ] - }, - "blockVat": { - "name": [ - "The Vat" - ] - }, - "itemBrokenSpawner": { - "name": "Broken Spawner" - }, - "blockSoulBinder": { - "name": "Soul Binder" - }, - "itemMachinePart": { - "name": [ - "Machine Chassis", - "Basic Gear" - ] - }, - "itemYetaWrench": { - "name": "Yeta Wrench" - }, - "itemAlloy": { - "name": [ - "Electrical Steel", - "Energetic Alloy", - "Vibrant Alloy", - "Redstone Alloy", - "Conductive Iron", - "Pulsating Iron", - "Dark Steel", - "Soularium" - ] - }, - "itemXpTransfer": { - "name": "Experience Rod" - }, - "itemFrankenSkull": { - "name": [ - "Zombie Electrode", - "Z-Logic Controller", - "Frank'N'Zombie", - "Ender Resonator", - "Sentient Ender", - "Skeletal Contractor" - ] - }, - "blockReservoir": { - "name": "Reservoir" - }, - "itemSoulVessel": { - "name": [ - "Soul Vial", - "Soul Vial" - ] - }, - "itemMaterial": { - "name": [ - "Silicon", - "Conduit Binder", - "Binder Composite", - "Pulsating Iron Nugget", - "Vibrant Alloy Nugget", - "Pulsating Crystal", - "Vibrant Crystal", - "", - "Ender Crystal", - "Enticing Crystal", - "", - "", - "", - "Grains of the End", - "", - "Precient Crystal", - "", - "", - "Plant clippings and trimmings" - ] - } -} \ No newline at end of file diff --git a/recipeBook/etc/names/exnihiloadscensio.json b/recipeBook/etc/names/exnihiloadscensio.json deleted file mode 100644 index f3bda42..0000000 --- a/recipeBook/etc/names/exnihiloadscensio.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "blockDust": { - "name": "Dust" - }, - "blockBarrel1": { - "name": "Stone Barrel" - }, - "hammerStone": { - "name": "Stone Hammer" - }, - "itemMaterial": { - "name": [ - "", - "Porcelain Clay", - "Silkworm", - "Ancient Spores", - "Grass Seeds" - ] - }, - "blockCrucible": { - "name": [ - "Unfired Crucible", - "Crucible" - ] - }, - "itemMesh": { - "name": [ - "", - "String Mesh", - "Flint Stiffened Mesh", - "Iron Stiffened Mesh", - "Diamond Stiffened Mesh" - ] - }, -} \ No newline at end of file diff --git a/recipeBook/etc/names/extrautils2.json b/recipeBook/etc/names/extrautils2.json deleted file mode 100644 index 7289a19..0000000 --- a/recipeBook/etc/names/extrautils2.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "resonator": { - "name": "Resonator" - }, - "endershard": { - "name": "Ender Shard" - }, - "glasscutter": { - "name": "Glass Cutter" - }, - "decorativesolid": { - "name": [ - "", - "", - "Polished Stone", - "Stoneburnt" - ] - }, - "passivegenerator": { - "name": [ - "", - "", - "", - "Water Mill", - "", - "", - "", - "Manual Mill" - ] - }, - "pipe": { - "name": "Transfer Pipe" - }, - "user": { - "name": "Mechanical User" - }, - "trashcan": { - "name": "Trash Can" - }, - "ingredients": { - "name": [ - "Resonating Redstone Crystal", - "Redstone Gear", - "Eye of Redstone", - "", - "", - "", - "Upgrade Speed", - "", - "", - "Upgrade Base", - "Drop of Evil" - ] - }, - "drum": { - "name": [ - "", - "Iron Drum" - ] - }, - "grocket": { - "name": [ - "", - "", - "Transfer Node (Fluids)", - "", - "Retrieval Node (Fluids)" - ] - } -} \ No newline at end of file diff --git a/recipeBook/etc/names/ironchest.json b/recipeBook/etc/names/ironchest.json deleted file mode 100644 index b31f542..0000000 --- a/recipeBook/etc/names/ironchest.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "goldDiamondUpgrade": { - "name": "Gold to Diamond Chest Upgrade" - }, - "BlockIronChest": { - "name": [ - "Iron Chest", - "Gold Chest", - "Diamond Chest", - "", - "", - "Crystal Chest", - "Obsidian Chest" - ] - }, - "woodIronUpgrade": { - "name": "Wood to Iron Chest Upgrade" - }, - "ironGoldUpgrade": { - "name": "Iron to Gold Chest Upgrade" - } -} \ No newline at end of file diff --git a/recipeBook/etc/names/rftools.json b/recipeBook/etc/names/rftools.json deleted file mode 100644 index 6dc6196..0000000 --- a/recipeBook/etc/names/rftools.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "crafter1": { - "name": "Crafter Tier 1" - }, - "modular_storage": { - "name": "Modular Storage" - }, - "crafter3": { - "name": "Crafter Tier 3" - }, - "machine_frame": { - "name": "Machine Frame" - }, - "storage_module": { - "name": [ - "Storage Module Tier 1", - "Storage Module Tier 2", - "Storage Module Tier 3", - "", - "", - "", - "Remote Storage Module" - ] - }, - "crafter2": { - "name": "Crafter Tier 2" - }, - "machine_base": { - "name": "Machine Base" - }, - "remote_storage": { - "name": "Remote Storage" - }, - "timer_block": { - "name": "Timer" - } -} \ No newline at end of file diff --git a/recipeBook/etc/names/storagedrawers.json b/recipeBook/etc/names/storagedrawers.json deleted file mode 100644 index e4df70d..0000000 --- a/recipeBook/etc/names/storagedrawers.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "compDrawers": { - "name": "Compacting Drawer" - }, - "upgradeTemplate": { - "name": "Upgrade Template" - }, - "controller": { - "name": "Drawer Controller" - }, - "basicDrawers": { - "name": [ - "Basic Drawer", - "", - "Basic Drawers 2x2" - ] - }, - "upgradeVoid": { - "name": "Void Upgrade" - }, - "upgradeStorage": { - "name": [ - "", - "", - "", - "", - "Storage Upgrade (V)" - ] - }, - "controllerSlave": { - "name": "Controller Slave" - } -} \ No newline at end of file diff --git a/recipeBook/etc/names/tconstruct.json b/recipeBook/etc/names/tconstruct.json deleted file mode 100644 index 496f224..0000000 --- a/recipeBook/etc/names/tconstruct.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "materials": { - "name": [ - "Seared Brick", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "Necrotic Bone" - ] - }, - "pattern": { - "name": "Blank Pattern" - }, - "cast": { - "name": "Blank Cast" - }, - "casting": { - "name": "Casting Table" - }, - "soil": { - "name": "Grout" - } -} \ No newline at end of file diff --git a/recipeBook/etc/recipeBook.db b/recipeBook/etc/recipeBook.db index d18ef02..ed60c0a 100644 --- a/recipeBook/etc/recipeBook.db +++ b/recipeBook/etc/recipeBook.db @@ -1,20 +1,8 @@ { { - url = "https://pastebin.com/raw/dMCDeCie", - version = "MC 1.8+", - localName = "appliedenergistics2", - name = "Applied Energistics", - }, - { - url = "https://pastebin.com/raw/Y6bQMUeE", - version = "MC 1.8+", - localName = "botania", - name = "Botania", - }, - { - url = "https://pastebin.com/raw/YPWgiFFW", - version = "MC 1.8+", - localName = "computercraft", - name = "Computercraft", + url = "https://raw.githubusercontent.com/kepler155c/opus-recipes/master/switchcraft", + version = "MC 1.12", + localName = "switchcraft", + name = "Switchcraft Server", }, } \ No newline at end of file diff --git a/recipeBook/etc/recipes/appliedenergistics2.db b/recipeBook/etc/recipes/appliedenergistics2.db deleted file mode 100644 index 2e8075c..0000000 --- a/recipeBook/etc/recipes/appliedenergistics2.db +++ /dev/null @@ -1,91 +0,0 @@ -{ - name = "Applied Energistics", - version = "MC 1.8+", - recipes = { - [ "appliedenergistics2:quartz_glass:0" ] = { - ingredients = { - "appliedenergistics2:material:2", - "minecraft:glass:0", - "appliedenergistics2:material:2", - [ 9 ] = "appliedenergistics2:material:2", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "appliedenergistics2:material:2", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "appliedenergistics2:material:2", - [ 7 ] = "minecraft:glass:0", - }, - count = 4, - }, - [ "appliedenergistics2:material:43" ] = { - ingredients = { - "appliedenergistics2:material:0", - "appliedenergistics2:material:8", - "appliedenergistics2:material:22", - }, - count = 2, - }, - [ "appliedenergistics2:material:44" ] = { - ingredients = { - [ 5 ] = "minecraft:quartz:0", - [ 6 ] = "appliedenergistics2:material:8", - [ 7 ] = "appliedenergistics2:material:22", - }, - count = 2, - }, - [ "appliedenergistics2:material:35" ] = { - ingredients = { - "minecraft:redstone:0", - "appliedenergistics2:material:0", - "minecraft:redstone:0", - [ 5 ] = "appliedenergistics2:material:0", - [ 6 ] = "appliedenergistics2:material:22", - [ 7 ] = "appliedenergistics2:material:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "appliedenergistics2:material:0", - [ 11 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "appliedenergistics2:interface:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:glass:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:material:44", - [ 7 ] = "appliedenergistics2:material:43", - }, - count = 1, - }, - [ "appliedenergistics2:material:36" ] = { - ingredients = { - "minecraft:redstone:0", - "appliedenergistics2:material:23", - "minecraft:redstone:0", - [ 5 ] = "appliedenergistics2:material:35", - [ 6 ] = "appliedenergistics2:quartz_glass:0", - [ 7 ] = "appliedenergistics2:material:35", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "appliedenergistics2:material:35", - [ 11 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "appliedenergistics2:material:37" ] = { - ingredients = { - "minecraft:glowstone_dust:0", - "appliedenergistics2:material:24", - "minecraft:glowstone_dust:0", - [ 5 ] = "appliedenergistics2:material:36", - [ 6 ] = "appliedenergistics2:quartz_glass:0", - [ 7 ] = "appliedenergistics2:material:36", - [ 9 ] = "minecraft:glowstone_dust:0", - [ 10 ] = "appliedenergistics2:material:36", - [ 11 ] = "minecraft:glowstone_dust:0", - }, - count = 1, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/botania.db b/recipeBook/etc/recipes/botania.db deleted file mode 100644 index aacf623..0000000 --- a/recipeBook/etc/recipes/botania.db +++ /dev/null @@ -1,455 +0,0 @@ -{ - name = "Botania", - version = "MC 1.8+", - recipes = { - [ "botania:vial:0" ] = { - ingredients = { - "botania:manaGlass:0", - [ 6 ] = "botania:manaGlass:0", - [ 3 ] = "botania:manaGlass:0", - }, - count = 3, - }, - [ "botania:lens:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "botania:manaResource:0", - [ 2 ] = "botania:manaResource:0", - [ 5 ] = "botania:manaResource:0", - [ 6 ] = "minecraft:glass_pane:0", - [ 7 ] = "botania:manaResource:0", - }, - maxCount = 1, - }, - [ "botania:brewery:0" ] = { - ingredients = { - "botania:livingrock:0", - "minecraft:brewing_stand:0", - "botania:livingrock:0", - [ 9 ] = "botania:livingrock:0", - [ 10 ] = "botania:storage:0", - [ 11 ] = "botania:livingrock:0", - [ 5 ] = "botania:livingrock:0", - [ 6 ] = "botania:rune:8", - [ 7 ] = "botania:livingrock:0", - }, - count = 1, - }, - [ "botania:spark:0" ] = { - ingredients = { - [ 10 ] = "botania:petal:*", - [ 2 ] = "botania:petal:*", - [ 5 ] = "minecraft:blaze_powder:0", - [ 6 ] = "minecraft:gold_nugget:0", - [ 7 ] = "minecraft:blaze_powder:0", - }, - count = 1, - }, - [ "botania:petal:10" ] = { - ingredients = { - "botania:flower:10", - }, - count = 12, - }, - [ "botania:vial:1" ] = { - ingredients = { - "botania:elfGlass:0", - [ 6 ] = "botania:elfGlass:0", - [ 3 ] = "botania:elfGlass:0", - }, - count = 3, - }, - [ "botania:manaTablet:0" ] = { - ingredients = { - "botania:livingrock:0", - "botania:livingrock:0", - "botania:livingrock:0", - [ 9 ] = "botania:livingrock:0", - [ 10 ] = "botania:livingrock:0", - [ 11 ] = "botania:livingrock:0", - [ 5 ] = "botania:livingrock:0", - [ 6 ] = "botania:manaResource:1", - [ 7 ] = "botania:livingrock:0", - }, - count = 1, - }, - [ "botania:hourglass:0" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "botania:manaGlass:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "botania:manaGlass:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "botania:manaResource:0", - [ 7 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "botania:pylon:2" ] = { - ingredients = { - [ 10 ] = "botania:manaResource:8", - [ 2 ] = "botania:manaResource:8", - [ 5 ] = "botania:manaResource:7", - [ 6 ] = "botania:pylon:0", - [ 7 ] = "botania:manaResource:7", - }, - count = 1, - }, - [ "botania:terraPlate:0" ] = { - ingredients = { - "minecraft:lapis_block:0", - "minecraft:lapis_block:0", - "minecraft:lapis_block:0", - [ 9 ] = "botania:rune:2", - [ 10 ] = "botania:rune:8", - [ 11 ] = "botania:rune:3", - [ 5 ] = "botania:rune:0", - [ 6 ] = "botania:storage:0", - [ 7 ] = "botania:rune:1", - }, - count = 1, - }, - [ "botania:livingwood:5" ] = { - ingredients = { - "botania:livingwood:0", - "minecraft:glowstone_dust:0", - }, - count = 1, - }, - [ "botania:pylon:1" ] = { - ingredients = { - [ 10 ] = "minecraft:ender_eye:0", - [ 2 ] = "botania:manaResource:18", - [ 5 ] = "botania:manaResource:18", - [ 6 ] = "botania:pylon:0", - [ 7 ] = "botania:manaResource:18", - }, - count = 1, - }, - [ "botania:petal:11" ] = { - ingredients = { - "botania:flower:11", - }, - count = 2, - }, - [ "botania:conjurationCatalyst:0" ] = { - ingredients = { - "botania:livingrock:0", - "botania:manaResource:8", - "botania:livingrock:0", - [ 9 ] = "botania:livingrock:0", - [ 10 ] = "botania:manaResource:7", - [ 11 ] = "botania:livingrock:0", - [ 5 ] = "botania:manaResource:7", - [ 6 ] = "botania:alchemyCatalyst:0", - [ 7 ] = "botania:manaResource:7", - }, - count = 1, - }, - [ "botania:petal:15" ] = { - ingredients = { - "botania:flower:15", - }, - count = 2, - }, - [ "botania:sparkUpgrade:2" ] = { - ingredients = { - "botania:manaResource:8", - "botania:manaResource:0", - [ 5 ] = "botania:rune:2", - }, - count = 1, - }, - [ "botania:petal:8" ] = { - ingredients = { - "botania:doubleFlower2:0", - }, - count = 4, - }, - [ "botania:petal:6" ] = { - ingredients = { - "botania:flower:6", - }, - count = 10, - }, - [ "botania:petal:9" ] = { - ingredients = { - "botania:flower:9", - }, - count = 10, - }, - [ "botania:turntable:0" ] = { - ingredients = { - "botania:livingwood:0", - "botania:livingwood:0", - "botania:livingwood:0", - [ 9 ] = "botania:livingwood:0", - [ 10 ] = "botania:livingwood:0", - [ 11 ] = "botania:livingwood:0", - [ 5 ] = "botania:livingwood:0", - [ 6 ] = "minecraft:sticky_piston:0", - [ 7 ] = "botania:livingwood:0", - }, - count = 1, - }, - [ "botania:alfheimPortal:0" ] = { - ingredients = { - "botania:livingwood:0", - "botania:manaResource:18", - "botania:livingwood:0", - [ 9 ] = "botania:livingwood:0", - [ 10 ] = "botania:manaResource:18", - [ 11 ] = "botania:livingwood:0", - [ 5 ] = "botania:livingwood:0", - [ 6 ] = "botania:manaResource:18", - [ 7 ] = "botania:livingwood:0", - }, - count = 1, - }, - [ "botania:fertilizer:0" ] = { - ingredients = { - "minecraft:dye:15", - "minecraft:dye:1", - "minecraft:dye:1", - [ 5 ] = "minecraft:dye:11", - [ 6 ] = "minecraft:dye:11", - }, - count = 1, - }, - [ "botania:storage:0" ] = { - ingredients = { - "botania:manaResource:0", - "botania:manaResource:0", - "botania:manaResource:0", - [ 9 ] = "botania:manaResource:0", - [ 10 ] = "botania:manaResource:0", - [ 11 ] = "botania:manaResource:0", - [ 5 ] = "botania:manaResource:0", - [ 6 ] = "botania:manaResource:0", - [ 7 ] = "botania:manaResource:0", - }, - count = 1, - }, - [ "botania:openCrate:0" ] = { - ingredients = { - "botania:livingwood:1", - "botania:livingwood:1", - "botania:livingwood:1", - [ 7 ] = "botania:livingwood:1", - [ 9 ] = "botania:livingwood:1", - [ 11 ] = "botania:livingwood:1", - [ 5 ] = "botania:livingwood:1", - }, - count = 1, - }, - [ "botania:petal:14" ] = { - ingredients = { - "botania:flower:14", - }, - count = 2, - }, - [ "botania:twigWand:0:6605f7f28f36765a5acc434fa1820653" ] = { - count = 1, - ingredients = { - [ 9 ] = "botania:manaResource:3", - [ 2 ] = "botania:petal:6", - [ 3 ] = "botania:manaResource:3", - [ 6 ] = "botania:manaResource:3", - [ 7 ] = "botania:petal:6", - }, - maxCount = 1, - }, - [ "botania:petal:4" ] = { - ingredients = { - "botania:flower:4", - }, - count = 2, - }, - [ "botania:sparkUpgrade:0" ] = { - ingredients = { - "botania:manaResource:8", - "botania:manaResource:0", - [ 5 ] = "botania:rune:0", - }, - count = 1, - }, - [ "botania:altar:0" ] = { - ingredients = { - "minecraft:stone_slab:3", - "botania:petal:0", - "minecraft:stone_slab:3", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:cobblestone:0", - }, - count = 1, - }, - [ "botania:petal:1" ] = { - ingredients = { - "botania:flower:1", - }, - count = 2, - }, - [ "botania:petal:3" ] = { - ingredients = { - "botania:flower:3", - }, - count = 2, - }, - [ "botania:petal:5" ] = { - ingredients = { - "botania:flower:5", - }, - count = 12, - }, - [ "botania:spreader:0" ] = { - ingredients = { - "botania:livingwood:0", - "botania:livingwood:0", - "botania:livingwood:0", - [ 9 ] = "botania:livingwood:0", - [ 10 ] = "botania:livingwood:0", - [ 11 ] = "botania:livingwood:0", - [ 5 ] = "botania:livingwood:0", - [ 6 ] = "botania:petal:4", - }, - count = 1, - }, - [ "botania:manaResource:6" ] = { - ingredients = { - "minecraft:tallgrass:1", - "minecraft:redstone:0", - }, - count = 1, - }, - [ "botania:manaResource:3" ] = { - ingredients = { - "botania:livingwood:0", - [ 5 ] = "botania:livingwood:0", - }, - count = 1, - }, - [ "botania:alchemyCatalyst:0" ] = { - ingredients = { - "botania:livingrock:0", - "minecraft:gold_ingot:0", - "botania:livingrock:0", - [ 9 ] = "botania:livingrock:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "botania:livingrock:0", - [ 5 ] = "minecraft:brewing_stand:0", - [ 6 ] = "botania:manaResource:1", - [ 7 ] = "minecraft:brewing_stand:0", - }, - count = 1, - }, - [ "botania:pool:0" ] = { - ingredients = { - "botania:livingrock:0", - [ 7 ] = "botania:livingrock:0", - [ 3 ] = "botania:livingrock:0", - [ 5 ] = "botania:livingrock:0", - [ 6 ] = "botania:livingrock:0", - }, - count = 1, - }, - [ "botania:pylon:0" ] = { - ingredients = { - [ 10 ] = "minecraft:gold_ingot:0", - [ 2 ] = "minecraft:gold_ingot:0", - [ 5 ] = "botania:manaResource:0", - [ 6 ] = "botania:manaResource:2", - [ 7 ] = "botania:manaResource:0", - }, - count = 1, - }, - [ "botania:manaResource:14" ] = { - ingredients = { - [ 10 ] = "botania:manaResource:5", - [ 2 ] = "botania:manaResource:5", - [ 5 ] = "botania:manaResource:5", - [ 6 ] = "botania:manaResource:4", - [ 7 ] = "botania:manaResource:5", - }, - count = 1, - }, - [ "botania:petal:0" ] = { - ingredients = { - "botania:flower:0", - }, - count = 6, - }, - [ "botania:livingwood:1" ] = { - ingredients = { - "botania:livingwood:0", - }, - count = 4, - }, - [ "botania:runeAltar:0" ] = { - ingredients = { - "botania:livingrock:0", - "botania:livingrock:0", - "botania:livingrock:0", - [ 5 ] = "botania:livingrock:0", - [ 6 ] = "botania:manaResource:1", - [ 7 ] = "botania:livingrock:0", - }, - count = 1, - }, - [ "botania:manaResource:18" ] = { - ingredients = { - "botania:manaResource:4", - }, - count = 9, - }, - [ "botania:petal:2" ] = { - ingredients = { - "botania:flower:2", - }, - count = 2, - }, - [ "botania:petal:7" ] = { - ingredients = { - "botania:flower:7", - }, - count = 2, - }, - [ "botania:petal:13" ] = { - ingredients = { - "botania:flower:13", - }, - count = 4, - }, - [ "botania:lens:10" ] = { - count = 1, - ingredients = { - "botania:lens:0", - "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - }, - maxCount = 1, - }, - [ "botania:distributor:0" ] = { - ingredients = { - "botania:livingrock:0", - "botania:livingrock:0", - "botania:livingrock:0", - [ 9 ] = "botania:livingrock:0", - [ 10 ] = "botania:livingrock:0", - [ 11 ] = "botania:livingrock:0", - [ 5 ] = "botania:manaResource:0", - [ 7 ] = "botania:manaResource:0", - }, - count = 1, - }, - [ "botania:petal:12" ] = { - ingredients = { - "botania:flower:12", - }, - count = 2, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/computercraft.db b/recipeBook/etc/recipes/computercraft.db deleted file mode 100644 index 7930ee5..0000000 --- a/recipeBook/etc/recipes/computercraft.db +++ /dev/null @@ -1,91 +0,0 @@ -{ - name = "Computercraft", - version = "MC 1.8+", - recipes = { - [ "computercraft:turtle_advanced:0" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:chest:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "computercraft:computer:16384", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 1, - }, - [ "computercraft:pocket_computer:1" ] = { - count = 1, - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:glass_pane:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:golden_apple:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - maxCount = 1, - }, - [ "computercraft:peripheral:0" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:stone:0", - }, - count = 1, - }, - [ "computercraft:peripheral:4" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:glass_pane:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 4, - }, - [ "computercraft:advanced_modem:0" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:ender_eye:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 1, - }, - [ "computercraft:computer:16384" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:glass_pane:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 1, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/enderio.db b/recipeBook/etc/recipes/enderio.db deleted file mode 100644 index db1448a..0000000 --- a/recipeBook/etc/recipes/enderio.db +++ /dev/null @@ -1,548 +0,0 @@ -{ - name = "EnderIO", - version = "MC 1.8+", - recipes = { - [ "enderio:blockAlloySmelter:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:furnace:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:cauldron:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:furnace:0", - [ 6 ] = "enderio:itemMachinePart:0", - [ 7 ] = "minecraft:furnace:0", - }, - count = 1, - }, - [ "enderio:blockBuffer:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "enderio:itemAlloy:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "enderio:itemAlloy:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "enderio:itemAlloy:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "enderio:itemAlloy:0", - }, - count = 1, - }, - [ "enderio:blockCapBank:3" ] = { - ingredients = { - "enderio:itemAlloy:0", - "enderio:itemBasicCapacitor:2", - "enderio:itemAlloy:0", - [ 9 ] = "enderio:itemAlloy:0", - [ 10 ] = "enderio:itemBasicCapacitor:2", - [ 11 ] = "enderio:itemAlloy:0", - [ 5 ] = "enderio:itemBasicCapacitor:2", - [ 6 ] = "enderio:itemMaterial:6", - [ 7 ] = "enderio:itemBasicCapacitor:2", - }, - count = 1, - }, - [ "enderio:blockExperienceObelisk:0" ] = { - ingredients = { - [ 9 ] = "enderio:itemAlloy:7", - [ 10 ] = "enderio:itemMachinePart:0", - [ 11 ] = "enderio:itemAlloy:7", - [ 2 ] = "enderio:itemXpTransfer:0", - [ 6 ] = "enderio:itemAlloy:7", - }, - count = 1, - }, - [ "enderio:blockFarmStation:0" ] = { - ingredients = { - "enderio:itemAlloy:0", - "minecraft:diamond_hoe:*", - "enderio:itemAlloy:0", - [ 9 ] = "enderio:itemMaterial:5", - [ 10 ] = "enderio:itemFrankenSkull:1", - [ 11 ] = "enderio:itemMaterial:5", - [ 5 ] = "enderio:itemAlloy:0", - [ 6 ] = "enderio:itemMachinePart:0", - [ 7 ] = "enderio:itemAlloy:0", - }, - count = 1, - }, - [ "enderio:blockKillerJoe:0" ] = { - ingredients = { - "enderio:itemAlloy:6", - "enderio:itemAlloy:6", - "enderio:itemAlloy:6", - [ 9 ] = "enderio:blockFusedQuartz:0", - [ 10 ] = "enderio:blockFusedQuartz:0", - [ 11 ] = "enderio:blockFusedQuartz:0", - [ 5 ] = "enderio:blockFusedQuartz:0", - [ 6 ] = "enderio:itemFrankenSkull:2", - [ 7 ] = "enderio:blockFusedQuartz:0", - }, - count = 1, - }, - [ "enderio:blockPainter:0" ] = { - ingredients = { - "minecraft:quartz:0", - "minecraft:diamond:0", - "minecraft:quartz:0", - [ 9 ] = "enderio:itemAlloy:0", - [ 10 ] = "enderio:itemAlloy:0", - [ 11 ] = "enderio:itemAlloy:0", - [ 5 ] = "enderio:itemAlloy:0", - [ 6 ] = "enderio:itemMachinePart:0", - [ 7 ] = "enderio:itemAlloy:0", - }, - count = 1, - }, - [ "enderio:blockReservoir:0" ] = { - ingredients = { - "enderio:blockFusedQuartz:0", - "enderio:blockFusedQuartz:0", - "enderio:blockFusedQuartz:0", - [ 9 ] = "enderio:blockFusedQuartz:0", - [ 10 ] = "enderio:blockFusedQuartz:0", - [ 11 ] = "enderio:blockFusedQuartz:0", - [ 5 ] = "enderio:blockFusedQuartz:0", - [ 6 ] = "minecraft:cauldron:0", - [ 7 ] = "enderio:blockFusedQuartz:0", - }, - count = 4, - }, - [ "enderio:blockSagMill:0" ] = { - ingredients = { - "minecraft:flint:0", - "minecraft:flint:0", - "minecraft:flint:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:piston:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "enderio:itemMachinePart:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "enderio:blockSliceAndSplice:0" ] = { - ingredients = { - "enderio:itemAlloy:7", - "minecraft:skull:0", - "enderio:itemAlloy:7", - [ 9 ] = "enderio:itemAlloy:7", - [ 10 ] = "enderio:itemAlloy:7", - [ 11 ] = "enderio:itemAlloy:7", - [ 5 ] = "minecraft:iron_axe:*", - [ 6 ] = "enderio:itemMachinePart:0", - [ 7 ] = "minecraft:shears:*", - }, - count = 1, - }, - [ "enderio:blockSolarPanel:0" ] = { - ingredients = { - "enderio:itemAlloy:1", - "enderio:blockFusedQuartz:0", - "enderio:itemAlloy:1", - [ 9 ] = "enderio:itemBasicCapacitor:0", - [ 10 ] = "minecraft:daylight_detector:0", - [ 11 ] = "enderio:itemBasicCapacitor:0", - [ 5 ] = "enderio:itemAlloy:2", - [ 6 ] = "enderio:blockFusedQuartz:0", - [ 7 ] = "enderio:itemAlloy:2", - }, - count = 1, - }, - [ "enderio:blockSolarPanel:1" ] = { - ingredients = { - "enderio:itemAlloy:5", - "enderio:blockFusedQuartz:2", - "enderio:itemAlloy:5", - [ 9 ] = "enderio:itemBasicCapacitor:1", - [ 10 ] = "minecraft:daylight_detector:0", - [ 11 ] = "enderio:itemBasicCapacitor:1", - [ 5 ] = "enderio:itemAlloy:2", - [ 6 ] = "enderio:blockFusedQuartz:2", - [ 7 ] = "enderio:itemAlloy:2", - }, - count = 1, - }, - [ "enderio:blockSolarPanel:2" ] = { - ingredients = { - "enderio:itemAlloy:7", - "enderio:blockFusedQuartz:4", - "enderio:itemAlloy:7", - [ 9 ] = "enderio:blockSolarPanel:1", - [ 10 ] = "enderio:blockSolarPanel:1", - [ 11 ] = "enderio:blockSolarPanel:1", - [ 5 ] = "enderio:itemBasicCapacitor:2", - [ 6 ] = "enderio:itemMaterial:8", - [ 7 ] = "enderio:itemBasicCapacitor:2", - }, - count = 1, - }, - [ "enderio:blockSoulBinder:0" ] = { - ingredients = { - "enderio:itemAlloy:7", - "enderio:blockEndermanSkull:0", - "enderio:itemAlloy:7", - [ 9 ] = "enderio:itemAlloy:7", - [ 10 ] = "minecraft:skull:0", - [ 11 ] = "enderio:itemAlloy:7", - [ 5 ] = "minecraft:skull:4", - [ 6 ] = "enderio:itemMachinePart:0", - [ 7 ] = "minecraft:skull:2", - }, - count = 1, - }, - [ "enderio:blockTank:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_bars:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_bars:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_bars:0", - [ 6 ] = "minecraft:glass:0", - [ 7 ] = "minecraft:iron_bars:0", - }, - count = 1, - }, - [ "enderio:blockTransceiver:0" ] = { - ingredients = { - "enderio:itemAlloy:0", - "enderio:itemFrankenSkull:3", - "enderio:itemAlloy:0", - [ 9 ] = "enderio:itemAlloy:0", - [ 10 ] = "enderio:itemBasicCapacitor:2", - [ 11 ] = "enderio:itemAlloy:0", - [ 5 ] = "enderio:blockFusedQuartz:0", - [ 6 ] = "enderio:itemMaterial:8", - [ 7 ] = "enderio:blockFusedQuartz:0", - }, - count = 1, - }, - [ "enderio:blockVacuumChest:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "enderio:itemMaterial:5", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "enderio:blockVat:0" ] = { - ingredients = { - "enderio:itemAlloy:0", - "minecraft:cauldron:0", - "enderio:itemAlloy:0", - [ 9 ] = "enderio:itemAlloy:0", - [ 10 ] = "minecraft:furnace:0", - [ 11 ] = "enderio:itemAlloy:0", - [ 5 ] = "enderio:blockTank:0", - [ 6 ] = "enderio:itemMachinePart:0", - [ 7 ] = "enderio:blockTank:0", - }, - count = 1, - }, - [ "enderio:blockWirelessCharger:0" ] = { - ingredients = { - "enderio:itemAlloy:0", - "enderio:itemAlloy:0", - "enderio:itemAlloy:0", - [ 9 ] = "enderio:itemAlloy:0", - [ 10 ] = "enderio:itemBasicCapacitor:2", - [ 11 ] = "enderio:itemAlloy:0", - [ 5 ] = "enderio:itemAlloy:0", - [ 6 ] = "enderio:itemFrankenSkull:3", - [ 7 ] = "enderio:itemAlloy:0", - }, - count = 1, - }, - [ "enderio:itemBasicCapacitor:2" ] = { - ingredients = { - [ 10 ] = "enderio:itemAlloy:2", - [ 2 ] = "enderio:itemAlloy:2", - [ 5 ] = "enderio:itemBasicCapacitor:1", - [ 6 ] = "minecraft:glowstone:0", - [ 7 ] = "enderio:itemBasicCapacitor:1", - }, - count = 1, - }, - [ "enderio:itemBasicFilterUpgrade:0" ] = { - ingredients = { - [ 10 ] = "minecraft:paper:0", - [ 2 ] = "minecraft:paper:0", - [ 5 ] = "minecraft:paper:0", - [ 6 ] = "minecraft:hopper:0", - [ 7 ] = "minecraft:paper:0", - }, - count = 1, - }, - [ "enderio:itemBasicFilterUpgrade:1" ] = { - ingredients = { - "minecraft:redstone:0", - "minecraft:paper:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:paper:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:paper:0", - [ 6 ] = "enderio:itemFrankenSkull:1", - [ 7 ] = "minecraft:paper:0", - }, - count = 1, - }, - [ "enderio:itemBasicFilterUpgrade:2" ] = { - ingredients = { - "minecraft:comparator:0", - "enderio:itemBasicFilterUpgrade:1", - "minecraft:comparator:0", - }, - count = 1, - }, - [ "enderio:itemConduitFacade:0" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:itemMaterial:1", - [ 7 ] = "enderio:itemMaterial:1", - }, - count = 1, - }, - [ "enderio:itemExtractSpeedUpgrade:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "enderio:itemAlloy:0", - [ 10 ] = "minecraft:redstone_torch:0", - [ 11 ] = "enderio:itemAlloy:0", - [ 5 ] = "enderio:itemAlloy:0", - [ 6 ] = "minecraft:piston:0", - [ 7 ] = "enderio:itemAlloy:0", - }, - count = 1, - }, - [ "enderio:itemItemConduit:0" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:itemMaterial:3", - [ 6 ] = "enderio:itemMaterial:3", - [ 7 ] = "enderio:itemMaterial:3", - }, - count = 8, - }, - [ "enderio:itemLiquidConduit:0" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:blockFusedQuartz:1", - [ 6 ] = "enderio:blockFusedQuartz:1", - [ 7 ] = "enderio:blockFusedQuartz:1", - }, - count = 8, - }, - [ "enderio:itemLiquidConduit:1" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:blockFusedQuartz:0", - [ 6 ] = "enderio:blockFusedQuartz:0", - [ 7 ] = "enderio:blockFusedQuartz:0", - }, - count = 8, - }, - [ "enderio:itemLiquidConduit:2" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:itemAlloy:2", - [ 6 ] = "enderio:blockFusedQuartz:0", - [ 7 ] = "enderio:itemAlloy:2", - }, - count = 8, - }, - [ "enderio:itemMachinePart:0" ] = { - ingredients = { - "minecraft:iron_bars:0", - "minecraft:iron_ingot:0", - "minecraft:iron_bars:0", - [ 9 ] = "minecraft:iron_bars:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_bars:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "enderio:itemBasicCapacitor:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "enderio:itemMachinePart:1" ] = { - ingredients = { - "minecraft:stick:0", - "minecraft:cobblestone:0", - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - count = 1, - }, - [ "enderio:itemMaterial:2" ] = { - ingredients = { - "minecraft:gravel:0", - "minecraft:clay_ball:0", - "minecraft:gravel:0", - [ 9 ] = "minecraft:gravel:0", - [ 10 ] = "minecraft:clay_ball:0", - [ 11 ] = "minecraft:gravel:0", - [ 5 ] = "minecraft:sand:0", - [ 6 ] = "minecraft:gravel:0", - [ 7 ] = "minecraft:sand:0", - }, - count = 8, - }, - [ "enderio:itemMaterial:3" ] = { - ingredients = { - "enderio:itemAlloy:5", - }, - count = 9, - }, - [ "enderio:itemMaterial:4" ] = { - ingredients = { - "enderio:itemAlloy:2", - }, - count = 9, - }, - [ "enderio:itemMaterial:5" ] = { - ingredients = { - "enderio:itemMaterial:3", - "enderio:itemMaterial:3", - "enderio:itemMaterial:3", - [ 9 ] = "enderio:itemMaterial:3", - [ 10 ] = "enderio:itemMaterial:3", - [ 11 ] = "enderio:itemMaterial:3", - [ 5 ] = "enderio:itemMaterial:3", - [ 6 ] = "minecraft:diamond:0", - [ 7 ] = "enderio:itemMaterial:3", - }, - count = 1, - }, - [ "enderio:itemMaterial:6" ] = { - ingredients = { - "enderio:itemMaterial:4", - "enderio:itemMaterial:4", - "enderio:itemMaterial:4", - [ 9 ] = "enderio:itemMaterial:4", - [ 10 ] = "enderio:itemMaterial:4", - [ 11 ] = "enderio:itemMaterial:4", - [ 5 ] = "enderio:itemMaterial:4", - [ 6 ] = "minecraft:emerald:0", - [ 7 ] = "enderio:itemMaterial:4", - }, - count = 1, - }, - [ "enderio:itemPowerConduit:0" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:itemAlloy:4", - [ 6 ] = "enderio:itemAlloy:4", - [ 7 ] = "enderio:itemAlloy:4", - }, - count = 8, - }, - [ "enderio:itemPowerConduit:1" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:itemAlloy:1", - [ 6 ] = "enderio:itemPowerConduit:0", - [ 7 ] = "enderio:itemAlloy:1", - }, - count = 8, - }, - [ "enderio:itemPowerConduit:2" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:itemAlloy:2", - [ 6 ] = "enderio:itemAlloy:2", - [ 7 ] = "enderio:itemAlloy:2", - }, - count = 8, - }, - [ "enderio:itemRedstoneConduit:0" ] = { - ingredients = { - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - "enderio:itemMaterial:1", - [ 9 ] = "enderio:itemMaterial:1", - [ 10 ] = "enderio:itemMaterial:1", - [ 11 ] = "enderio:itemMaterial:1", - [ 5 ] = "enderio:itemAlloy:3", - [ 6 ] = "enderio:itemAlloy:3", - [ 7 ] = "enderio:itemAlloy:3", - }, - count = 8, - }, - [ "enderio:itemSoulVessel:0" ] = { - ingredients = { - [ 7 ] = "enderio:blockFusedQuartz:0", - [ 2 ] = "enderio:itemAlloy:7", - [ 10 ] = "enderio:blockFusedQuartz:0", - [ 5 ] = "enderio:blockFusedQuartz:0", - }, - count = 1, - }, - [ "enderio:itemXpTransfer:0" ] = { - count = 1, - ingredients = { - [ 6 ] = "enderio:itemAlloy:1", - [ 3 ] = "enderio:itemAlloy:7", - [ 9 ] = "enderio:itemAlloy:7", - }, - maxCount = 1, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/exnihilo.db b/recipeBook/etc/recipes/exnihilo.db deleted file mode 100644 index 5c2a2de..0000000 --- a/recipeBook/etc/recipes/exnihilo.db +++ /dev/null @@ -1,47 +0,0 @@ -{ - name = "Ex Nihilo", - version = "MC 1.8+", - recipes = { - [ "exnihiloadscensio:blockBarrel1:0" ] = { - ingredients = { - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "minecraft:stone_slab:0", - [ 11 ] = "minecraft:stone:0", - [ 3 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 7 ] = "minecraft:stone:0", - }, - count = 1, - }, - [ "exnihiloadscensio:blockCrucible:0" ] = { - ingredients = { - "exnihiloadscensio:itemMaterial:1", - [ 9 ] = "exnihiloadscensio:itemMaterial:1", - [ 10 ] = "exnihiloadscensio:itemMaterial:1", - [ 11 ] = "exnihiloadscensio:itemMaterial:1", - [ 3 ] = "exnihiloadscensio:itemMaterial:1", - [ 5 ] = "exnihiloadscensio:itemMaterial:1", - [ 7 ] = "exnihiloadscensio:itemMaterial:1", - }, - count = 1, - }, - [ "exnihiloadscensio:hammerStone:0" ] = { - maxCount = 1, - ingredients = { - [ 7 ] = "minecraft:cobblestone:0", - [ 9 ] = "minecraft:stick:0", - [ 2 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:stick:0", - }, - count = 1, - }, - [ "exnihiloadscensio:itemMaterial:1" ] = { - ingredients = { - "minecraft:dye:15", - "minecraft:clay_ball:0", - }, - count = 1, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/extrautils2.db b/recipeBook/etc/recipes/extrautils2.db deleted file mode 100644 index 4d709d1..0000000 --- a/recipeBook/etc/recipes/extrautils2.db +++ /dev/null @@ -1,172 +0,0 @@ -{ - name = "Extra Utilities", - version = "MC 1.8+", - recipes = { - [ "extrautils2:decorativesolid:2" ] = { - ingredients = { - "minecraft:stonebrick:0", - "minecraft:stonebrick:0", - [ 5 ] = "minecraft:stonebrick:0", - [ 6 ] = "minecraft:stonebrick:0", - }, - count = 4, - }, - [ "extrautils2:drum:1" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:heavy_weighted_pressure_plate:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:heavy_weighted_pressure_plate:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:cauldron:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "extrautils2:endershard:0" ] = { - ingredients = { - "minecraft:ender_pearl:0", - "extrautils2:glasscutter:*", - }, - craftingTools = { - [ "extrautils2:glasscutter:*" ] = true, - }, - maxCount = 1, - count = 8, - }, - [ "extrautils2:grocket:2" ] = { - ingredients = { - "minecraft:redstone:0", - "extrautils2:pipe:0", - "minecraft:redstone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:bucket:0", - [ 7 ] = "minecraft:stone:0", - }, - count = 4, - }, - [ "extrautils2:grocket:4" ] = { - ingredients = { - [ 10 ] = "minecraft:ender_pearl:0", - [ 2 ] = "minecraft:ender_pearl:0", - [ 5 ] = "extrautils2:grocket:2", - [ 6 ] = "minecraft:diamond:0", - [ 7 ] = "extrautils2:grocket:2", - }, - count = 2, - }, - [ "extrautils2:ingredients:0" ] = { - ingredients = { - "extrautils2:endershard:0", - "enderio:itemAlloy:3", - "enderio:itemAlloy:3", - [ 5 ] = "enderio:itemAlloy:3", - [ 6 ] = "enderio:itemAlloy:3", - [ 7 ] = "enderio:itemAlloy:3", - }, - count = 1, - }, - [ "extrautils2:ingredients:1" ] = { - ingredients = { - [ 10 ] = "minecraft:redstone_torch:0", - [ 2 ] = "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:redstone_torch:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:redstone_torch:0", - }, - count = 1, - }, - [ "extrautils2:ingredients:6" ] = { - count = 1, - ingredients = { - "extrautils2:ingredients:9", - "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:redstone_block:0", - }, - maxCount = 4, - }, - [ "extrautils2:miner:0" ] = { - ingredients = { - "minecraft:dropper:0", - "extrautils2:ingredients:0", - [ 5 ] = "minecraft:iron_pickaxe:*", - }, - count = 1, - }, - [ "extrautils2:passivegenerator:3" ] = { - ingredients = { - "extrautils2:decorativesolid:3", - "extrautils2:decorativesolid:3", - "extrautils2:decorativesolid:3", - [ 9 ] = "extrautils2:decorativesolid:3", - [ 10 ] = "extrautils2:decorativesolid:3", - [ 11 ] = "extrautils2:decorativesolid:3", - [ 5 ] = "extrautils2:ingredients:1", - [ 6 ] = "extrautils2:ingredients:0", - [ 7 ] = "extrautils2:ingredients:1", - }, - count = 1, - }, - [ "extrautils2:passivegenerator:7" ] = { - ingredients = { - [ 7 ] = "extrautils2:decorativesolid:2", - [ 2 ] = "extrautils2:ingredients:1", - [ 5 ] = "extrautils2:decorativesolid:2", - [ 6 ] = "extrautils2:ingredients:0", - }, - count = 1, - }, - [ "extrautils2:pipe:0" ] = { - ingredients = { - "minecraft:stone_slab:0", - "minecraft:stone_slab:0", - "minecraft:stone_slab:0", - [ 9 ] = "minecraft:stone_slab:0", - [ 10 ] = "minecraft:stone_slab:0", - [ 11 ] = "minecraft:stone_slab:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:glass:0", - }, - count = 64, - }, - [ "extrautils2:resonator:0" ] = { - ingredients = { - "minecraft:redstone:0", - "minecraft:coal_block:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "extrautils2:ingredients:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "extrautils2:trashcan:0" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - "minecraft:stone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - count = 1, - }, - [ "extrautils2:user:0" ] = { - ingredients = { - "minecraft:dropper:0", - "extrautils2:ingredients:0", - [ 5 ] = "minecraft:lever:0", - }, - count = 1, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/ironchest.db b/recipeBook/etc/recipes/ironchest.db deleted file mode 100644 index a8f608b..0000000 --- a/recipeBook/etc/recipes/ironchest.db +++ /dev/null @@ -1,118 +0,0 @@ -{ - name = "Iron Chests", - version = "MC 1.8+", - recipes = { - [ "ironchest:BlockIronChest:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "ironchest:BlockIronChest:1" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "ironchest:BlockIronChest:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 1, - }, - [ "ironchest:BlockIronChest:2" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "ironchest:BlockIronChest:1", - [ 7 ] = "minecraft:diamond:0", - }, - count = 1, - }, - [ "ironchest:BlockIronChest:5" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "ironchest:BlockIronChest:2", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "ironchest:BlockIronChest:6" ] = { - ingredients = { - "minecraft:obsidian:0", - "minecraft:obsidian:0", - "minecraft:obsidian:0", - [ 9 ] = "minecraft:obsidian:0", - [ 10 ] = "minecraft:obsidian:0", - [ 11 ] = "minecraft:obsidian:0", - [ 5 ] = "minecraft:obsidian:0", - [ 6 ] = "ironchest:BlockIronChest:2", - [ 7 ] = "minecraft:obsidian:0", - }, - count = 1, - }, - [ "ironchest:goldDiamondUpgrade:0" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "minecraft:gold_ingot:0", - [ 7 ] = "minecraft:diamond:0", - }, - count = 1, - }, - [ "ironchest:ironGoldUpgrade:0" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 1, - }, - [ "ironchest:woodIronUpgrade:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - }, -} diff --git a/recipeBook/etc/recipes/mekanism.db b/recipeBook/etc/recipes/mekanism.db deleted file mode 100644 index b593e7a..0000000 --- a/recipeBook/etc/recipes/mekanism.db +++ /dev/null @@ -1,62 +0,0 @@ -{ - name = "Mekanism", - version = "MC 1.8+", - recipes = { - [ "mekanism:EnergyTablet:0:3a153e5a66ba42a2d96ffd50ba64918b" ] = { - ingredients = { - "minecraft:redstone:0", - "minecraft:gold_ingot:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "mekanism:EnrichedAlloy:0", - [ 6 ] = "minecraft:gold_ingot:0", - [ 7 ] = "mekanism:EnrichedAlloy:0", - }, - count = 1, - }, - [ "mekanism:SpeedUpgrade:0" ] = { - ingredients = { - [ 10 ] = "minecraft:glass:0", - [ 2 ] = "minecraft:glass:0", - [ 5 ] = "mekanism:EnrichedAlloy:0", - [ 6 ] = "mekanism:Dust:2", - [ 7 ] = "mekanism:EnrichedAlloy:0", - }, - count = 1, - }, - [ "mekanism:ControlCircuit:1" ] = { - ingredients = { - "mekanism:EnrichedAlloy:0", - "mekanism:ControlCircuit:0", - "mekanism:EnrichedAlloy:0", - }, - count = 1, - }, - [ "mekanism:BasicBlock:8" ] = { - ingredients = { - "bigreactors:ingotmetals:5", - "minecraft:glass:0", - "bigreactors:ingotmetals:5", - [ 9 ] = "bigreactors:ingotmetals:5", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "bigreactors:ingotmetals:5", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "mekanism:Ingot:1", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "mekanism:EnergyUpgrade:0" ] = { - ingredients = { - [ 10 ] = "minecraft:glass:0", - [ 2 ] = "minecraft:glass:0", - [ 5 ] = "mekanism:EnrichedAlloy:0", - [ 6 ] = "exnihiloadscensio:itemOreGold:2", - [ 7 ] = "mekanism:EnrichedAlloy:0", - }, - count = 1, - }, - }, -} \ No newline at end of file diff --git a/core/etc/recipes/minecraft.db b/recipeBook/etc/recipes/minecraft.db similarity index 99% rename from core/etc/recipes/minecraft.db rename to recipeBook/etc/recipes/minecraft.db index c5614d4..14dac3f 100644 --- a/core/etc/recipes/minecraft.db +++ b/recipeBook/etc/recipes/minecraft.db @@ -2,6 +2,20 @@ name = "Minecraft", version = "", recipes = { + [ "minecraft:jukebox:0" ] = { + count = 1, + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 7 ] = "minecraft:planks:0", + [ 9 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:planks:0", + [ 11 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:diamond:0", + }, + }, [ "minecraft:flint_and_steel:0" ] = { count = 1, ingredients = { diff --git a/recipeBook/etc/recipes/mysticalagriculture.db b/recipeBook/etc/recipes/mysticalagriculture.db deleted file mode 100644 index f4d123c..0000000 --- a/recipeBook/etc/recipes/mysticalagriculture.db +++ /dev/null @@ -1,182 +0,0 @@ -{ - name = "Mystical Agriculture", - version = "MC 1.8+", - recipes = { - [ "mysticalagriculture:supremium_ingot:0" ] = { - ingredients = { - [ 10 ] = "mysticalagriculture:supremium_essence:0", - [ 2 ] = "mysticalagriculture:supremium_essence:0", - [ 5 ] = "mysticalagriculture:supremium_essence:0", - [ 6 ] = "mysticalagriculture:superium_ingot:0", - [ 7 ] = "mysticalagriculture:supremium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:prudentium_ingot:0" ] = { - ingredients = { - [ 10 ] = "mysticalagriculture:prudentium_essence:0", - [ 2 ] = "mysticalagriculture:prudentium_essence:0", - [ 5 ] = "mysticalagriculture:prudentium_essence:0", - [ 6 ] = "mysticalagriculture:inferium_ingot:0", - [ 7 ] = "mysticalagriculture:prudentium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:intermedium_ingot:0" ] = { - ingredients = { - [ 10 ] = "mysticalagriculture:intermedium_essence:0", - [ 2 ] = "mysticalagriculture:intermedium_essence:0", - [ 5 ] = "mysticalagriculture:intermedium_essence:0", - [ 6 ] = "mysticalagriculture:prudentium_ingot:0", - [ 7 ] = "mysticalagriculture:intermedium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:superium_armor_core:0" ] = { - ingredients = { - "mysticalagriculture:superium_essence:0", - "minecraft:diamond_block:0", - "mysticalagriculture:superium_essence:0", - [ 5 ] = "minecraft:emerald:0", - [ 6 ] = "mysticalagriculture:intermedium_armor_core:0", - [ 7 ] = "minecraft:emerald:0", - [ 9 ] = "mysticalagriculture:superium_essence:0", - [ 10 ] = "minecraft:emerald:0", - [ 11 ] = "mysticalagriculture:superium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:inferium_ingot:0" ] = { - ingredients = { - [ 10 ] = "mysticalagriculture:inferium_essence:0", - [ 2 ] = "mysticalagriculture:inferium_essence:0", - [ 5 ] = "mysticalagriculture:inferium_essence:0", - [ 6 ] = "mysticalagriculture:base_essence_ingot:0", - [ 7 ] = "mysticalagriculture:inferium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:intermedium_armor_core:0" ] = { - ingredients = { - "mysticalagriculture:intermedium_essence:0", - "minecraft:gold_block:0", - "mysticalagriculture:intermedium_essence:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "mysticalagriculture:prudentium_armor_core:0", - [ 7 ] = "minecraft:diamond:0", - [ 9 ] = "mysticalagriculture:intermedium_essence:0", - [ 10 ] = "minecraft:diamond:0", - [ 11 ] = "mysticalagriculture:intermedium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:infusion_crystal:0" ] = { - ingredients = { - "mysticalagriculture:prosperity_shard:0", - "mysticalagriculture:inferium_essence:0", - "mysticalagriculture:prosperity_shard:0", - [ 9 ] = "mysticalagriculture:prosperity_shard:0", - [ 10 ] = "mysticalagriculture:inferium_essence:0", - [ 11 ] = "mysticalagriculture:prosperity_shard:0", - [ 5 ] = "mysticalagriculture:inferium_essence:0", - [ 6 ] = "minecraft:diamond:0", - [ 7 ] = "mysticalagriculture:inferium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:supremium_armor_core:0" ] = { - ingredients = { - "mysticalagriculture:supremium_essence:0", - "minecraft:nether_star:0", - "mysticalagriculture:supremium_essence:0", - [ 5 ] = "minecraft:skull:1", - [ 6 ] = "mysticalagriculture:superium_armor_core:0", - [ 7 ] = "minecraft:skull:1", - [ 9 ] = "mysticalagriculture:supremium_essence:0", - [ 10 ] = "minecraft:skull:1", - [ 11 ] = "mysticalagriculture:supremium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:inferium_armor_core:0" ] = { - ingredients = { - "mysticalagriculture:inferium_essence:0", - "minecraft:gold_ingot:0", - "mysticalagriculture:inferium_essence:0", - [ 5 ] = "minecraft:leather:0", - [ 6 ] = "mysticalagriculture:base_essence_ingot:0", - [ 7 ] = "minecraft:leather:0", - [ 9 ] = "mysticalagriculture:inferium_essence:0", - [ 10 ] = "minecraft:leather:0", - [ 11 ] = "mysticalagriculture:inferium_essence:0", - }, - count = 1, - }, - [ "mysticalagriculture:base_essence_ingot:0" ] = { - ingredients = { - [ 10 ] = "mysticalagriculture:prosperity_shard:0", - [ 2 ] = "mysticalagriculture:prosperity_shard:0", - [ 5 ] = "mysticalagriculture:prosperity_shard:0", - [ 6 ] = "thermalfoundation:material:136", - [ 7 ] = "mysticalagriculture:prosperity_shard:0", - }, - count = 1, - }, - [ "mysticalagriculture:tier2_inferium_seeds:0" ] = { - count = 1, - ingredients = { - "mysticalagriculture:prudentium_essence:0", - "mysticalagriculture:prudentium_essence:0", - "mysticalagriculture:prudentium_essence:0", - [ 9 ] = "mysticalagriculture:prudentium_essence:0", - [ 10 ] = "mysticalagriculture:prudentium_essence:0", - [ 11 ] = "mysticalagriculture:prudentium_essence:0", - [ 5 ] = "mysticalagriculture:prudentium_essence:0", - [ 6 ] = "mysticalagriculture:tier1_inferium_seeds:0", - [ 7 ] = "mysticalagriculture:prudentium_essence:0", - }, - }, - [ "mysticalagriculture:tier3_inferium_seeds:0" ] = { - count = 1, - ingredients = { - "mysticalagriculture:intermedium_essence:0", - "mysticalagriculture:intermedium_essence:0", - "mysticalagriculture:intermedium_essence:0", - [ 9 ] = "mysticalagriculture:intermedium_essence:0", - [ 10 ] = "mysticalagriculture:intermedium_essence:0", - [ 11 ] = "mysticalagriculture:intermedium_essence:0", - [ 5 ] = "mysticalagriculture:intermedium_essence:0", - [ 6 ] = "mysticalagriculture:tier2_inferium_seeds:0", - [ 7 ] = "mysticalagriculture:intermedium_essence:0", - }, - }, - [ "mysticalagriculture:tier1_inferium_seeds:0" ] = { - count = 1, - ingredients = { - "mysticalagriculture:inferium_essence:0", - "mysticalagriculture:inferium_essence:0", - "mysticalagriculture:inferium_essence:0", - [ 9 ] = "mysticalagriculture:inferium_essence:0", - [ 10 ] = "mysticalagriculture:inferium_essence:0", - [ 11 ] = "mysticalagriculture:inferium_essence:0", - [ 5 ] = "mysticalagriculture:inferium_essence:0", - [ 6 ] = "minecraft:wheat_seeds:0", - [ 7 ] = "mysticalagriculture:inferium_essence:0", - }, - }, - [ "mysticalagriculture:prudentium_armor_core:0" ] = { - ingredients = { - "mysticalagriculture:prudentium_essence:0", - "minecraft:lapis_block:0", - "mysticalagriculture:prudentium_essence:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "mysticalagriculture:inferium_armor_core:0", - [ 7 ] = "minecraft:gold_ingot:0", - [ 9 ] = "mysticalagriculture:prudentium_essence:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "mysticalagriculture:prudentium_essence:0", - }, - count = 1, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/rftools.db b/recipeBook/etc/recipes/rftools.db deleted file mode 100644 index c9816b4..0000000 --- a/recipeBook/etc/recipes/rftools.db +++ /dev/null @@ -1,130 +0,0 @@ -{ - name = "RFTools", - version = "MC 1.8+", - recipes = { - [ "rftools:crafter1:0" ] = { - ingredients = { - [ 10 ] = "minecraft:redstone_torch:0", - [ 2 ] = "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:crafting_table:0", - [ 6 ] = "rftools:machine_frame:0", - [ 7 ] = "minecraft:crafting_table:0", - }, - count = 1, - }, - [ "rftools:crafter2:0" ] = { - ingredients = { - [ 10 ] = "minecraft:redstone_torch:0", - [ 2 ] = "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:crafting_table:0", - [ 6 ] = "rftools:crafter1:0", - [ 7 ] = "minecraft:crafting_table:0", - }, - count = 1, - }, - [ "rftools:crafter3:0" ] = { - ingredients = { - [ 10 ] = "minecraft:redstone_torch:0", - [ 2 ] = "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:crafting_table:0", - [ 6 ] = "rftools:crafter2:0", - [ 7 ] = "minecraft:crafting_table:0", - }, - count = 1, - }, - [ "rftools:machine_frame:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:dye:4", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:dye:4", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:gold_nugget:0", - [ 7 ] = "minecraft:gold_nugget:0", - }, - count = 1, - }, - [ "rftools:modular_storage:0" ] = { - ingredients = { - "minecraft:redstone:0", - "minecraft:chest:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:quartz:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:quartz:0", - [ 6 ] = "rftools:machine_frame:0", - [ 7 ] = "minecraft:quartz:0", - }, - count = 1, - }, - [ "rftools:storage_module:2" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:redstone_block:0", - [ 11 ] = "minecraft:quartz_block:1", - [ 2 ] = "minecraft:chest:0", - [ 5 ] = "minecraft:gold_block:0", - [ 6 ] = "rftools:storage_module:1", - [ 7 ] = "minecraft:gold_block:0", - [ 9 ] = "minecraft:quartz_block:1", - }, - maxCount = 1, - }, - [ "rftools:remote_storage:0" ] = { - ingredients = { - "minecraft:ender_pearl:0", - "minecraft:chest:0", - "minecraft:ender_pearl:0", - [ 9 ] = "minecraft:ender_pearl:0", - [ 10 ] = "minecraft:quartz:0", - [ 11 ] = "minecraft:ender_pearl:0", - [ 5 ] = "minecraft:quartz:0", - [ 6 ] = "rftools:machine_frame:0", - [ 7 ] = "minecraft:quartz:0", - }, - count = 1, - }, - [ "rftools:storage_module:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:quartz:0", - [ 2 ] = "minecraft:chest:0", - [ 5 ] = "minecraft:gold_nugget:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:gold_nugget:0", - [ 9 ] = "minecraft:quartz:0", - }, - maxCount = 1, - }, - [ "rftools:storage_module:1" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:quartz:0", - [ 2 ] = "minecraft:chest:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "rftools:storage_module:0", - [ 7 ] = "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:quartz:0", - }, - maxCount = 1, - }, - [ "rftools:storage_module:6" ] = { - ingredients = { - "minecraft:ender_pearl:0", - "minecraft:chest:0", - "minecraft:ender_pearl:0", - [ 9 ] = "minecraft:quartz:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:quartz:0", - [ 5 ] = "minecraft:gold_nugget:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:gold_nugget:0", - }, - count = 1, - }, - }, -} diff --git a/recipeBook/etc/recipes/skyblockinfinity.db b/recipeBook/etc/recipes/skyblockinfinity.db deleted file mode 100644 index 715cf5b..0000000 --- a/recipeBook/etc/recipes/skyblockinfinity.db +++ /dev/null @@ -1,5267 +0,0 @@ -{ - name = "Skyblock Infinity", - version = "MC 1.7.10", - recipes = { - [ "IC2:itemDust2:2" ] = { - ingredients = { - "minecraft:redstone:0", - "IC2:itemDust2:1", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "IC2:itemDust2:1", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "IC2:itemDust2:1", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "IC2:itemDust2:1", - }, - count = 9, - }, - [ "exnihilo:doll:0" ] = { - ingredients = { - "exnihilo:porcelain:0", - "minecraft:emerald:0", - "exnihilo:porcelain:0", - [ 6 ] = "exnihilo:porcelain:0", - [ 11 ] = "exnihilo:porcelain:0", - [ 9 ] = "exnihilo:porcelain:0", - }, - count = 1, - }, - [ "ExtraUtilities:trashcan:0" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - "minecraft:stone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - count = 1, - }, - [ "IC2:blockMachine:5" ] = { - ingredients = { - "minecraft:stone:0", - [ 10 ] = "IC2:itemPartCircuit:0", - [ 11 ] = "minecraft:stone:0", - [ 3 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "IC2:blockMachine:0", - [ 7 ] = "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - }, - count = 1, - }, - [ "ImmersiveEngineering:metalDevice:2" ] = { - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:iron_ingot:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:iron_ingot:0", - }, - count = 8, - }, - [ "minecraft:item_frame:0" ] = { - ingredients = { - "minecraft:stick:0", - "minecraft:stick:0", - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:leather:0", - [ 7 ] = "minecraft:stick:0", - }, - count = 1, - }, - [ "AWWayofTime:masterStone:0" ] = { - ingredients = { - "minecraft:obsidian:0", - "AWWayofTime:ritualStone:0", - "minecraft:obsidian:0", - [ 9 ] = "minecraft:obsidian:0", - [ 10 ] = "AWWayofTime:ritualStone:0", - [ 11 ] = "minecraft:obsidian:0", - [ 5 ] = "AWWayofTime:ritualStone:0", - [ 6 ] = "AWWayofTime:magicianBloodOrb:0:9c04c731779ccb7c3d3ba68621d82aef", - [ 7 ] = "AWWayofTime:ritualStone:0", - }, - craftingTools = { - [ "AWWayofTime:magicianBloodOrb:0:9c04c731779ccb7c3d3ba68621d82aef" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "IC2:reactorReflectorThick:1" ] = { - count = 1, - ingredients = { - "IC2:itemPlates:0", - "IC2:reactorReflector:*", - "IC2:itemPlates:0", - [ 9 ] = "IC2:itemPlates:0", - [ 10 ] = "IC2:reactorReflector:*", - [ 11 ] = "IC2:itemPlates:0", - [ 5 ] = "IC2:reactorReflector:*", - [ 6 ] = "IC2:itemPlates:0", - [ 7 ] = "IC2:reactorReflector:*", - }, - maxCount = 1, - }, - [ "IC2:itemPartCircuitAdv:0" ] = { - ingredients = { - "BuildCraft|Silicon:redstoneChipset:0", - "Forestry:chipsets:3", - "BuildCraft|Silicon:redstoneChipset:0", - [ 9 ] = "BuildCraft|Silicon:redstoneChipset:0", - [ 10 ] = "Forestry:chipsets:3", - [ 11 ] = "BuildCraft|Silicon:redstoneChipset:0", - [ 5 ] = "EnderIO:itemBasicCapacitor:0", - [ 6 ] = "IC2:itemPartCircuit:0", - [ 7 ] = "EnderIO:itemBasicCapacitor:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockQuantumRing:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "appliedenergistics2:item.ItemMultiMaterial:22", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:22", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:24", - [ 6 ] = "appliedenergistics2:tile.BlockEnergyCell:0", - [ 7 ] = "appliedenergistics2:item.ItemMultiPart:76", - }, - count = 1, - }, - [ "SolarExpansion:solarPanelHardened:0" ] = { - ingredients = { - "SolarExpansion:solarPanelLeadstone:0", - "SolarExpansion:solarPanelLeadstone:0", - "SolarExpansion:solarPanelLeadstone:0", - [ 9 ] = "SolarExpansion:solarPanelLeadstone:0", - [ 10 ] = "SolarExpansion:solarPanelLeadstone:0", - [ 11 ] = "SolarExpansion:solarPanelLeadstone:0", - [ 5 ] = "SolarExpansion:solarPanelLeadstone:0", - [ 6 ] = "SolarExpansion:solarCoreHardened:0", - [ 7 ] = "SolarExpansion:solarPanelLeadstone:0", - }, - count = 1, - }, - [ "rftools:storageModuleItem:6" ] = { - count = 1, - ingredients = { - "minecraft:ender_pearl:0", - "minecraft:chest:0", - "minecraft:ender_pearl:0", - [ 9 ] = "minecraft:quartz:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:quartz:0", - [ 5 ] = "minecraft:gold_nugget:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:gold_nugget:0", - }, - maxCount = 1, - }, - [ "IC2:itemPartCFPowder:0" ] = { - ingredients = { - "IC2:itemDust:9", - "minecraft:sand:0", - "IC2:itemDust:9", - [ 9 ] = "IC2:itemDust:9", - [ 10 ] = "minecraft:sand:0", - [ 11 ] = "IC2:itemDust:9", - [ 5 ] = "IC2:itemDust:9", - [ 6 ] = "minecraft:clay_ball:0", - [ 7 ] = "IC2:itemDust:9", - }, - count = 1, - }, - [ "excompressum:heavySilkMesh:0" ] = { - ingredients = { - "exnihilo:mesh:0", - "exnihilo:mesh:0", - [ 5 ] = "exnihilo:mesh:0", - [ 6 ] = "exnihilo:mesh:0", - }, - count = 1, - }, - [ "minecraft:book:0" ] = { - ingredients = { - "minecraft:paper:0", - "minecraft:paper:0", - [ 9 ] = "TConstruct:blankPattern:0", - [ 10 ] = "TConstruct:blankPattern:0", - [ 5 ] = "minecraft:paper:0", - [ 6 ] = "minecraft:string:0", - }, - count = 1, - }, - [ "IC2:blockMachine:13" ] = { - ingredients = { - "TConstruct:materials:9", - "TConstruct:materials:9", - "TConstruct:materials:9", - [ 9 ] = "TConstruct:materials:9", - [ 10 ] = "IC2:blockMachine:12", - [ 11 ] = "TConstruct:materials:9", - [ 5 ] = "TConstruct:materials:9", - [ 6 ] = "IC2:blockMachine:2", - [ 7 ] = "TConstruct:materials:9", - }, - count = 1, - }, - [ "StorageDrawers:upgrade:6" ] = { - ingredients = { - "minecraft:emerald:0", - "minecraft:stick:0", - "minecraft:emerald:0", - [ 9 ] = "minecraft:emerald:0", - [ 10 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:emerald:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "StorageDrawers:upgradeTemplate:0", - [ 7 ] = "minecraft:stick:0", - }, - count = 1, - }, - [ "MineFactoryReloaded:machine.2:6" ] = { - ingredients = { - "MineFactoryReloaded:plastic.sheet:0", - "EnderIO:item.darkSteel_axe:0", - "MineFactoryReloaded:plastic.sheet:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "EnderIO:itemFrankenSkull:1", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "minecraft:shears:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "minecraft:shears:0", - }, - count = 1, - }, - [ "IC2:itemCable:0" ] = { - ingredients = { - "MineFactoryReloaded:rubber.bar:0", - "IC2:itemCable:1", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:9" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:8", - "appliedenergistics2:item.ItemMultiMaterial:7", - "appliedenergistics2:item.ItemMultiMaterial:8", - [ 9 ] = "appliedenergistics2:item.ItemMultiMaterial:8", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:7", - [ 11 ] = "appliedenergistics2:item.ItemMultiMaterial:8", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:7", - [ 6 ] = "minecraft:ender_pearl:0", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:7", - }, - count = 1, - }, - [ "EnderTech:endertech.enderTankPart:0" ] = { - ingredients = { - "ThermalFoundation:material:108", - "minecraft:ender_eye:0", - "ThermalFoundation:material:108", - [ 9 ] = "ThermalFoundation:material:108", - [ 10 ] = "minecraft:ender_eye:0", - [ 11 ] = "ThermalFoundation:material:108", - [ 5 ] = "minecraft:ender_eye:0", - [ 6 ] = "ThermalExpansion:Frame:3", - [ 7 ] = "minecraft:ender_eye:0", - }, - count = 8, - }, - [ "appliedenergistics2:item.ToolWirelessTerminal:0:41883520c3071f5f4a4a4613fb005e0c" ] = { - count = 1, - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:41", - [ 9 ] = "appliedenergistics2:tile.BlockDenseEnergyCell:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiPart:380", - }, - maxCount = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:260" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "appliedenergistics2:item.ItemMultiMaterial:43", - "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:piston:0", - }, - count = 1, - }, - [ "EnderIO:blockSoulBinder:0" ] = { - ingredients = { - "EnderIO:itemAlloy:7", - "EnderIO:blockEndermanSkull:0", - "EnderIO:itemAlloy:7", - [ 9 ] = "EnderIO:itemAlloy:7", - [ 10 ] = "minecraft:skull:0", - [ 11 ] = "EnderIO:itemAlloy:7", - [ 5 ] = "minecraft:skull:4", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "minecraft:skull:2", - }, - count = 1, - }, - [ "minecraft:brewing_stand:0" ] = { - ingredients = { - [ 9 ] = "minecraft:stone_slab:0", - [ 10 ] = "minecraft:stone_slab:0", - [ 11 ] = "minecraft:stone_slab:0", - [ 6 ] = "minecraft:blaze_rod:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:280" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:23", - "minecraft:redstone_torch:0", - }, - count = 1, - }, - [ "IC2:itemToolWrench:0" ] = { - count = 1, - ingredients = { - "TConstruct:materials:13", - [ 10 ] = "TConstruct:materials:13", - [ 3 ] = "TConstruct:materials:13", - [ 5 ] = "TConstruct:materials:13", - [ 6 ] = "TConstruct:materials:13", - [ 7 ] = "TConstruct:materials:13", - }, - maxCount = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:220" ] = { - ingredients = { - "appliedenergistics2:tile.BlockInterface:0", - "minecraft:sticky_piston:0", - "minecraft:piston:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:240" ] = { - ingredients = { - [ 7 ] = "minecraft:iron_ingot:0", - [ 2 ] = "appliedenergistics2:item.ItemMultiMaterial:44", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:sticky_piston:0", - }, - count = 1, - }, - [ "Railcraft:machine.alpha:8" ] = { - ingredients = { - "minecraft:piston:0", - "ThermalFoundation:material:12", - "minecraft:piston:0", - [ 9 ] = "minecraft:piston:0", - [ 10 ] = "ThermalFoundation:material:12", - [ 11 ] = "minecraft:piston:0", - [ 5 ] = "ThermalFoundation:material:12", - [ 6 ] = "Forestry:thermionicTubes:1", - [ 7 ] = "ThermalFoundation:material:12", - }, - count = 1, - }, - [ "ThermalFoundation:material:513" ] = { - ingredients = { - "minecraft:snowball:0", - "ThermalFoundation:material:17", - [ 5 ] = "ProjRed|Core:projectred.core.part:56", - [ 6 ] = "ThermalFoundation:material:1025", - }, - count = 1, - }, - [ "minecraft:iron_block:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "IC2:blockAlloyGlass:0" ] = { - ingredients = { - "minecraft:glass:0", - "IC2:itemPartAlloy:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "IC2:itemPartAlloy:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:glass:0", - [ 7 ] = "minecraft:glass:0", - }, - count = 7, - }, - [ "RedstoneArsenal:armor.plateFlux:0:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "RedstoneArsenal:material:128", - [ 10 ] = "RedstoneArsenal:material:128", - [ 11 ] = "RedstoneArsenal:material:128", - [ 3 ] = "RedstoneArsenal:material:128", - [ 5 ] = "RedstoneArsenal:material:128", - [ 6 ] = "RedstoneArsenal:material:128", - [ 7 ] = "RedstoneArsenal:material:128", - [ 9 ] = "RedstoneArsenal:material:128", - }, - maxCount = 1, - }, - [ "EnderIO:blockCapBank:3:59b8a9d9c7ab159344e472e362b34ac2" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemBasicCapacitor:2", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "EnderIO:itemBasicCapacitor:2", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:itemBasicCapacitor:2", - [ 6 ] = "EnderIO:itemMaterial:6", - [ 7 ] = "EnderIO:itemBasicCapacitor:2", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockInterface:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:glass:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:43", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:44", - }, - count = 1, - }, - [ "ImmersiveEngineering:woodenDevice:1" ] = { - ingredients = { - "ImmersiveEngineering:material:1", - "ImmersiveEngineering:material:1", - "ImmersiveEngineering:material:1", - [ 9 ] = "ImmersiveEngineering:material:1", - [ 10 ] = "ImmersiveEngineering:material:1", - [ 11 ] = "ImmersiveEngineering:material:1", - [ 5 ] = "ImmersiveEngineering:material:1", - [ 6 ] = "IC2:itemRecipePart:11", - [ 7 ] = "ImmersiveEngineering:material:1", - }, - count = 1, - }, - [ "BuildCraft|Silicon:laserBlock:0" ] = { - ingredients = { - "minecraft:obsidian:0", - "minecraft:redstone:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:obsidian:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "Forestry:thermionicTubes:5", - [ 6 ] = "Forestry:thermionicTubes:5", - [ 7 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:35" ] = { - ingredients = { - "minecraft:redstone:0", - "appliedenergistics2:item.ItemMultiMaterial:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:22", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:0", - }, - count = 1, - }, - [ "StorageDrawers:upgradeLock:0" ] = { - ingredients = { - "minecraft:gold_nugget:0", - "minecraft:gold_ingot:0", - [ 10 ] = "StorageDrawers:upgradeTemplate:0", - [ 6 ] = "minecraft:gold_ingot:0", - }, - count = 1, - }, - [ "EnderIO:blockTransceiver:0" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemFrankenSkull:3", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "EnderIO:itemBasicCapacitor:2", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:blockFusedQuartz:0", - [ 6 ] = "EnderIO:itemMaterial:8", - [ 7 ] = "EnderIO:blockFusedQuartz:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:25" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:23", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 2, - }, - [ "StorageDrawers:upgradeTemplate:0" ] = { - ingredients = { - "minecraft:stick:0", - "minecraft:stick:0", - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "StorageDrawers:fullDrawers1:0", - [ 7 ] = "minecraft:stick:0", - }, - count = 2, - }, - [ "IC2:blockHeatGenerator:3" ] = { - ingredients = { - "IC2:itemCasing:4", - "IC2:itemBatREDischarged:0:41883520c3071f5f4a4a4613fb005e0c", - "IC2:itemCasing:4", - [ 9 ] = "IC2:itemCasing:4", - [ 10 ] = "IC2:itemRecipePart:5", - [ 11 ] = "IC2:itemCasing:4", - [ 5 ] = "IC2:itemCasing:4", - [ 6 ] = "IC2:itemPartCircuit:0", - [ 7 ] = "IC2:itemCasing:4", - }, - count = 1, - }, - [ "IC2:itemAdvBat:26" ] = { - count = 1, - ingredients = { - "IC2:itemCable:0", - "IC2:itemCasing:2", - "IC2:itemCable:0", - [ 9 ] = "IC2:itemCasing:2", - [ 10 ] = "ThermalFoundation:material:35", - [ 11 ] = "IC2:itemCasing:2", - [ 5 ] = "IC2:itemCasing:2", - [ 6 ] = "IC2:itemDust:13", - [ 7 ] = "IC2:itemCasing:2", - }, - maxCount = 1, - }, - [ "OpenBlocks:elevator:0" ] = { - ingredients = { - "minecraft:wool:0", - "minecraft:wool:0", - "minecraft:wool:0", - [ 9 ] = "minecraft:wool:0", - [ 10 ] = "minecraft:wool:0", - [ 11 ] = "minecraft:wool:0", - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:ender_pearl:0", - [ 7 ] = "minecraft:wool:0", - }, - count = 1, - }, - [ "ProjRed|Expansion:projectred.expansion.machine2:2" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:chest:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:piston:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - count = 1, - }, - [ "IC2:itemRecipePart:0" ] = { - ingredients = { - "IC2:itemCable:1", - "IC2:itemCable:1", - "IC2:itemCable:1", - [ 9 ] = "IC2:itemCable:1", - [ 10 ] = "IC2:itemCable:1", - [ 11 ] = "IC2:itemCable:1", - [ 5 ] = "IC2:itemCable:1", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "IC2:itemCable:1", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:43" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:0", - "appliedenergistics2:item.ItemMultiMaterial:8", - "appliedenergistics2:item.ItemMultiMaterial:22", - }, - count = 2, - }, - [ "RedstoneArsenal:armor.helmetFlux:0:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "RedstoneArsenal:material:128", - "RedstoneArsenal:material:128", - "RedstoneArsenal:material:128", - [ 5 ] = "RedstoneArsenal:material:128", - [ 7 ] = "RedstoneArsenal:material:128", - }, - maxCount = 1, - }, - [ "IC2:blockMachine:1" ] = { - ingredients = { - [ 9 ] = "IC2:itemPlates:4", - [ 10 ] = "minecraft:furnace:0", - [ 2 ] = "IC2:itemPlates:4", - [ 11 ] = "IC2:itemPlates:4", - [ 5 ] = "IC2:itemPlates:4", - [ 7 ] = "IC2:itemPlates:4", - }, - count = 1, - }, - [ "EnderStorage:enderChest:0" ] = { - ingredients = { - "Railcraft:cube:4", - "minecraft:wool:0", - "Railcraft:cube:4", - [ 9 ] = "Railcraft:cube:4", - [ 10 ] = "IronChest:BlockIronChest:0", - [ 11 ] = "Railcraft:cube:4", - [ 5 ] = "IronChest:BlockIronChest:0", - [ 6 ] = "EnderTech:endertech.enderTankPart:0", - [ 7 ] = "IronChest:BlockIronChest:0", - }, - count = 1, - }, - [ "ThermalDynamics:servo:0" ] = { - ingredients = { - "TConstruct:materials:19", - "minecraft:glass:0", - "TConstruct:materials:19", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 2, - }, - [ "SolarExpansion:photovoltaicCell:0" ] = { - ingredients = { - "minecraft:glass_pane:0", - "minecraft:glass_pane:0", - "minecraft:glass_pane:0", - [ 9 ] = "TConstruct:materials:19", - [ 10 ] = "TConstruct:materials:19", - [ 11 ] = "TConstruct:materials:19", - [ 6 ] = "ProjRed|Core:projectred.core.part:56", - }, - count = 1, - }, - [ "extracells:part.base:1" ] = { - ingredients = { - "minecraft:dye:4", - "appliedenergistics2:item.ItemMultiMaterial:44", - "minecraft:dye:4", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:sticky_piston:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "minecraft:fence:0" ] = { - ingredients = { - "minecraft:stick:0", - "minecraft:stick:0", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:stick:0", - }, - count = 2, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:29" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:28", - "minecraft:wool:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:39" ] = { - ingredients = { - "appliedenergistics2:tile.BlockQuartzGlass:0", - "minecraft:redstone:0", - "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:44" ] = { - ingredients = { - "minecraft:quartz:0", - "appliedenergistics2:item.ItemMultiMaterial:8", - "appliedenergistics2:item.ItemMultiMaterial:22", - }, - count = 2, - }, - [ "EnderIO:blockBuffer:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "EnderIO:itemAlloy:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "EnderIO:itemAlloy:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "EnderIO:itemAlloy:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "EnderIO:itemAlloy:0", - }, - count = 1, - }, - [ "ThermalFoundation:material:514" ] = { - ingredients = { - "ThermalFoundation:material:17", - "minecraft:sand:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "ThermalFoundation:material:1027", - }, - count = 2, - }, - [ "ComputerCraft:pocketComputer:1" ] = { - count = 1, - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:glass_pane:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:golden_apple:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - maxCount = 1, - }, - [ "MineFactoryReloaded:safarinet.reusable:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:ender_pearl:0", - [ 2 ] = "minecraft:ender_pearl:0", - [ 5 ] = "minecraft:ender_pearl:0", - [ 6 ] = "minecraft:ghast_tear:0", - [ 7 ] = "minecraft:ender_pearl:0", - }, - maxCount = 1, - }, - [ "MineFactoryReloaded:machine.1:9" ] = { - ingredients = { - "MineFactoryReloaded:plastic.sheet:0", - "minecraft:nether_wart:0", - "MineFactoryReloaded:plastic.sheet:0", - [ 9 ] = "minecraft:emerald:0", - [ 10 ] = "EnderIO:itemFrankenSkull:1", - [ 11 ] = "minecraft:emerald:0", - [ 5 ] = "minecraft:magma_cream:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "minecraft:magma_cream:0", - }, - count = 1, - }, - [ "IC2:itemPlates:2" ] = { - ingredients = { - "IC2:itemToolForgeHammer:*", - "TConstruct:materials:13", - "TConstruct:materials:13", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "SolarExpansion:solarCoreLeadstone:0" ] = { - ingredients = { - [ 10 ] = "Thaumcraft:ItemNugget:4", - [ 2 ] = "Thaumcraft:ItemNugget:4", - [ 5 ] = "Thaumcraft:ItemNugget:4", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "Thaumcraft:ItemNugget:4", - }, - count = 1, - }, - [ "RedstoneArsenal:material:128" ] = { - ingredients = { - "RedstoneArsenal:material:64", - "RedstoneArsenal:material:64", - "RedstoneArsenal:material:64", - [ 9 ] = "RedstoneArsenal:material:64", - [ 10 ] = "RedstoneArsenal:material:64", - [ 11 ] = "RedstoneArsenal:material:64", - [ 5 ] = "RedstoneArsenal:material:96", - [ 6 ] = "RedstoneArsenal:material:32", - [ 7 ] = "RedstoneArsenal:material:96", - }, - count = 1, - }, - [ "EnderIO:blockCombustionGenerator:0" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemAlloy:0", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemMachinePart:1", - [ 10 ] = "minecraft:piston:0", - [ 11 ] = "EnderIO:itemMachinePart:1", - [ 5 ] = "EnderIO:blockTank:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "EnderIO:blockTank:0", - }, - count = 1, - }, - [ "IC2:blockElectric:5" ] = { - count = 1, - ingredients = { - [ 10 ] = "IC2:itemCable:3", - [ 2 ] = "IC2:itemCable:3", - [ 5 ] = "IC2:itemPartCircuit:0", - [ 6 ] = "IC2:blockElectric:4", - [ 7 ] = "IC2:itemAdvBat:*", - }, - maxCount = 1, - }, - [ "appliedenergistics2:tile.BlockWireless:0" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:41", - [ 9 ] = "appliedenergistics2:item.ItemMultiPart:16", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:23", - }, - count = 1, - }, - [ "EnderIO:blockCapBank:1" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "EnderIO:itemBasicCapacitor:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "EnderIO:itemBasicCapacitor:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "EnderIO:itemBasicCapacitor:0", - [ 6 ] = "minecraft:redstone_block:0", - [ 7 ] = "EnderIO:itemBasicCapacitor:0", - }, - count = 1, - }, - [ "IC2:itemRecipePart:3" ] = { - ingredients = { - [ 10 ] = "IC2:itemCable:1", - [ 11 ] = "IC2:itemCasing:4", - [ 2 ] = "IC2:itemCable:1", - [ 3 ] = "IC2:itemCasing:4", - [ 5 ] = "IC2:itemBatREDischarged:0", - [ 6 ] = "IC2:itemPartCircuit:0", - [ 7 ] = "IC2:itemRecipePart:1", - }, - count = 1, - }, - [ "IC2:reactorCoolantSimple:1" ] = { - count = 1, - ingredients = { - [ 10 ] = "IC2:itemPlates:1", - [ 2 ] = "IC2:itemPlates:1", - [ 5 ] = "IC2:itemPlates:1", - [ 6 ] = "IC2:itemCellEmpty:9", - [ 7 ] = "IC2:itemPlates:1", - }, - maxCount = 1, - }, - [ "ThermalExpansion:Machine:0" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 11 ] = "Forestry:gearCopper:0", - [ 2 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:brick_block:0", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "minecraft:brick_block:0", - [ 9 ] = "Forestry:gearCopper:0", - }, - count = 1, - }, - [ "ThermalExpansion:Tank:3" ] = { - ingredients = { - "ThermalFoundation:material:72", - "ThermalExpansion:Glass:0", - "ThermalFoundation:material:72", - [ 9 ] = "ThermalFoundation:material:72", - [ 10 ] = "ThermalExpansion:Glass:0", - [ 11 ] = "ThermalFoundation:material:72", - [ 5 ] = "ThermalExpansion:Glass:0", - [ 6 ] = "ThermalExpansion:Tank:1", - [ 7 ] = "ThermalExpansion:Glass:0", - }, - count = 1, - }, - [ "OpenPeripheral:generic:0" ] = { - ingredients = { - "minecraft:redstone:0", - "minecraft:redstone:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:slime_ball:0", - }, - count = 1, - }, - [ "AdvancedSolarPanel:asp_crafting_items:12" ] = { - ingredients = { - "AdvancedSolarPanel:asp_crafting_items:5", - "IC2:reactorReflectorThick:*", - "AdvancedSolarPanel:asp_crafting_items:5", - [ 9 ] = "AdvancedSolarPanel:asp_crafting_items:5", - [ 10 ] = "IC2:reactorReflectorThick:*", - [ 11 ] = "AdvancedSolarPanel:asp_crafting_items:5", - [ 5 ] = "AdvancedSolarPanel:asp_crafting_items:5", - [ 7 ] = "AdvancedSolarPanel:asp_crafting_items:5", - }, - count = 1, - }, - [ "ImmersiveEngineering:coil:0" ] = { - ingredients = { - [ 10 ] = "TConstruct:materials:9", - [ 2 ] = "TConstruct:materials:9", - [ 5 ] = "TConstruct:materials:9", - [ 6 ] = "ImmersiveEngineering:material:0", - [ 7 ] = "TConstruct:materials:9", - }, - count = 2, - }, - [ "exnihilo:mesh:0" ] = { - ingredients = { - "minecraft:string:0", - "minecraft:string:0", - "minecraft:string:0", - [ 9 ] = "minecraft:string:0", - [ 10 ] = "minecraft:string:0", - [ 11 ] = "minecraft:string:0", - [ 5 ] = "minecraft:string:0", - [ 6 ] = "minecraft:string:0", - [ 7 ] = "minecraft:string:0", - }, - count = 1, - }, - [ "StevesCarts:ModuleComponents:18" ] = { - ingredients = { - "minecraft:obsidian:0", - [ 9 ] = "minecraft:obsidian:0", - [ 3 ] = "minecraft:obsidian:0", - [ 11 ] = "minecraft:obsidian:0", - [ 6 ] = "minecraft:diamond:0", - }, - count = 2, - }, - [ "ThermalExpansion:material:513" ] = { - ingredients = { - "ThermalExpansion:material:512", - "ThermalExpansion:material:512", - "ThermalExpansion:material:512", - [ 9 ] = "ThermalExpansion:material:512", - [ 10 ] = "ThermalExpansion:material:512", - [ 11 ] = "ThermalExpansion:material:512", - [ 5 ] = "ThermalExpansion:material:512", - [ 7 ] = "ThermalExpansion:material:512", - }, - count = 1, - }, - [ "ThermalExpansion:Cell:1" ] = { - count = 1, - ingredients = { - "IC2:itemIngot:5", - "IC2:itemPartCircuit:0", - "IC2:itemIngot:5", - [ 9 ] = "IC2:itemIngot:5", - [ 10 ] = "ThermalExpansion:material:3", - [ 11 ] = "IC2:itemIngot:5", - [ 5 ] = "Forestry:thermionicTubes:1", - [ 6 ] = "ThermalExpansion:Frame:4", - [ 7 ] = "Forestry:thermionicTubes:1", - }, - maxCount = 1, - }, - [ "ExtraUtilities:pipes:0" ] = { - ingredients = { - "minecraft:stone_slab:0", - "minecraft:stone_slab:0", - "minecraft:stone_slab:0", - [ 9 ] = "minecraft:stone_slab:0", - [ 10 ] = "minecraft:stone_slab:0", - [ 11 ] = "minecraft:stone_slab:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:glass:0", - }, - count = 8, - }, - [ "IC2:itemPlates:1" ] = { - ingredients = { - "IC2:itemToolForgeHammer:*", - "TConstruct:materials:10", - "TConstruct:materials:10", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "IC2:itemPlates:6" ] = { - ingredients = { - "IC2:itemToolForgeHammer:*", - "IC2:itemIngot:5", - "IC2:itemIngot:5", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - maxCount = 1, - count = 1, - }, - [ "IC2:itemCasing:4" ] = { - ingredients = { - "IC2:itemToolForgeHammer:*", - "IC2:itemPlates:4", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "EnderIO:itemMaterial:4" ] = { - ingredients = { - "EnderIO:itemAlloy:2", - }, - count = 9, - }, - [ "IC2:itemRecipePart:5" ] = { - ingredients = { - "MineFactoryReloaded:rubber.bar:0", - "IC2:itemPlates:0", - "MineFactoryReloaded:rubber.bar:0", - [ 9 ] = "MineFactoryReloaded:rubber.bar:0", - [ 10 ] = "IC2:itemPlates:0", - [ 11 ] = "MineFactoryReloaded:rubber.bar:0", - [ 5 ] = "MineFactoryReloaded:rubber.bar:0", - [ 6 ] = "IC2:itemPlates:0", - [ 7 ] = "MineFactoryReloaded:rubber.bar:0", - }, - count = 1, - }, - [ "minecraft:dye:7" ] = { - ingredients = { - "ThermalFoundation:material:2", - "minecraft:dye:15", - [ 5 ] = "minecraft:dye:15", - }, - count = 3, - }, - [ "ThermalFoundation:material:108" ] = { - ingredients = { - "ThermalFoundation:material:76", - }, - count = 9, - }, - [ "EnderIO:itemPowerConduit:1" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "ThermalDynamics:servo:1", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "ThermalDynamics:servo:1", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "ThermalDynamics:ThermalDynamics_0:2", - [ 6 ] = "ThermalDynamics:ThermalDynamics_0:2", - [ 7 ] = "ThermalDynamics:ThermalDynamics_0:2", - }, - count = 3, - }, - [ "minecraft:furnace:0" ] = { - ingredients = { - "ExtraUtilities:cobblestone_compressed:0", - "ExtraUtilities:cobblestone_compressed:0", - "ExtraUtilities:cobblestone_compressed:0", - [ 9 ] = "ExtraUtilities:cobblestone_compressed:0", - [ 10 ] = "ExtraUtilities:cobblestone_compressed:0", - [ 11 ] = "ExtraUtilities:cobblestone_compressed:0", - [ 5 ] = "ExtraUtilities:cobblestone_compressed:0", - [ 7 ] = "ExtraUtilities:cobblestone_compressed:0", - }, - count = 1, - }, - [ "SolarExpansion:solarCoreResonant:0" ] = { - ingredients = { - [ 10 ] = "ThermalFoundation:material:108", - [ 2 ] = "ThermalFoundation:material:108", - [ 5 ] = "ThermalFoundation:material:108", - [ 6 ] = "SolarExpansion:solarCoreRedstone:0", - [ 7 ] = "ThermalFoundation:material:108", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:180" ] = { - ingredients = { - [ 10 ] = "minecraft:glowstone_dust:0", - [ 11 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 2 ] = "minecraft:glowstone_dust:0", - [ 3 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - }, - count = 3, - }, - [ "appliedenergistics2:item.ItemMultiPart:120" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "appliedenergistics2:item.ToolNetherQuartzCuttingKnife:*", - }, - craftingTools = { - [ "appliedenergistics2:item.ToolNetherQuartzCuttingKnife:*" ] = true, - }, - count = 3, - maxCount = 1, - }, - [ "EnderIO:itemPowerItemFilter:0" ] = { - ingredients = { - [ 10 ] = "minecraft:paper:0", - [ 2 ] = "minecraft:paper:0", - [ 5 ] = "minecraft:paper:0", - [ 6 ] = "EnderIO:itemConduitProbe:0", - [ 7 ] = "minecraft:paper:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:140" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:3", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:3", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:3", - }, - count = 3, - }, - [ "IC2:reactorReflector:1" ] = { - count = 1, - ingredients = { - "ThermalFoundation:material:33", - "ThermalFoundation:material:2", - "ThermalFoundation:material:33", - [ 9 ] = "ThermalFoundation:material:33", - [ 10 ] = "ThermalFoundation:material:2", - [ 11 ] = "ThermalFoundation:material:33", - [ 5 ] = "ThermalFoundation:material:2", - [ 6 ] = "IC2:itemPlates:0", - [ 7 ] = "ThermalFoundation:material:2", - }, - maxCount = 1, - }, - [ "extracells:storage.fluid:0" ] = { - count = 1, - ingredients = { - "appliedenergistics2:tile.BlockQuartzGlass:0", - "appliedenergistics2:item.ItemMultiMaterial:8", - "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 9 ] = "extracells:certustank:0", - [ 10 ] = "extracells:certustank:0", - [ 11 ] = "extracells:certustank:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:8", - [ 6 ] = "extracells:storage.component:4", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:8", - }, - maxCount = 1, - }, - [ "exnihilo:barrel:0" ] = { - ingredients = { - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:wooden_slab:0", - [ 11 ] = "minecraft:planks:0", - [ 3 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - }, - count = 1, - }, - [ "minecraft:daylight_detector:0" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:wooden_slab:0", - [ 10 ] = "minecraft:wooden_slab:0", - [ 11 ] = "minecraft:wooden_slab:0", - [ 5 ] = "minecraft:quartz:0", - [ 6 ] = "minecraft:quartz:0", - [ 7 ] = "minecraft:quartz:0", - }, - count = 1, - }, - [ "minecraft:stained_hardened_clay:10" ] = { - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:5", - [ 7 ] = "minecraft:hardened_clay:0", - }, - count = 8, - }, - [ "extracells:ecbaseblock:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:dye:4", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:dye:4", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:44", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:43", - }, - count = 1, - }, - [ "ComputerCraft:CC-Cable:0" ] = { - ingredients = { - [ 10 ] = "minecraft:stone:0", - [ 2 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:stone:0", - }, - count = 6, - }, - [ "EnderIO:blockExperienceObelisk:0" ] = { - ingredients = { - [ 9 ] = "EnderIO:itemAlloy:7", - [ 10 ] = "EnderIO:itemMachinePart:0", - [ 11 ] = "EnderIO:itemAlloy:7", - [ 2 ] = "EnderIO:itemXpTransfer:0", - [ 6 ] = "EnderIO:itemAlloy:7", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:28" ] = { - ingredients = { - "minecraft:diamond:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:diamond:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:23", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 2, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:38" ] = { - ingredients = { - "minecraft:glowstone_dust:0", - "appliedenergistics2:item.ItemMultiMaterial:24", - "minecraft:glowstone_dust:0", - [ 9 ] = "minecraft:glowstone_dust:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:37", - [ 11 ] = "minecraft:glowstone_dust:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:37", - [ 6 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:37", - }, - count = 1, - }, - [ "minecraft:diamond_pickaxe:0" ] = { - count = 1, - ingredients = { - "minecraft:diamond:0", - "minecraft:diamond:0", - "minecraft:diamond:0", - [ 10 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:stick:0", - }, - maxCount = 1, - }, - [ "ExtraUtilities:angelBlock:0" ] = { - ingredients = { - [ 7 ] = "minecraft:feather:0", - [ 2 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:feather:0", - [ 6 ] = "minecraft:obsidian:0", - }, - count = 1, - }, - [ "IC2:itemRecipePart:1" ] = { - ingredients = { - [ 10 ] = "IC2:itemCasing:1", - [ 2 ] = "IC2:itemCasing:1", - [ 5 ] = "IC2:itemRecipePart:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "IC2:itemRecipePart:0", - }, - count = 1, - }, - [ "minecraft:stone_slab:0" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - "minecraft:stone:0", - }, - count = 6, - }, - [ "ImmersiveEngineering:material:0" ] = { - ingredients = { - "ImmersiveEngineering:treatedWood:0", - [ 5 ] = "ImmersiveEngineering:treatedWood:0", - }, - count = 4, - }, - [ "Forestry:scoop:0" ] = { - count = 1, - ingredients = { - "minecraft:stick:0", - "minecraft:wool:0", - "minecraft:stick:0", - [ 7 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:stick:0", - }, - maxCount = 1, - }, - [ "BuildCraft|Transport:item.buildcraftPipe.pipefluidswood:0" ] = { - ingredients = { - "BuildCraft|Transport:pipeWaterproof:0", - "BuildCraft|Transport:item.buildcraftPipe.pipeitemswood:0", - }, - count = 1, - }, - [ "gendustry:Sampler:0" ] = { - ingredients = { - "ThermalFoundation:material:137", - "gendustry:GeneticsProcessor:32767", - "ThermalFoundation:material:137", - [ 9 ] = "ThermalFoundation:material:137", - [ 10 ] = "gendustry:PowerModule:0", - [ 11 ] = "ThermalFoundation:material:137", - [ 5 ] = "gendustry:BeeReceptacle:0", - [ 6 ] = "Forestry:sturdyMachine:0", - [ 7 ] = "minecraft:diamond:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockCraftingStorage:1" ] = { - ingredients = { - "appliedenergistics2:tile.BlockCraftingUnit:0", - "appliedenergistics2:item.ItemMultiMaterial:36", - }, - count = 1, - }, - [ "SolarExpansion:solarPanelLeadstone:0" ] = { - ingredients = { - "SolarExpansion:photovoltaicCell:0", - "SolarExpansion:photovoltaicCell:0", - "SolarExpansion:photovoltaicCell:0", - [ 9 ] = "Railcraft:nugget:1", - [ 10 ] = "Railcraft:nugget:1", - [ 11 ] = "Railcraft:nugget:1", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "SolarExpansion:solarCoreLeadstone:0", - [ 7 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "EnderIO:itemPowerConduit:2" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "ThermalDynamics:servo:2", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "ThermalDynamics:servo:2", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "ThermalDynamics:ThermalDynamics_0:4", - [ 6 ] = "ThermalDynamics:ThermalDynamics_0:4", - [ 7 ] = "ThermalDynamics:ThermalDynamics_0:4", - }, - count = 3, - }, - [ "ImmersiveEngineering:coil:2" ] = { - ingredients = { - [ 10 ] = "Railcraft:ingot:0", - [ 2 ] = "Railcraft:ingot:0", - [ 5 ] = "Railcraft:ingot:0", - [ 6 ] = "ImmersiveEngineering:material:0", - [ 7 ] = "Railcraft:ingot:0", - }, - count = 2, - }, - [ "EnderIO:item.darkSteel_sword:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:stick:0", - [ 6 ] = "EnderIO:itemAlloy:6", - [ 2 ] = "EnderIO:itemAlloy:6", - }, - maxCount = 1, - }, - [ "AdvancedSolarPanel:asp_crafting_items:3" ] = { - ingredients = { - "AdvancedSolarPanel:asp_crafting_items:2", - "AdvancedSolarPanel:asp_crafting_items:2", - "AdvancedSolarPanel:asp_crafting_items:2", - [ 9 ] = "AdvancedSolarPanel:asp_crafting_items:2", - [ 10 ] = "AdvancedSolarPanel:asp_crafting_items:2", - [ 11 ] = "AdvancedSolarPanel:asp_crafting_items:2", - [ 5 ] = "AdvancedSolarPanel:asp_crafting_items:2", - [ 6 ] = "AdvancedSolarPanel:asp_crafting_items:0", - [ 7 ] = "AdvancedSolarPanel:asp_crafting_items:2", - }, - count = 1, - }, - [ "simplyjetpacks:components:21" ] = { - ingredients = { - "EnderIO:itemAlloy:4", - "EnderIO:itemBasicCapacitor:0", - "EnderIO:itemAlloy:4", - [ 9 ] = "EnderIO:itemMachinePart:1", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "EnderIO:itemMachinePart:1", - [ 5 ] = "EnderIO:itemRedstoneConduit:2", - [ 6 ] = "EnderIO:itemBasicCapacitor:0", - [ 7 ] = "EnderIO:itemRedstoneConduit:2", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockInscriber:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:sticky_piston:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:sticky_piston:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:10", - [ 6 ] = "ThermalExpansion:Frame:3", - [ 7 ] = "IC2:upgradeModule:0", - }, - count = 1, - }, - [ "ThermalExpansion:Machine:5" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 11 ] = "Forestry:gearCopper:0", - [ 2 ] = "minecraft:bucket:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "minecraft:glass:0", - [ 9 ] = "Forestry:gearCopper:0", - }, - count = 1, - }, - [ "ThermalFoundation:material:104" ] = { - ingredients = { - "ThermalFoundation:material:72", - }, - count = 9, - }, - [ "StorageDrawers:halfDrawers4:0" ] = { - ingredients = { - "minecraft:chest:0", - "minecraft:wooden_slab:0", - "minecraft:chest:0", - [ 9 ] = "minecraft:chest:0", - [ 10 ] = "minecraft:wooden_slab:0", - [ 11 ] = "minecraft:chest:0", - [ 5 ] = "minecraft:wooden_slab:0", - [ 6 ] = "minecraft:wooden_slab:0", - [ 7 ] = "minecraft:wooden_slab:0", - }, - count = 4, - }, - [ "IronChest:BlockIronChest:5" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "IronChest:BlockIronChest:2", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "exnihilo:barrel_stone:0" ] = { - ingredients = { - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "minecraft:stone_slab:0", - [ 11 ] = "minecraft:stone:0", - [ 3 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 7 ] = "minecraft:stone:0", - }, - count = 1, - }, - [ "RedstoneArsenal:material:192" ] = { - ingredients = { - [ 6 ] = "minecraft:blaze_powder:0", - [ 3 ] = "ThermalFoundation:material:4", - [ 9 ] = "ThermalFoundation:material:4", - }, - count = 1, - }, - [ "SolarExpansion:solarPanelResonant:0" ] = { - ingredients = { - "SolarExpansion:solarPanelRedstone:0", - "SolarExpansion:solarPanelRedstone:0", - "SolarExpansion:solarPanelRedstone:0", - [ 9 ] = "SolarExpansion:solarPanelRedstone:0", - [ 10 ] = "SolarExpansion:solarPanelRedstone:0", - [ 11 ] = "SolarExpansion:solarPanelRedstone:0", - [ 5 ] = "SolarExpansion:solarPanelRedstone:0", - [ 6 ] = "SolarExpansion:solarCoreResonant:0", - [ 7 ] = "SolarExpansion:solarPanelRedstone:0", - }, - count = 1, - }, - [ "EnderIO:itemRedstoneConduit:2" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "EnderIO:itemMaterial:1", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "EnderIO:itemMaterial:1", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "EnderIO:itemAlloy:3", - [ 6 ] = "EnderIO:itemAlloy:3", - [ 7 ] = "EnderIO:itemAlloy:3", - }, - count = 8, - }, - [ "EnderIO:itemMaterial:6" ] = { - ingredients = { - "ThermalFoundation:material:108", - "EnderIO:itemMaterial:4", - "ThermalFoundation:material:108", - [ 9 ] = "ThermalFoundation:material:108", - [ 10 ] = "EnderIO:itemMaterial:4", - [ 11 ] = "ThermalFoundation:material:108", - [ 5 ] = "EnderIO:itemMaterial:4", - [ 6 ] = "Forestry:thermionicTubes:9", - [ 7 ] = "EnderIO:itemMaterial:4", - }, - count = 1, - }, - [ "IC2:itemCasing:1" ] = { - ingredients = { - "IC2:itemPlates:1", - [ 5 ] = "IC2:itemToolForgeHammer:*", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "minecraft:golden_carrot:0" ] = { - ingredients = { - "minecraft:gold_nugget:0", - "minecraft:gold_nugget:0", - "minecraft:gold_nugget:0", - [ 9 ] = "minecraft:gold_nugget:0", - [ 10 ] = "minecraft:gold_nugget:0", - [ 11 ] = "minecraft:gold_nugget:0", - [ 5 ] = "minecraft:gold_nugget:0", - [ 6 ] = "minecraft:carrot:0", - [ 7 ] = "minecraft:gold_nugget:0", - }, - count = 1, - }, - [ "minecraft:fermented_spider_eye:0" ] = { - ingredients = { - "minecraft:spider_eye:0", - "minecraft:brown_mushroom:0", - [ 5 ] = "minecraft:sugar:0", - }, - count = 1, - }, - [ "EnderIO:itemBasicCapacitor:1" ] = { - ingredients = { - [ 10 ] = "EnderIO:itemAlloy:1", - [ 2 ] = "EnderIO:itemAlloy:1", - [ 5 ] = "EnderIO:itemBasicCapacitor:0", - [ 6 ] = "Forestry:thermionicTubes:7", - [ 7 ] = "EnderIO:itemBasicCapacitor:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockQuantumLinkChamber:0" ] = { - ingredients = { - "appliedenergistics2:tile.BlockQuartzGlass:0", - "appliedenergistics2:item.ItemMultiMaterial:9", - "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 9 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:9", - [ 11 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:9", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:9", - }, - count = 1, - }, - [ "IC2:itemIngot:4" ] = { - ingredients = { - "IC2:itemPlates:4", - "IC2:itemPlates:4", - "IC2:itemPlates:4", - [ 9 ] = "IC2:itemPlates:1", - [ 10 ] = "IC2:itemPlates:1", - [ 11 ] = "IC2:itemPlates:1", - [ 5 ] = "IC2:itemPlates:2", - [ 6 ] = "IC2:itemPlates:2", - [ 7 ] = "IC2:itemPlates:2", - }, - count = 2, - }, - [ "excompressum:heavySieve:0" ] = { - ingredients = { - "minecraft:log:0", - "excompressum:heavySilkMesh:0", - "minecraft:log:0", - [ 9 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:log:0", - [ 6 ] = "excompressum:heavySilkMesh:0", - [ 7 ] = "minecraft:log:0", - }, - count = 1, - }, - [ "IC2:blockMachine:0" ] = { - ingredients = { - "IC2:itemPlates:4", - "IC2:itemPlates:4", - "IC2:itemPlates:4", - [ 9 ] = "IC2:itemPlates:4", - [ 10 ] = "IC2:itemPlates:4", - [ 11 ] = "IC2:itemPlates:4", - [ 5 ] = "IC2:itemPlates:4", - [ 6 ] = "BuildCraft|Silicon:redstoneChipset:1", - [ 7 ] = "IC2:itemPlates:4", - }, - count = 1, - }, - [ "IC2:blockGenerator:6" ] = { - ingredients = { - "IC2:itemCasing:4", - "IC2:itemCasing:4", - "IC2:itemCasing:4", - [ 9 ] = "IC2:itemCasing:4", - [ 10 ] = "IC2:blockGenerator:0", - [ 11 ] = "IC2:itemCasing:4", - [ 5 ] = "IC2:itemCasing:4", - [ 6 ] = "IC2:blockReactorChamber:0", - [ 7 ] = "IC2:itemCasing:4", - }, - count = 1, - }, - [ "ComputerCraft:CC-Cable:1" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "minecraft:stone:0", - [ 11 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:redstone_block:0", - [ 7 ] = "minecraft:stone:0", - }, - count = 1, - }, - [ "minecraft:golden_apple:0" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:apple:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 1, - }, - [ "TConstruct:LavaTank:0" ] = { - ingredients = { - "TConstruct:materials:2", - "TConstruct:materials:2", - "TConstruct:materials:2", - [ 9 ] = "TConstruct:materials:2", - [ 10 ] = "TConstruct:materials:2", - [ 11 ] = "TConstruct:materials:2", - [ 5 ] = "TConstruct:materials:2", - [ 6 ] = "minecraft:glass:0", - [ 7 ] = "TConstruct:materials:2", - }, - count = 1, - }, - [ "IC2:blockIronScaffold:0" ] = { - ingredients = { - "IC2:itemPlates:4", - "IC2:itemPlates:4", - "IC2:itemPlates:4", - [ 9 ] = "IC2:itemPlates:4", - [ 10 ] = "IC2:itemPlates:4", - [ 11 ] = "IC2:itemPlates:4", - [ 5 ] = "IC2:blockFenceIron:0", - [ 6 ] = "IC2:blockFenceIron:0", - [ 7 ] = "IC2:blockFenceIron:0", - }, - count = 16, - }, - [ "IC2:itemCable:6" ] = { - ingredients = { - "MineFactoryReloaded:rubber.bar:0", - "MineFactoryReloaded:rubber.bar:0", - [ 5 ] = "MineFactoryReloaded:rubber.bar:0", - [ 6 ] = "IC2:itemCable:5", - }, - count = 1, - }, - [ "ThermalExpansion:capacitor:2" ] = { - count = 1, - ingredients = { - [ 10 ] = "IC2:itemDust:13", - [ 11 ] = "ProjRed|Core:projectred.core.part:56", - [ 2 ] = "ProjRed|Core:projectred.core.part:56", - [ 5 ] = "TConstruct:materials:9", - [ 6 ] = "IC2:itemIngot:5", - [ 7 ] = "TConstruct:materials:9", - [ 9 ] = "ProjRed|Core:projectred.core.part:56", - }, - maxCount = 1, - }, - [ "StorageDrawers:controller:0" ] = { - ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "BuildCraft|Silicon:redstoneChipset:3", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:comparator:0", - [ 6 ] = "StorageDrawers:fullDrawers4:0", - [ 7 ] = "minecraft:comparator:0", - }, - count = 1, - }, - [ "SolarExpansion:solarPanelRedstone:0" ] = { - ingredients = { - "SolarExpansion:solarPanelHardened:0", - "SolarExpansion:solarPanelHardened:0", - "SolarExpansion:solarPanelHardened:0", - [ 9 ] = "SolarExpansion:solarPanelHardened:0", - [ 10 ] = "SolarExpansion:solarPanelHardened:0", - [ 11 ] = "SolarExpansion:solarPanelHardened:0", - [ 5 ] = "SolarExpansion:solarPanelHardened:0", - [ 6 ] = "SolarExpansion:solarCoreRedstone:0", - [ 7 ] = "SolarExpansion:solarPanelHardened:0", - }, - count = 1, - }, - [ "EnderIO:itemMachinePart:1" ] = { - ingredients = { - "minecraft:stick:0", - "minecraft:cobblestone:0", - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - count = 1, - }, - [ "rftools:machineBase:0" ] = { - ingredients = { - "minecraft:stone_slab:0", - "minecraft:stone_slab:0", - "minecraft:stone_slab:0", - [ 9 ] = "minecraft:stone_slab:0", - [ 10 ] = "minecraft:stone_slab:0", - [ 11 ] = "minecraft:stone_slab:0", - [ 5 ] = "minecraft:stone_slab:0", - [ 6 ] = "ThermalExpansion:Frame:3", - [ 7 ] = "minecraft:stone_slab:0", - }, - count = 1, - }, - [ "IC2:itemLathingTool:0" ] = { - count = 1, - ingredients = { - "IC2:itemPlates:5", - [ 6 ] = "IC2:itemCasing:4", - [ 11 ] = "IC2:itemCasing:4", - }, - maxCount = 1, - }, - [ "minecraft:dye:8" ] = { - ingredients = { - "ThermalFoundation:material:2", - "minecraft:dye:15", - }, - count = 2, - }, - [ "IC2:blockElectric:4" ] = { - count = 1, - ingredients = { - "IC2:itemCable:0", - [ 5 ] = "IC2:blockMachine:0", - [ 9 ] = "IC2:itemCable:0", - }, - maxCount = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:36" ] = { - ingredients = { - "minecraft:redstone:0", - "appliedenergistics2:item.ItemMultiMaterial:23", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:35", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:35", - [ 6 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:35", - }, - count = 1, - }, - [ "IC2:itemFluidCell:0" ] = { - ingredients = { - [ 10 ] = "IC2:itemCasing:1", - [ 2 ] = "IC2:itemCasing:1", - [ 5 ] = "IC2:itemCasing:1", - [ 6 ] = "minecraft:glass_pane:0", - [ 7 ] = "IC2:itemCasing:1", - }, - count = 1, - }, - [ "ImmersiveEngineering:treatedWood:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "ImmersiveEngineering:fluidContainers:1", - [ 7 ] = "minecraft:planks:0", - }, - count = 8, - }, - [ "ThermalExpansion:capacitor:5" ] = { - count = 1, - ingredients = { - [ 10 ] = "ThermalFoundation:material:512", - [ 11 ] = "ProjRed|Core:projectred.core.part:56", - [ 2 ] = "ProjRed|Core:projectred.core.part:56", - [ 5 ] = "ThermalFoundation:material:76", - [ 6 ] = "ThermalExpansion:capacitor:4", - [ 7 ] = "ThermalFoundation:material:76", - [ 9 ] = "ProjRed|Core:projectred.core.part:56", - }, - maxCount = 1, - }, - [ "ThermalExpansion:material:1" ] = { - ingredients = { - [ 6 ] = "minecraft:gold_ingot:0", - [ 3 ] = "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "RedstoneArsenal:material:64" ] = { - ingredients = { - "RedstoneArsenal:material:32", - }, - count = 9, - }, - [ "minecraft:planks:0" ] = { - ingredients = { - "minecraft:log:0", - }, - count = 2, - }, - [ "SolarExpansion:solarCoreRedstone:0" ] = { - ingredients = { - [ 10 ] = "ThermalFoundation:material:103", - [ 2 ] = "ThermalFoundation:material:103", - [ 5 ] = "ThermalFoundation:material:103", - [ 6 ] = "SolarExpansion:solarCoreHardened:0", - [ 7 ] = "ThermalFoundation:material:103", - }, - count = 1, - }, - [ "ThermalExpansion:material:0" ] = { - ingredients = { - [ 10 ] = "minecraft:iron_ingot:0", - [ 2 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "minecraft:cauldron:0" ] = { - ingredients = { - "IC2:itemPlates:4", - [ 9 ] = "IC2:itemPlates:4", - [ 10 ] = "IC2:itemPlates:4", - [ 11 ] = "IC2:itemPlates:4", - [ 3 ] = "IC2:itemPlates:4", - [ 5 ] = "IC2:itemPlates:4", - [ 7 ] = "IC2:itemPlates:4", - }, - count = 1, - }, - [ "ThermalDynamics:servo:1" ] = { - ingredients = { - "TConstruct:materials:19", - "minecraft:glass:0", - "TConstruct:materials:19", - [ 5 ] = "ThermalFoundation:material:72", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "ThermalFoundation:material:72", - }, - count = 2, - }, - [ "IC2:itemCable:1" ] = { - ingredients = { - "IC2:itemToolCutter:*", - "IC2:itemPlates:0", - }, - craftingTools = { - [ "IC2:itemToolCutter:*" ] = true, - }, - maxCount = 1, - count = 2, - }, - [ "Forestry:sturdyMachine:0" ] = { - ingredients = { - "TConstruct:materials:13", - "ThermalFoundation:material:137", - "TConstruct:materials:13", - [ 9 ] = "TConstruct:materials:13", - [ 10 ] = "ThermalFoundation:material:137", - [ 11 ] = "TConstruct:materials:13", - [ 5 ] = "ThermalFoundation:material:137", - [ 7 ] = "ThermalFoundation:material:137", - }, - count = 1, - }, - [ "AdvancedSolarPanel:asp_crafting_items:0" ] = { - ingredients = { - "AdvancedSolarPanel:asp_crafting_items:9", - "AdvancedSolarPanel:asp_crafting_items:9", - "AdvancedSolarPanel:asp_crafting_items:9", - [ 9 ] = "AdvancedSolarPanel:asp_crafting_items:9", - [ 10 ] = "AdvancedSolarPanel:asp_crafting_items:9", - [ 11 ] = "AdvancedSolarPanel:asp_crafting_items:9", - [ 5 ] = "AdvancedSolarPanel:asp_crafting_items:9", - [ 6 ] = "AdvancedSolarPanel:asp_crafting_items:9", - [ 7 ] = "AdvancedSolarPanel:asp_crafting_items:9", - }, - count = 1, - }, - [ "ThermalExpansion:Machine:3:0374ae43fbe5610e1d68e764ac00a016" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 11 ] = "ThermalFoundation:material:136", - [ 2 ] = "minecraft:bucket:0", - [ 5 ] = "ThermalFoundation:material:72", - [ 6 ] = "ThermalExpansion:Frame:3", - [ 7 ] = "ThermalFoundation:material:72", - [ 9 ] = "ThermalFoundation:material:136", - }, - count = 1, - }, - [ "rftools:storageModuleItem:2" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:redstone_block:0", - [ 11 ] = "minecraft:quartz_block:0", - [ 2 ] = "minecraft:chest:0", - [ 5 ] = "minecraft:gold_block:0", - [ 6 ] = "rftools:storageModuleItem:1", - [ 7 ] = "minecraft:gold_block:0", - [ 9 ] = "minecraft:quartz_block:0", - }, - maxCount = 1, - }, - [ "EnderIO:itemBasicFilterUpgrade:0" ] = { - ingredients = { - [ 10 ] = "minecraft:paper:0", - [ 2 ] = "minecraft:paper:0", - [ 5 ] = "minecraft:paper:0", - [ 6 ] = "minecraft:hopper:0", - [ 7 ] = "minecraft:paper:0", - }, - count = 1, - }, - [ "IC2:blockGenerator:0" ] = { - ingredients = { - [ 10 ] = "IC2:blockMachine:1", - [ 2 ] = "IC2:itemBatREDischarged:0", - [ 5 ] = "IC2:itemPlates:4", - [ 6 ] = "IC2:itemPlates:4", - [ 7 ] = "IC2:itemPlates:4", - }, - count = 1, - }, - [ "IC2:blockMachine:12" ] = { - ingredients = { - "IC2:itemPlates:5", - "IC2:itemPartCarbonPlate:0", - "IC2:itemPlates:5", - [ 9 ] = "IC2:itemPlates:5", - [ 10 ] = "IC2:itemPartCarbonPlate:0", - [ 11 ] = "IC2:itemPlates:5", - [ 5 ] = "IC2:itemPartAlloy:0", - [ 6 ] = "IC2:blockMachine:0", - [ 7 ] = "IC2:itemPartAlloy:0", - }, - count = 1, - }, - [ "IC2:reactorVent:1" ] = { - count = 1, - ingredients = { - "minecraft:iron_bars:0", - "IC2:itemPlates:4", - "minecraft:iron_bars:0", - [ 9 ] = "minecraft:iron_bars:0", - [ 10 ] = "IC2:itemPlates:4", - [ 11 ] = "minecraft:iron_bars:0", - [ 5 ] = "IC2:itemPlates:4", - [ 6 ] = "IC2:itemRecipePart:1", - [ 7 ] = "IC2:itemPlates:4", - }, - maxCount = 1, - }, - [ "minecraft:iron_bars:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 16, - }, - [ "gendustry:BeeReceptacle:0" ] = { - ingredients = { - "TConstruct:materials:13", - "TConstruct:materials:13", - "TConstruct:materials:13", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:light_weighted_pressure_plate:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "TConstruct:materials:13", - [ 6 ] = "minecraft:glass_pane:0", - [ 7 ] = "TConstruct:materials:13", - }, - count = 1, - }, - [ "IC2:reactorUraniumQuad:1" ] = { - ingredients = { - "IC2:reactorUraniumSimple:1", - "IC2:itemPlates:4", - "IC2:reactorUraniumSimple:1", - [ 9 ] = "IC2:reactorUraniumSimple:1", - [ 10 ] = "IC2:itemPlates:4", - [ 11 ] = "IC2:reactorUraniumSimple:1", - [ 5 ] = "IC2:itemPlates:0", - [ 6 ] = "IC2:itemPlates:4", - [ 7 ] = "IC2:itemPlates:0", - }, - count = 1, - }, - [ "ThermalExpansion:capacitor:4" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:diamond:0", - [ 11 ] = "ProjRed|Core:projectred.core.part:56", - [ 2 ] = "ProjRed|Core:projectred.core.part:56", - [ 5 ] = "ThermalFoundation:material:71", - [ 6 ] = "ThermalExpansion:capacitor:3", - [ 7 ] = "ThermalFoundation:material:71", - [ 9 ] = "ProjRed|Core:projectred.core.part:56", - }, - maxCount = 1, - }, - [ "IC2:itemCable:13" ] = { - ingredients = { - "IC2:itemCable:10", - "MineFactoryReloaded:rubber.bar:0", - }, - count = 1, - }, - [ "ComputerCraft:CC-Peripheral:1" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "minecraft:stone:0", - [ 11 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:ender_pearl:0", - [ 7 ] = "minecraft:stone:0", - }, - count = 1, - }, - [ "AWWayofTime:ritualStone:0" ] = { - ingredients = { - "minecraft:obsidian:0", - "AWWayofTime:reinforcedSlate:0", - "minecraft:obsidian:0", - [ 9 ] = "minecraft:obsidian:0", - [ 10 ] = "AWWayofTime:reinforcedSlate:0", - [ 11 ] = "minecraft:obsidian:0", - [ 5 ] = "AWWayofTime:reinforcedSlate:0", - [ 6 ] = "AWWayofTime:apprenticeBloodOrb:0:9c04c731779ccb7c3d3ba68621d82aef", - [ 7 ] = "AWWayofTime:reinforcedSlate:0", - }, - craftingTools = { - [ "AWWayofTime:apprenticeBloodOrb:0:9c04c731779ccb7c3d3ba68621d82aef" ] = true, - }, - count = 4, - maxCount = 1, - }, - [ "ComputerCraft:CC-Computer:16384" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "BuildCraft|Silicon:redstoneChipset:2", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:24", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 1, - }, - [ "EnderIO:blockPoweredSpawner:0" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "minecraft:skull:2", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemMaterial:6", - [ 10 ] = "EnderIO:itemFrankenSkull:1", - [ 11 ] = "EnderIO:itemMaterial:6", - [ 5 ] = "EnderIO:itemAlloy:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "EnderIO:itemAlloy:0", - }, - count = 1, - }, - [ "TConstruct:chisel:80:b82f7c273f26c98be507d23ce781702a" ] = { - count = 1, - ingredients = { - "TConstruct:chisel:*:047b5d96292f2ca1af40f9e94d3cbff3", - "minecraft:stonebrick:0", - }, - maxCount = 1, - }, - [ "StorageDrawers:upgradeVoid:0" ] = { - ingredients = { - "minecraft:stick:0", - "minecraft:stick:0", - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:obsidian:0", - [ 6 ] = "StorageDrawers:upgradeTemplate:0", - [ 7 ] = "minecraft:obsidian:0", - }, - count = 1, - }, - [ "IC2:itemPartCarbonMesh:0" ] = { - ingredients = { - "IC2:itemPartCarbonFibre:0", - "IC2:itemPartCarbonFibre:0", - }, - count = 1, - }, - [ "EnderIO:itemLiquidConduit:2" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "ThermalDynamics:servo:2", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "ThermalDynamics:servo:2", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "ThermalDynamics:ThermalDynamics_16:2", - [ 6 ] = "ThermalDynamics:ThermalDynamics_16:2", - [ 7 ] = "ThermalDynamics:ThermalDynamics_16:2", - }, - count = 3, - }, - [ "exnihilo:porcelain:0" ] = { - ingredients = { - "minecraft:clay_ball:0", - "minecraft:dye:15", - }, - count = 1, - }, - [ "StorageDrawers:halfDrawers2:0" ] = { - ingredients = { - "minecraft:wooden_slab:0", - "minecraft:chest:0", - "minecraft:wooden_slab:0", - [ 9 ] = "minecraft:wooden_slab:0", - [ 10 ] = "minecraft:chest:0", - [ 11 ] = "minecraft:wooden_slab:0", - [ 5 ] = "minecraft:wooden_slab:0", - [ 6 ] = "minecraft:wooden_slab:0", - [ 7 ] = "minecraft:wooden_slab:0", - }, - count = 2, - }, - [ "IC2:itemRTGPellet:0" ] = { - count = 1, - ingredients = { - "IC2:itemDensePlates:4", - "IC2:itemPlutonium:0", - "IC2:itemDensePlates:4", - [ 9 ] = "IC2:itemDensePlates:4", - [ 10 ] = "IC2:itemPlutonium:0", - [ 11 ] = "IC2:itemDensePlates:4", - [ 5 ] = "IC2:itemDensePlates:4", - [ 6 ] = "IC2:itemPlutonium:0", - [ 7 ] = "IC2:itemDensePlates:4", - }, - maxCount = 1, - }, - [ "Botania:endStoneBrick:0" ] = { - ingredients = { - "minecraft:end_stone:0", - "minecraft:end_stone:0", - [ 5 ] = "minecraft:end_stone:0", - [ 6 ] = "minecraft:end_stone:0", - }, - count = 4, - }, - [ "simplyjetpacks:components:22" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemBasicCapacitor:0", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemMachinePart:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "EnderIO:itemMachinePart:0", - [ 5 ] = "EnderIO:itemPowerConduit:0", - [ 6 ] = "EnderIO:itemBasicCapacitor:0", - [ 7 ] = "EnderIO:itemPowerConduit:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockFluix:0" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:7", - "appliedenergistics2:item.ItemMultiMaterial:7", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:7", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:7", - }, - count = 1, - }, - [ "Thaumcraft:ItemResource:13" ] = { - ingredients = { - "ThermalFoundation:material:2", - "minecraft:slime_ball:0", - [ 9 ] = "minecraft:paper:0", - [ 10 ] = "minecraft:paper:0", - [ 5 ] = "minecraft:paper:0", - [ 6 ] = "minecraft:paper:0", - }, - count = 4, - }, - [ "appliedenergistics2:tile.BlockDrive:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "appliedenergistics2:item.ItemMultiMaterial:24", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:24", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiPart:16", - [ 7 ] = "appliedenergistics2:item.ItemMultiPart:16", - }, - count = 1, - }, - [ "ThermalExpansion:Device:2" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 2 ] = "minecraft:chest:0", - [ 5 ] = "Forestry:gearTin:0", - [ 6 ] = "minecraft:piston:0", - [ 7 ] = "Forestry:gearTin:0", - }, - count = 1, - }, - [ "simplyjetpacks:fluxpacks:2:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - [ 10 ] = "ThermalFoundation:material:72", - [ 2 ] = "ThermalFoundation:material:72", - [ 5 ] = "ThermalFoundation:material:72", - [ 6 ] = "simplyjetpacks:fluxpacks:1:a84335f60eb302d08e1caa3ab88baf58", - [ 7 ] = "ThermalFoundation:material:72", - }, - maxCount = 1, - }, - [ "simplyjetpacks:fluxpacks:3:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - [ 10 ] = "ThermalExpansion:material:3", - [ 11 ] = "IC2:itemIngot:5", - [ 2 ] = "ThermalExpansion:Frame:7", - [ 5 ] = "ThermalFoundation:material:71", - [ 6 ] = "simplyjetpacks:fluxpacks:2:a84335f60eb302d08e1caa3ab88baf58", - [ 7 ] = "ThermalFoundation:material:71", - [ 9 ] = "IC2:itemIngot:5", - }, - maxCount = 1, - }, - [ "simplyjetpacks:fluxpacks:4:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - [ 10 ] = "ThermalFoundation:material:76", - [ 2 ] = "ThermalFoundation:material:76", - [ 5 ] = "ThermalFoundation:material:76", - [ 6 ] = "simplyjetpacks:fluxpacks:3:a84335f60eb302d08e1caa3ab88baf58", - [ 7 ] = "ThermalFoundation:material:76", - }, - maxCount = 1, - }, - [ "simplyjetpacks:fluxpacks:1:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "IC2:itemIngot:5", - "ThermalExpansion:Cell:1:3db1ea5799a097122ca31610402b18d5", - "IC2:itemIngot:5", - [ 5 ] = "IC2:itemIngot:5", - [ 6 ] = "simplyjetpacks:components:0", - [ 7 ] = "IC2:itemIngot:5", - }, - maxCount = 1, - }, - [ "OpenBlocks:generic:0" ] = { - ingredients = { - [ 2 ] = "minecraft:stick:0", - [ 3 ] = "minecraft:leather:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:leather:0", - [ 7 ] = "minecraft:leather:0", - [ 9 ] = "minecraft:leather:0", - [ 10 ] = "minecraft:leather:0", - [ 11 ] = "minecraft:leather:0", - }, - count = 1, - }, - [ "simplyjetpacks:jetpacksEIO:2" ] = { - count = 1, - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemBasicCapacitor:0", - "EnderIO:itemAlloy:0", - [ 9 ] = "simplyjetpacks:components:22", - [ 11 ] = "simplyjetpacks:components:22", - [ 5 ] = "EnderIO:itemAlloy:0", - [ 6 ] = "simplyjetpacks:jetpacksEIO:1", - [ 7 ] = "EnderIO:itemAlloy:0", - }, - maxCount = 1, - }, - [ "IC2:itemPlates:4" ] = { - ingredients = { - "IC2:itemToolForgeHammer:*", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "rftools:modularStorageBlock:0" ] = { - ingredients = { - "minecraft:redstone:0", - "minecraft:chest:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:quartz:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:quartz:0", - [ 6 ] = "rftools:machineFrame:0", - [ 7 ] = "minecraft:quartz:0", - }, - count = 1, - }, - [ "EnderIO:blockPainter:0" ] = { - ingredients = { - "minecraft:quartz:0", - "minecraft:diamond:0", - "minecraft:quartz:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "EnderIO:itemAlloy:0", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:itemAlloy:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "EnderIO:itemAlloy:0", - }, - count = 1, - }, - [ "simplyjetpacks:jetpacksEIO:1" ] = { - count = 1, - ingredients = { - "EnderIO:itemAlloy:4", - "EnderIO:itemBasicCapacitor:0", - "EnderIO:itemAlloy:4", - [ 9 ] = "simplyjetpacks:components:21", - [ 11 ] = "simplyjetpacks:components:21", - [ 5 ] = "EnderIO:itemAlloy:4", - [ 6 ] = "simplyjetpacks:components:0", - [ 7 ] = "EnderIO:itemAlloy:4", - }, - maxCount = 1, - }, - [ "excompressum:autoCompressedHammer:0" ] = { - ingredients = { - "Railcraft:ingot:0", - "minecraft:heavy_weighted_pressure_plate:0", - "Railcraft:ingot:0", - [ 9 ] = "Railcraft:ingot:0", - [ 10 ] = "minecraft:heavy_weighted_pressure_plate:0", - [ 11 ] = "Railcraft:ingot:0", - [ 5 ] = "Railcraft:ingot:0", - [ 6 ] = "excompressum:compressedHammerDiamond:*", - [ 7 ] = "Railcraft:ingot:0", - }, - count = 1, - }, - [ "extracells:part.base:3" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:180", - "appliedenergistics2:item.ItemMultiMaterial:43", - "appliedenergistics2:item.ItemMultiMaterial:44", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:22", - [ 6 ] = "minecraft:dye:4", - [ 7 ] = "minecraft:dye:4", - }, - count = 1, - }, - [ "ImmersiveEngineering:metalDevice:6" ] = { - ingredients = { - "minecraft:hardened_clay:0", - "TConstruct:materials:11", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "TConstruct:materials:11", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "TConstruct:materials:11", - [ 7 ] = "minecraft:hardened_clay:0", - }, - count = 4, - }, - [ "EnderIO:blockWirelessCharger:0" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemAlloy:0", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "EnderIO:itemBasicCapacitor:2", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:itemAlloy:0", - [ 6 ] = "EnderIO:itemFrankenSkull:3", - [ 7 ] = "EnderIO:itemAlloy:0", - }, - count = 1, - }, - [ "ThermalExpansion:Frame:4" ] = { - ingredients = { - "IC2:itemIngot:5", - "minecraft:glass:0", - "IC2:itemIngot:5", - [ 9 ] = "IC2:itemIngot:5", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "IC2:itemIngot:5", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:redstone_block:0", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockQuartzGlass:0" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:3", - "minecraft:glass:0", - "appliedenergistics2:item.ItemMultiMaterial:3", - [ 9 ] = "appliedenergistics2:item.ItemMultiMaterial:3", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "appliedenergistics2:item.ItemMultiMaterial:3", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:3", - [ 7 ] = "minecraft:glass:0", - }, - count = 4, - }, - [ "EnderIO:itemBrokenSpawner:0" ] = { - ingredients = { - "EnderIO:blockDarkIronBars:0", - "EnderIO:blockDarkIronBars:0", - "EnderIO:blockDarkIronBars:0", - [ 9 ] = "EnderIO:blockDarkIronBars:0", - [ 10 ] = "EnderIO:blockDarkIronBars:0", - [ 11 ] = "EnderIO:blockDarkIronBars:0", - [ 5 ] = "EnderIO:blockDarkIronBars:0", - [ 7 ] = "EnderIO:blockDarkIronBars:0", - }, - count = 1, - }, - [ "IC2:itemMOX:0" ] = { - ingredients = { - "IC2:itemUran238:0", - "IC2:itemUran238:0", - "IC2:itemUran238:0", - [ 9 ] = "IC2:itemUran238:0", - [ 10 ] = "IC2:itemUran238:0", - [ 11 ] = "IC2:itemUran238:0", - [ 5 ] = "IC2:itemPlutonium:0", - [ 6 ] = "IC2:itemPlutonium:0", - [ 7 ] = "IC2:itemPlutonium:0", - }, - count = 1, - }, - [ "Railcraft:machine.beta:14:46378233e3f894c2aeba8d5bd261fc3c" ] = { - ingredients = { - "minecraft:glass_pane:0", - "Railcraft:part.plate:1", - "minecraft:glass_pane:0", - [ 9 ] = "minecraft:glass_pane:0", - [ 10 ] = "Railcraft:part.plate:1", - [ 11 ] = "minecraft:glass_pane:0", - [ 5 ] = "Railcraft:part.plate:1", - [ 6 ] = "minecraft:glass_pane:0", - [ 7 ] = "Railcraft:part.plate:1", - }, - count = 8, - }, - [ "Railcraft:machine.beta:13:46378233e3f894c2aeba8d5bd261fc3c" ] = { - ingredients = { - "Railcraft:part.plate:1", - "Railcraft:part.plate:1", - [ 5 ] = "Railcraft:part.plate:1", - [ 6 ] = "Railcraft:part.plate:1", - }, - craftingTools = { - [ "Railcraft:part.plate:1" ] = true, - }, - maxCount = 1, - count = 8, - }, - [ "Railcraft:machine.beta:15:46378233e3f894c2aeba8d5bd261fc3c" ] = { - ingredients = { - "minecraft:iron_bars:0", - "Railcraft:part.plate:1", - "minecraft:iron_bars:0", - [ 9 ] = "minecraft:iron_bars:0", - [ 10 ] = "Railcraft:part.plate:1", - [ 11 ] = "minecraft:iron_bars:0", - [ 5 ] = "Railcraft:part.plate:1", - [ 6 ] = "minecraft:lever:0", - [ 7 ] = "Railcraft:part.plate:1", - }, - count = 8, - }, - [ "simplyjetpacks:components:12" ] = { - ingredients = { - "ThermalFoundation:material:72", - "ThermalExpansion:material:1", - "ThermalFoundation:material:72", - [ 9 ] = "ThermalFoundation:material:72", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "ThermalFoundation:material:72", - [ 5 ] = "ThermalDynamics:ThermalDynamics_0:1", - [ 6 ] = "ThermalExpansion:Dynamo:3", - [ 7 ] = "ThermalDynamics:ThermalDynamics_0:1", - }, - count = 1, - }, - [ "ExtraUtilities:extractor_base:0" ] = { - ingredients = { - [ 10 ] = "minecraft:chest:0", - [ 11 ] = "minecraft:stone:0", - [ 2 ] = "ExtraUtilities:pipes:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "minecraft:redstone_block:0", - [ 7 ] = "minecraft:redstone:0", - [ 9 ] = "minecraft:stone:0", - }, - count = 1, - }, - [ "EnderIO:itemSoulVessel:0" ] = { - ingredients = { - [ 7 ] = "EnderIO:blockFusedQuartz:0", - [ 2 ] = "EnderIO:itemAlloy:7", - [ 10 ] = "EnderIO:blockFusedQuartz:0", - [ 5 ] = "EnderIO:blockFusedQuartz:0", - }, - count = 1, - }, - [ "IC2:blockReactorChamber:0" ] = { - ingredients = { - [ 10 ] = "IC2:itemPlates:6", - [ 2 ] = "IC2:itemPlates:6", - [ 5 ] = "IC2:itemPlates:6", - [ 6 ] = "IC2:blockMachine:0", - [ 7 ] = "IC2:itemPlates:6", - }, - count = 1, - }, - [ "BiblioCraft:Armor Stand:0" ] = { - ingredients = { - [ 9 ] = "minecraft:stone_slab:0", - [ 10 ] = "minecraft:stone_slab:0", - [ 11 ] = "minecraft:stone_slab:0", - [ 2 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "excompressum:compressedHammerDiamond:0" ] = { - count = 1, - ingredients = { - "exnihilo:hammer_diamond:*", - "exnihilo:hammer_diamond:*", - "exnihilo:hammer_diamond:*", - [ 9 ] = "exnihilo:hammer_diamond:*", - [ 10 ] = "exnihilo:hammer_diamond:*", - [ 11 ] = "exnihilo:hammer_diamond:*", - [ 5 ] = "exnihilo:hammer_diamond:*", - [ 6 ] = "exnihilo:hammer_diamond:*", - [ 7 ] = "exnihilo:hammer_diamond:*", - }, - maxCount = 1, - }, - [ "TConstruct:CraftedSoil:1" ] = { - ingredients = { - "minecraft:gravel:0", - "minecraft:clay_ball:0", - [ 5 ] = "minecraft:sand:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockCraftingUnit:1" ] = { - ingredients = { - "appliedenergistics2:tile.BlockCraftingUnit:0", - "appliedenergistics2:item.ItemMultiMaterial:24", - }, - count = 1, - }, - [ "IC2:reactorHeatSwitchSpread:1" ] = { - count = 1, - ingredients = { - [ 10 ] = "IC2:itemPlates:3", - [ 2 ] = "IC2:itemPlates:3", - [ 5 ] = "IC2:itemPlates:3", - [ 6 ] = "IC2:reactorHeatSwitch:*", - [ 7 ] = "IC2:itemPlates:3", - }, - maxCount = 1, - }, - [ "EnderIO:blockTank:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_bars:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_bars:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_bars:0", - [ 6 ] = "minecraft:glass:0", - [ 7 ] = "minecraft:iron_bars:0", - }, - count = 1, - }, - [ "SolarExpansion:solarCoreHardened:0" ] = { - ingredients = { - [ 10 ] = "ThermalFoundation:material:104", - [ 2 ] = "ThermalFoundation:material:104", - [ 5 ] = "ThermalFoundation:material:104", - [ 6 ] = "SolarExpansion:solarCoreLeadstone:0", - [ 7 ] = "ThermalFoundation:material:104", - }, - count = 1, - }, - [ "IC2:reactorVentSpread:0" ] = { - count = 1, - ingredients = { - "minecraft:iron_bars:0", - "IC2:itemPlates:1", - "minecraft:iron_bars:0", - [ 9 ] = "minecraft:iron_bars:0", - [ 10 ] = "IC2:itemPlates:1", - [ 11 ] = "minecraft:iron_bars:0", - [ 5 ] = "IC2:itemPlates:1", - [ 6 ] = "IC2:reactorVent:*", - [ 7 ] = "IC2:itemPlates:1", - }, - maxCount = 1, - }, - [ "Forestry:apiculture:0" ] = { - ingredients = { - "minecraft:wooden_slab:0", - "minecraft:wooden_slab:0", - "minecraft:wooden_slab:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "Forestry:impregnatedCasing:0", - [ 7 ] = "minecraft:planks:0", - }, - count = 1, - }, - [ "StevesCarts:ModuleComponents:45" ] = { - ingredients = { - "minecraft:magma_cream:0", - "minecraft:fermented_spider_eye:0", - "minecraft:magma_cream:0", - [ 9 ] = "minecraft:magma_cream:0", - [ 10 ] = "minecraft:fermented_spider_eye:0", - [ 11 ] = "minecraft:magma_cream:0", - [ 5 ] = "minecraft:ghast_tear:0", - [ 6 ] = "minecraft:ender_eye:0", - [ 7 ] = "minecraft:ghast_tear:0", - }, - count = 1, - }, - [ "StorageDrawers:tape:0" ] = { - count = 1, - ingredients = { - [ 7 ] = "minecraft:paper:0", - [ 2 ] = "minecraft:slime_ball:0", - [ 5 ] = "minecraft:paper:0", - [ 6 ] = "minecraft:paper:0", - }, - maxCount = 1, - }, - [ "EnderIO:blockSolarPanel:0" ] = { - ingredients = { - "EnderIO:itemAlloy:1", - "ThermalExpansion:Glass:0", - "EnderIO:itemAlloy:1", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "minecraft:daylight_detector:0", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:itemMaterial:0", - [ 6 ] = "ThermalExpansion:Glass:0", - [ 7 ] = "EnderIO:itemMaterial:0", - }, - count = 1, - }, - [ "EnderIO:itemXpTransfer:0" ] = { - count = 1, - ingredients = { - [ 6 ] = "EnderIO:itemAlloy:1", - [ 3 ] = "EnderIO:itemAlloy:7", - [ 9 ] = "EnderIO:itemAlloy:7", - }, - maxCount = 1, - }, - [ "ComputerCraft:CC-TurtleAdvanced:0" ] = { - ingredients = { - "minecraft:diamond_sword:*", - "BuildCraft|Silicon:redstoneChipset:2", - "minecraft:diamond_axe:*", - [ 9 ] = "minecraft:diamond_pickaxe:*", - [ 10 ] = "StevesCarts:ModuleComponents:23", - [ 11 ] = "minecraft:diamond_shovel:*", - [ 5 ] = "Forestry:chipsets:3", - [ 6 ] = "IC2:upgradeModule:0", - [ 7 ] = "Forestry:chipsets:3", - }, - count = 1, - }, - [ "OpenBlocks:hangglider:0" ] = { - ingredients = { - "OpenBlocks:generic:0", - "minecraft:stick:0", - "OpenBlocks:generic:0", - }, - count = 1, - }, - [ "Railcraft:machine.beta:0:46378233e3f894c2aeba8d5bd261fc3c" ] = { - ingredients = { - "Railcraft:part.plate:0", - "Railcraft:part.plate:0", - [ 5 ] = "Railcraft:part.plate:0", - [ 6 ] = "Railcraft:part.plate:0", - }, - count = 8, - }, - [ "exnihilo:hammer_diamond:0" ] = { - count = 1, - ingredients = { - [ 7 ] = "minecraft:diamond:0", - [ 9 ] = "minecraft:stick:0", - [ 2 ] = "minecraft:diamond:0", - [ 6 ] = "minecraft:stick:0", - }, - maxCount = 1, - }, - [ "Railcraft:machine.beta:1:46378233e3f894c2aeba8d5bd261fc3c" ] = { - ingredients = { - "minecraft:glass_pane:0", - "Railcraft:part.plate:0", - "minecraft:glass_pane:0", - [ 9 ] = "minecraft:glass_pane:0", - [ 10 ] = "Railcraft:part.plate:0", - [ 11 ] = "minecraft:glass_pane:0", - [ 5 ] = "Railcraft:part.plate:0", - [ 6 ] = "minecraft:glass_pane:0", - [ 7 ] = "Railcraft:part.plate:0", - }, - count = 8, - }, - [ "Railcraft:machine.beta:2:46378233e3f894c2aeba8d5bd261fc3c" ] = { - ingredients = { - "minecraft:iron_bars:0", - "Railcraft:part.plate:0", - "minecraft:iron_bars:0", - [ 9 ] = "minecraft:iron_bars:0", - [ 10 ] = "Railcraft:part.plate:0", - [ 11 ] = "minecraft:iron_bars:0", - [ 5 ] = "Railcraft:part.plate:0", - [ 6 ] = "minecraft:lever:0", - [ 7 ] = "Railcraft:part.plate:0", - }, - count = 8, - }, - [ "ExtraUtilities:filing:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:chest:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:chest:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockDenseEnergyCell:0" ] = { - ingredients = { - "appliedenergistics2:tile.BlockEnergyCell:0", - "appliedenergistics2:tile.BlockEnergyCell:0", - "appliedenergistics2:tile.BlockEnergyCell:0", - [ 9 ] = "appliedenergistics2:tile.BlockEnergyCell:0", - [ 10 ] = "appliedenergistics2:tile.BlockEnergyCell:0", - [ 11 ] = "appliedenergistics2:tile.BlockEnergyCell:0", - [ 5 ] = "appliedenergistics2:tile.BlockEnergyCell:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:23", - [ 7 ] = "appliedenergistics2:tile.BlockEnergyCell:0", - }, - count = 1, - }, - [ "OpenBlocks:vacuumhopper:0" ] = { - ingredients = { - "minecraft:hopper:0", - "minecraft:obsidian:0", - [ 5 ] = "minecraft:ender_eye:0", - }, - count = 1, - }, - [ "StorageDrawers:fullDrawers2:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:chest:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:chest:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - }, - count = 2, - }, - [ "gendustry:Extractor:0" ] = { - ingredients = { - "ThermalFoundation:material:137", - "minecraft:hopper:0", - "ThermalFoundation:material:137", - [ 9 ] = "ThermalFoundation:material:137", - [ 10 ] = "gendustry:PowerModule:0", - [ 11 ] = "ThermalFoundation:material:137", - [ 5 ] = "gendustry:GeneticsProcessor:32767", - [ 6 ] = "Forestry:sturdyMachine:0", - [ 7 ] = "gendustry:GeneticsProcessor:32767", - }, - count = 1, - }, - [ "MineFactoryReloaded:plastic.sheet:0" ] = { - count = 2, - ingredients = { - "ThermalExpansion:material:513", - "MineFactoryReloaded:plastic.raw:0", - "ThermalExpansion:material:513", - [ 9 ] = "ThermalExpansion:material:513", - [ 10 ] = "MineFactoryReloaded:plastic.raw:0", - [ 11 ] = "ThermalExpansion:material:513", - [ 5 ] = "MineFactoryReloaded:plastic.raw:0", - [ 6 ] = "EnderIO:bucketRocket_fuel:0", - [ 7 ] = "MineFactoryReloaded:plastic.raw:0", - }, - maxCount = 96, - }, - [ "ThermalDynamics:ThermalDynamics_16:0" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:Glass:0", - [ 2 ] = "ThermalExpansion:Glass:0", - [ 5 ] = "IC2:itemPlates:0", - [ 6 ] = "minecraft:glass:0", - [ 7 ] = "IC2:itemPlates:0", - }, - count = 6, - }, - [ "EnderIO:itemExtractSpeedUpgrade:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "minecraft:redstone_torch:0", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:itemAlloy:0", - [ 6 ] = "minecraft:piston:0", - [ 7 ] = "EnderIO:itemAlloy:0", - }, - count = 1, - }, - [ "BuildCraft|Transport:pipeWaterproof:0" ] = { - ingredients = { - "Forestry:beeswax:0", - }, - count = 1, - }, - [ "rftools:storageModuleItem:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:quartz:0", - [ 2 ] = "minecraft:chest:0", - [ 5 ] = "minecraft:gold_nugget:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:gold_nugget:0", - [ 9 ] = "minecraft:quartz:0", - }, - maxCount = 1, - }, - [ "IC2:itemPlates:3" ] = { - ingredients = { - "IC2:itemToolForgeHammer:*", - "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:gold_ingot:0", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - maxCount = 1, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:52" ] = { - ingredients = { - "appliedenergistics2:tile.BlockQuartzGlass:0", - "minecraft:glowstone_dust:0", - "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:glowstone_dust:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:0", - [ 7 ] = "minecraft:glowstone_dust:0", - }, - count = 1, - }, - [ "EnderIO:itemLiquidConduit:0" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "ThermalDynamics:servo:0", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "ThermalDynamics:servo:0", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "ThermalDynamics:ThermalDynamics_16:0", - [ 6 ] = "ThermalDynamics:ThermalDynamics_16:0", - [ 7 ] = "ThermalDynamics:ThermalDynamics_16:0", - }, - count = 3, - }, - [ "ImmersiveEngineering:material:1" ] = { - ingredients = { - [ 10 ] = "ImmersiveEngineering:material:0", - [ 11 ] = "ImmersiveEngineering:treatedWood:0", - [ 2 ] = "ImmersiveEngineering:material:0", - [ 5 ] = "ImmersiveEngineering:material:0", - [ 6 ] = "ImmersiveEngineering:treatedWood:0", - [ 7 ] = "ImmersiveEngineering:material:0", - [ 9 ] = "ImmersiveEngineering:treatedWood:0", - }, - count = 1, - }, - [ "minecraft:iron_axe:0" ] = { - count = 1, - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:iron_ingot:0", - }, - maxCount = 1, - }, - [ "IC2:itemCable:2" ] = { - ingredients = { - "IC2:itemToolCutter:*", - "IC2:itemPlates:3", - }, - craftingTools = { - [ "IC2:itemToolCutter:*" ] = true, - }, - maxCount = 1, - count = 4, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:42" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:8", - "appliedenergistics2:item.ItemMultiMaterial:1", - "EnderIO:itemPowderIngot:5", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 2, - }, - [ "ThermalDynamics:servo:2" ] = { - ingredients = { - "TConstruct:materials:19", - "EnderIO:blockFusedQuartz:0", - "TConstruct:materials:19", - [ 5 ] = "ThermalFoundation:material:71", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "ThermalFoundation:material:71", - }, - count = 2, - }, - [ "TConstruct:heartCanister:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "TConstruct:materials:10", - [ 2 ] = "TConstruct:materials:10", - [ 5 ] = "TConstruct:materials:10", - [ 6 ] = "minecraft:bone:0", - [ 7 ] = "TConstruct:materials:10", - }, - maxCount = 10, - }, - [ "RedstoneArsenal:armor.legsFlux:0:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "RedstoneArsenal:material:128", - "RedstoneArsenal:material:128", - "RedstoneArsenal:material:128", - [ 7 ] = "RedstoneArsenal:material:128", - [ 9 ] = "RedstoneArsenal:material:128", - [ 11 ] = "RedstoneArsenal:material:128", - [ 5 ] = "RedstoneArsenal:material:128", - }, - maxCount = 1, - }, - [ "minecraft:diamond_sword:0" ] = { - count = 1, - ingredients = { - "minecraft:diamond:0", - [ 9 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:diamond:0", - }, - maxCount = 1, - }, - [ "IC2:itemCasing:2" ] = { - ingredients = { - "IC2:itemToolForgeHammer:*", - "IC2:itemPlates:2", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:60" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:76", - "appliedenergistics2:item.ItemMultiPart:76", - "appliedenergistics2:item.ItemMultiPart:76", - [ 5 ] = "appliedenergistics2:item.ItemMultiPart:76", - [ 6 ] = "minecraft:dye:15", - [ 7 ] = "appliedenergistics2:item.ItemMultiPart:76", - [ 9 ] = "appliedenergistics2:item.ItemMultiPart:76", - [ 10 ] = "appliedenergistics2:item.ItemMultiPart:76", - [ 11 ] = "appliedenergistics2:item.ItemMultiPart:76", - }, - count = 8, - }, - [ "appliedenergistics2:item.ToolNetherQuartzCuttingKnife:0" ] = { - count = 1, - ingredients = { - [ 9 ] = "minecraft:quartz:0", - [ 10 ] = "minecraft:quartz:0", - [ 3 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:stick:0", - }, - maxCount = 1, - }, - [ "IC2:reactorHeatSwitch:1" ] = { - count = 1, - ingredients = { - "IC2:itemPlates:0", - "IC2:itemPartCircuit:0", - "IC2:itemPlates:0", - [ 9 ] = "IC2:itemPlates:0", - [ 10 ] = "IC2:itemPlates:1", - [ 11 ] = "IC2:itemPlates:0", - [ 5 ] = "IC2:itemPlates:1", - [ 6 ] = "IC2:itemPlates:0", - [ 7 ] = "IC2:itemPlates:1", - }, - maxCount = 1, - }, - [ "RedstoneArsenal:material:193" ] = { - ingredients = { - [ 6 ] = "RedstoneArsenal:material:192", - [ 3 ] = "RedstoneArsenal:material:96", - [ 9 ] = "RedstoneArsenal:material:96", - }, - count = 1, - }, - [ "EnderIO:itemBasicCapacitor:0" ] = { - ingredients = { - [ 10 ] = "ThermalFoundation:material:106", - [ 2 ] = "ThermalFoundation:material:106", - [ 3 ] = "BuildCraft|Silicon:redstoneChipset:0", - [ 5 ] = "ThermalFoundation:material:106", - [ 6 ] = "Forestry:thermionicTubes:11", - [ 7 ] = "ThermalFoundation:material:106", - [ 9 ] = "BuildCraft|Silicon:redstoneChipset:0", - }, - count = 1, - }, - [ "simplyjetpacks:components:0" ] = { - ingredients = { - "minecraft:leather:0", - "minecraft:iron_ingot:0", - "minecraft:leather:0", - [ 5 ] = "minecraft:leather:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:leather:0", - }, - count = 1, - }, - [ "IC2:itemUran:0" ] = { - ingredients = { - "IC2:itemUran238:0", - "IC2:itemUran238:0", - "IC2:itemUran238:0", - [ 9 ] = "IC2:itemUran238:0", - [ 10 ] = "IC2:itemUran238:0", - [ 11 ] = "IC2:itemUran238:0", - [ 5 ] = "IC2:itemUran235small:0", - [ 6 ] = "IC2:itemUran235small:0", - [ 7 ] = "IC2:itemUran235small:0", - }, - count = 1, - }, - [ "minecraft:stick:0" ] = { - ingredients = { - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - }, - count = 2, - }, - [ "EnderIO:blockDarkIronBars:0" ] = { - ingredients = { - "EnderIO:itemAlloy:6", - "EnderIO:itemAlloy:6", - "EnderIO:itemAlloy:6", - [ 5 ] = "EnderIO:itemAlloy:6", - [ 6 ] = "EnderIO:itemAlloy:6", - [ 7 ] = "EnderIO:itemAlloy:6", - }, - count = 16, - }, - [ "appliedenergistics2:item.ItemCrystalSeed:0:5af0f90bcc279578cf09089f43278d57" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:2", - "minecraft:sand:0", - }, - count = 2, - }, - [ "IronChest:BlockIronChest:0" ] = { - ingredients = { - "Railcraft:part.plate:0", - "Railcraft:part.plate:0", - "Railcraft:part.plate:0", - [ 9 ] = "Railcraft:part.plate:0", - [ 10 ] = "Railcraft:part.plate:0", - [ 11 ] = "Railcraft:part.plate:0", - [ 5 ] = "Railcraft:part.plate:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "Railcraft:part.plate:0", - }, - count = 1, - }, - [ "TConstruct:decoration.multibrickfancy:15" ] = { - ingredients = { - "minecraft:stonebrick:0", - "TConstruct:chisel:*:52f9af660ab318a3bb73f6ff664f6049", - }, - count = 1, - }, - [ "StorageDrawers:fullDrawers1:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:chest:0", - }, - count = 1, - }, - [ "Forestry:factory:1" ] = { - ingredients = { - "TConstruct:materials:13", - "minecraft:glass:0", - "TConstruct:materials:13", - [ 9 ] = "TConstruct:materials:13", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "TConstruct:materials:13", - [ 5 ] = "TConstruct:materials:13", - [ 6 ] = "Forestry:sturdyMachine:0", - [ 7 ] = "TConstruct:materials:13", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockCraftingStorage:0" ] = { - ingredients = { - "appliedenergistics2:tile.BlockCraftingUnit:0", - "appliedenergistics2:item.ItemMultiMaterial:35", - }, - count = 1, - }, - [ "Thaumcraft:ItemThaumometer:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "Thaumcraft:ItemShard:1", - [ 2 ] = "Thaumcraft:ItemShard:1", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "Botania:manaGlass:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - maxCount = 1, - }, - [ "BuildCraft|Transport:item.buildcraftPipe.pipepowerwood:0" ] = { - ingredients = { - "minecraft:redstone:0", - "BuildCraft|Transport:item.buildcraftPipe.pipeitemswood:0", - }, - count = 1, - }, - [ "simplyjetpacks:fluxpacks:104:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "simplyjetpacks:armorPlatings:3", - [ 5 ] = "simplyjetpacks:fluxpacks:4:a84335f60eb302d08e1caa3ab88baf58", - }, - maxCount = 1, - }, - [ "IC2:itemPartIridium:0" ] = { - ingredients = { - "IC2:itemOreIridium:0", - "IC2:itemPartAlloy:0", - "IC2:itemOreIridium:0", - [ 9 ] = "IC2:itemOreIridium:0", - [ 10 ] = "IC2:itemPartAlloy:0", - [ 11 ] = "IC2:itemOreIridium:0", - [ 5 ] = "IC2:itemPartAlloy:0", - [ 6 ] = "minecraft:diamond:0", - [ 7 ] = "IC2:itemPartAlloy:0", - }, - count = 1, - }, - [ "EnderIO:itemMEConduit:0" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "EnderIO:itemMaterial:1", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "EnderIO:itemMaterial:1", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:7", - [ 6 ] = "appliedenergistics2:item.ItemMultiPart:140", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:7", - }, - count = 4, - }, - [ "TConstruct:blankPattern:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:0", - }, - count = 1, - }, - [ "StevesCarts:ModuleComponents:48" ] = { - ingredients = { - "StevesCarts:ModuleComponents:46", - "StevesCarts:ModuleComponents:46", - "StevesCarts:ModuleComponents:46", - [ 9 ] = "StevesCarts:ModuleComponents:46", - [ 10 ] = "StevesCarts:ModuleComponents:46", - [ 11 ] = "StevesCarts:ModuleComponents:46", - [ 5 ] = "StevesCarts:ModuleComponents:46", - [ 6 ] = "StevesCarts:ModuleComponents:46", - [ 7 ] = "StevesCarts:ModuleComponents:46", - }, - count = 1, - }, - [ "RedstoneArsenal:armor.bootsFlux:0:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "RedstoneArsenal:material:128", - [ 5 ] = "RedstoneArsenal:material:128", - [ 7 ] = "RedstoneArsenal:material:128", - [ 3 ] = "RedstoneArsenal:material:128", - }, - maxCount = 1, - }, - [ "extracells:storage.component:4" ] = { - ingredients = { - "minecraft:dye:4", - "appliedenergistics2:item.ItemMultiMaterial:0", - "minecraft:dye:4", - [ 9 ] = "minecraft:dye:4", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:0", - [ 11 ] = "minecraft:dye:4", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:22", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:0", - }, - count = 1, - }, - [ "exnihilo:doll_creepy:0" ] = { - ingredients = { - "minecraft:dye:0", - "minecraft:redstone:0", - "minecraft:dye:0", - [ 9 ] = "minecraft:dye:0", - [ 10 ] = "minecraft:nether_wart:0", - [ 11 ] = "minecraft:dye:0", - [ 5 ] = "minecraft:dye:4", - [ 6 ] = "exnihilo:doll:0", - [ 7 ] = "minecraft:dye:4", - }, - count = 1, - }, - [ "IC2:blockGenerator:3" ] = { - ingredients = { - "ThermalFoundation:material:2", - "minecraft:glass:0", - "ThermalFoundation:material:2", - [ 9 ] = "IC2:itemPartCircuit:0", - [ 10 ] = "IC2:blockGenerator:0", - [ 11 ] = "IC2:itemPartCircuit:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "ThermalFoundation:material:2", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "MineFactoryReloaded:machine.0:13" ] = { - ingredients = { - "MineFactoryReloaded:plastic.sheet:0", - "EnderIO:item.darkSteel_sword:*", - "MineFactoryReloaded:plastic.sheet:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "EnderIO:itemLiquidConduit:0", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "minecraft:book:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "minecraft:book:0", - }, - count = 1, - }, - [ "TConstruct:heartCanister:4" ] = { - count = 1, - ingredients = { - "TConstruct:heartCanister:2", - "TConstruct:heartCanister:3", - [ 5 ] = "minecraft:golden_apple:1", - }, - maxCount = 10, - }, - [ "ExtraUtilities:nodeUpgrade:2" ] = { - ingredients = { - "minecraft:dye:4", - "minecraft:iron_ingot:0", - "minecraft:dye:4", - [ 9 ] = "minecraft:dye:4", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:dye:4", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:diamond_pickaxe:*", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "StevesCarts:ModuleComponents:21" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "StevesCarts:ModuleComponents:20", - "minecraft:iron_ingot:0", - [ 9 ] = "StevesCarts:ModuleComponents:19", - [ 10 ] = "StevesCarts:ModuleComponents:19", - [ 11 ] = "StevesCarts:ModuleComponents:19", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 5, - }, - [ "gendustry:Imprinter:0" ] = { - ingredients = { - "ThermalFoundation:material:137", - "gendustry:GeneticsProcessor:32767", - "ThermalFoundation:material:137", - [ 9 ] = "ThermalFoundation:material:137", - [ 10 ] = "gendustry:PowerModule:0", - [ 11 ] = "ThermalFoundation:material:137", - [ 5 ] = "gendustry:BeeReceptacle:0", - [ 6 ] = "Forestry:sturdyMachine:0", - [ 7 ] = "gendustry:BeeReceptacle:0", - }, - count = 1, - }, - [ "IC2:blockGenerator:5" ] = { - ingredients = { - "IC2:itemDensePlates:6", - "IC2:itemPartCircuitAdv:0", - "IC2:itemDensePlates:6", - [ 9 ] = "IC2:itemDensePlates:6", - [ 10 ] = "IC2:blockGenerator:0", - [ 11 ] = "IC2:itemDensePlates:6", - [ 5 ] = "IC2:blockReactorChamber:0", - [ 6 ] = "IC2:blockReactorChamber:0", - [ 7 ] = "IC2:blockReactorChamber:0", - }, - count = 1, - }, - [ "Thaumcraft:ItemNugget:4" ] = { - ingredients = { - "IC2:itemIngot:5", - }, - count = 9, - }, - [ "IC2:itemCable:9" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "IC2:itemDust2:2", - [ 6 ] = "ThermalFoundation:material:34", - [ 7 ] = "IC2:itemDust2:2", - }, - count = 1, - }, - [ "ThermalDynamics:servo:4" ] = { - ingredients = { - "TConstruct:materials:19", - "EnderIO:blockFusedQuartz:0", - "TConstruct:materials:19", - [ 5 ] = "ThermalFoundation:material:76", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "ThermalFoundation:material:76", - }, - count = 2, - }, - [ "simplyjetpacks:armorPlatings:11" ] = { - ingredients = { - "EnderIO:itemMaterial:0", - "minecraft:iron_ingot:0", - "EnderIO:itemMaterial:0", - [ 9 ] = "EnderIO:itemMaterial:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "EnderIO:itemMaterial:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "EnderIO:itemMaterial:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "TConstruct:diamondApple:0" ] = { - ingredients = { - [ 10 ] = "minecraft:diamond:0", - [ 2 ] = "minecraft:diamond:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "minecraft:apple:0", - [ 7 ] = "minecraft:diamond:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockQuartzGrowthAccelerator:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "appliedenergistics2:item.ItemMultiPart:16", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiPart:16", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 6 ] = "appliedenergistics2:tile.BlockFluix:0", - [ 7 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - }, - count = 1, - }, - [ "IC2:blockElectric:6" ] = { - count = 1, - ingredients = { - [ 10 ] = "IC2:itemCable:6", - [ 2 ] = "IC2:itemCable:6", - [ 5 ] = "IC2:itemPartCircuitAdv:0", - [ 6 ] = "IC2:blockElectric:5", - [ 7 ] = "IC2:itemBatLamaCrystal:*", - }, - maxCount = 1, - }, - [ "EnderIO:blockKillerJoe:0" ] = { - ingredients = { - "EnderIO:itemAlloy:6", - "EnderIO:itemAlloy:6", - "EnderIO:itemAlloy:6", - [ 9 ] = "EnderIO:blockFusedQuartz:0", - [ 10 ] = "EnderIO:blockFusedQuartz:0", - [ 11 ] = "EnderIO:blockFusedQuartz:0", - [ 5 ] = "EnderIO:blockFusedQuartz:0", - [ 6 ] = "EnderIO:itemFrankenSkull:2", - [ 7 ] = "EnderIO:blockFusedQuartz:0", - }, - count = 1, - }, - [ "ThermalExpansion:Machine:8" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:0", - [ 11 ] = "Forestry:gearCopper:0", - [ 2 ] = "minecraft:bucket:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "minecraft:glass:0", - [ 9 ] = "Forestry:gearCopper:0", - }, - count = 1, - }, - [ "minecraft:diamond_shovel:0" ] = { - count = 1, - ingredients = { - "minecraft:diamond:0", - [ 9 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - }, - maxCount = 1, - }, - [ "AWWayofTime:AlchemicalWizardrybloodRune:0" ] = { - ingredients = { - "minecraft:stone:0", - "witchery:ingredient:12", - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "Thaumcraft:ItemShard:1", - [ 11 ] = "minecraft:stone:0", - [ 5 ] = "AWWayofTime:blankSlate:0", - [ 6 ] = "AWWayofTime:weakBloodOrb:0:9c04c731779ccb7c3d3ba68621d82aef", - [ 7 ] = "AWWayofTime:blankSlate:0", - }, - craftingTools = { - [ "AWWayofTime:weakBloodOrb:0:9c04c731779ccb7c3d3ba68621d82aef" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "EnderIO:blockTank:1" ] = { - ingredients = { - "EnderIO:itemAlloy:6", - "EnderIO:blockDarkIronBars:0", - "EnderIO:itemAlloy:6", - [ 9 ] = "EnderIO:itemAlloy:6", - [ 10 ] = "EnderIO:blockDarkIronBars:0", - [ 11 ] = "EnderIO:itemAlloy:6", - [ 5 ] = "EnderIO:blockDarkIronBars:0", - [ 6 ] = "ThermalExpansion:Glass:0", - [ 7 ] = "EnderIO:blockDarkIronBars:0", - }, - count = 1, - }, - [ "BuildCraft|Core:diamondGearItem:0" ] = { - ingredients = { - [ 10 ] = "minecraft:diamond:0", - [ 2 ] = "minecraft:diamond:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "ThermalFoundation:material:13", - [ 7 ] = "minecraft:diamond:0", - }, - count = 1, - }, - [ "Forestry:factory2:0" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:glass:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "IronChest:BlockIronChest:1", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "Forestry:sturdyMachine:0", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "IC2:itemTurningBlanks:349525:d05af35fb782ab00d57dd8ac9374c684" ] = { - count = 1, - ingredients = { - "minecraft:iron_ingot:0", - "IC2:itemCasing:4", - "minecraft:iron_ingot:0", - }, - maxCount = 1, - }, - [ "gendustry:Labware:0" ] = { - ingredients = { - "minecraft:glass_pane:0", - [ 7 ] = "minecraft:glass_pane:0", - [ 3 ] = "minecraft:glass_pane:0", - [ 10 ] = "minecraft:diamond:0", - [ 5 ] = "minecraft:glass_pane:0", - }, - count = 16, - }, - [ "EnderIO:itemItemConduit:0" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "ThermalDynamics:servo:4", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "ThermalDynamics:servo:4", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "ThermalDynamics:ThermalDynamics_32:4", - [ 6 ] = "ThermalDynamics:ThermalDynamics_32:4", - [ 7 ] = "ThermalDynamics:ThermalDynamics_32:4", - }, - count = 3, - }, - [ "ImmersiveEngineering:metalDevice:0" ] = { - ingredients = { - "minecraft:hardened_clay:0", - "TConstruct:materials:9", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "TConstruct:materials:9", - [ 11 ] = "minecraft:hardened_clay:0", - [ 6 ] = "TConstruct:materials:9", - }, - count = 8, - }, - [ "BuildCraft|Transport:item.buildcraftPipe.pipepowercobblestone:0" ] = { - ingredients = { - "minecraft:redstone:0", - "BuildCraft|Transport:item.buildcraftPipe.pipeitemscobblestone:0", - }, - count = 1, - }, - [ "IC2:blockMachine2:4" ] = { - ingredients = { - [ 10 ] = "IC2:itemRecipePart:0", - [ 11 ] = "IC2:itemRecipePart:0", - [ 2 ] = "IC2:itemPartCircuit:0", - [ 5 ] = "IC2:itemToolbox:0", - [ 6 ] = "IC2:blockMachine:0", - [ 7 ] = "IC2:itemToolbox:0", - [ 9 ] = "IC2:itemRecipePart:0", - }, - count = 1, - }, - [ "minecraft:sticky_piston:0" ] = { - ingredients = { - "minecraft:slime_ball:0", - [ 5 ] = "minecraft:piston:0", - }, - count = 1, - }, - [ "Forestry:factory:5" ] = { - ingredients = { - "TConstruct:materials:10", - "minecraft:glass:0", - "TConstruct:materials:10", - [ 9 ] = "TConstruct:materials:10", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "TConstruct:materials:10", - [ 5 ] = "TConstruct:materials:10", - [ 6 ] = "Forestry:sturdyMachine:0", - [ 7 ] = "TConstruct:materials:10", - }, - count = 1, - }, - [ "IC2:blockScaffold:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 6 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - }, - count = 4, - }, - [ "ComputerCraft:CC-Peripheral:4" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:glass_pane:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - count = 4, - }, - [ "IC2:itemToolWrenchElectric:26" ] = { - count = 1, - ingredients = { - "IC2:itemToolWrench:*", - "IC2:itemRecipePart:3", - }, - maxCount = 1, - }, - [ "EnderIO:itemBasicFilterUpgrade:1" ] = { - ingredients = { - "minecraft:redstone:0", - "minecraft:paper:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:paper:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:paper:0", - [ 6 ] = "EnderIO:itemFrankenSkull:1", - [ 7 ] = "minecraft:paper:0", - }, - count = 1, - }, - [ "StevesCarts:ModuleComponents:20" ] = { - ingredients = { - "minecraft:iron_bars:0", - "StevesCarts:ModuleComponents:19", - "minecraft:iron_bars:0", - [ 9 ] = "minecraft:iron_bars:0", - [ 10 ] = "StevesCarts:ModuleComponents:19", - [ 11 ] = "minecraft:iron_bars:0", - [ 5 ] = "StevesCarts:ModuleComponents:19", - [ 6 ] = "minecraft:iron_bars:0", - [ 7 ] = "StevesCarts:ModuleComponents:19", - }, - count = 1, - }, - [ "BuildCraft|Silicon:laserTableBlock:0" ] = { - ingredients = { - "minecraft:obsidian:0", - "minecraft:diamond:0", - "minecraft:obsidian:0", - [ 9 ] = "minecraft:obsidian:0", - [ 10 ] = "BuildCraft|Core:diamondGearItem:0", - [ 11 ] = "minecraft:obsidian:0", - [ 5 ] = "minecraft:obsidian:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:obsidian:0", - }, - count = 1, - }, - [ "minecraft:magma_cream:0" ] = { - ingredients = { - "minecraft:blaze_powder:0", - "minecraft:slime_ball:0", - }, - count = 1, - }, - [ "EnderIO:itemMaterial:5" ] = { - ingredients = { - "ThermalFoundation:material:106", - "EnderIO:itemMaterial:3", - "ThermalFoundation:material:106", - [ 9 ] = "ThermalFoundation:material:106", - [ 10 ] = "EnderIO:itemMaterial:3", - [ 11 ] = "ThermalFoundation:material:106", - [ 5 ] = "EnderIO:itemMaterial:3", - [ 6 ] = "Forestry:thermionicTubes:5", - [ 7 ] = "EnderIO:itemMaterial:3", - }, - count = 1, - }, - [ "ThermalDynamics:ThermalDynamics_32:0" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:Glass:0", - [ 2 ] = "ThermalExpansion:Glass:0", - [ 5 ] = "IC2:itemPlates:1", - [ 6 ] = "minecraft:glass:0", - [ 7 ] = "IC2:itemPlates:1", - }, - count = 6, - }, - [ "IC2:blockElectric:1" ] = { - count = 1, - ingredients = { - "IC2:itemCable:3", - "IC2:itemBatCrystal:*", - "IC2:itemCable:3", - [ 9 ] = "IC2:itemCable:3", - [ 10 ] = "IC2:itemBatCrystal:*", - [ 11 ] = "IC2:itemCable:3", - [ 5 ] = "IC2:itemBatCrystal:*", - [ 6 ] = "IC2:blockMachine:0", - [ 7 ] = "IC2:itemBatCrystal:*", - }, - maxCount = 1, - }, - [ "minecraft:paper:0" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:512", - [ 2 ] = "ThermalExpansion:material:512", - [ 5 ] = "ThermalExpansion:material:512", - [ 6 ] = "minecraft:water_bucket:0", - [ 7 ] = "ThermalExpansion:material:512", - }, - count = 2, - }, - [ "IC2:itemCable:3" ] = { - ingredients = { - "MineFactoryReloaded:rubber.bar:0", - "MineFactoryReloaded:rubber.bar:0", - "IC2:itemCable:2", - }, - count = 1, - }, - [ "IC2:reactorPlating:0" ] = { - ingredients = { - "IC2:itemPlates:6", - "IC2:itemPartAlloy:0", - }, - count = 1, - }, - [ "ThermalDynamics:ThermalDynamics_32:4" ] = { - ingredients = { - "ThermalDynamics:ThermalDynamics_32:0", - "ThermalDynamics:ThermalDynamics_32:0", - "ThermalFoundation:material:76", - [ 9 ] = "ThermalDynamics:ThermalDynamics_32:0", - [ 10 ] = "ThermalDynamics:ThermalDynamics_32:0", - [ 5 ] = "ThermalDynamics:ThermalDynamics_32:0", - [ 6 ] = "ThermalDynamics:ThermalDynamics_32:0", - }, - count = 6, - }, - [ "rftools:crafterBlock1:0" ] = { - ingredients = { - [ 10 ] = "minecraft:redstone_torch:0", - [ 2 ] = "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:crafting_table:0", - [ 6 ] = "rftools:machineFrame:0", - [ 7 ] = "minecraft:crafting_table:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockCraftingMonitor:0" ] = { - ingredients = { - "appliedenergistics2:tile.BlockCraftingUnit:0", - "appliedenergistics2:item.ItemMultiPart:400", - }, - count = 1, - }, - [ "ThermalFoundation:material:106" ] = { - ingredients = { - "ThermalFoundation:material:74", - }, - count = 9, - }, - [ "TConstruct:knapsack:0" ] = { - count = 1, - ingredients = { - "minecraft:leather:0", - "minecraft:leather:0", - "minecraft:leather:0", - [ 9 ] = "minecraft:leather:0", - [ 10 ] = "minecraft:leather:0", - [ 11 ] = "minecraft:leather:0", - [ 5 ] = "TConstruct:toughRod:2", - [ 6 ] = "TConstruct:materials:14", - [ 7 ] = "TConstruct:toughRod:2", - }, - maxCount = 10, - }, - [ "IC2:itemPartCircuit:0" ] = { - ingredients = { - "IC2:itemCable:0", - "IC2:itemCable:0", - "IC2:itemCable:0", - [ 9 ] = "IC2:itemCable:0", - [ 10 ] = "IC2:itemCable:0", - [ 11 ] = "IC2:itemCable:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "IC2:itemPlates:4", - [ 7 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "EnderIO:itemBasicCapacitor:2" ] = { - ingredients = { - [ 10 ] = "EnderIO:itemAlloy:2", - [ 2 ] = "EnderIO:itemAlloy:2", - [ 5 ] = "EnderIO:itemBasicCapacitor:1", - [ 6 ] = "Forestry:thermionicTubes:12", - [ 7 ] = "EnderIO:itemBasicCapacitor:1", - }, - count = 1, - }, - [ "TConstruct:heartCanister:2" ] = { - count = 1, - ingredients = { - "TConstruct:diamondApple:0", - "TConstruct:materials:8", - [ 5 ] = "TConstruct:heartCanister:0", - [ 6 ] = "TConstruct:heartCanister:1", - }, - maxCount = 10, - }, - [ "ExtraUtilities:drum:0" ] = { - ingredients = { - "Railcraft:ingot:0", - "minecraft:heavy_weighted_pressure_plate:0", - "Railcraft:ingot:0", - [ 9 ] = "Railcraft:ingot:0", - [ 10 ] = "minecraft:heavy_weighted_pressure_plate:0", - [ 11 ] = "Railcraft:ingot:0", - [ 5 ] = "Railcraft:ingot:0", - [ 6 ] = "minecraft:cauldron:0", - [ 7 ] = "Railcraft:ingot:0", - }, - count = 1, - }, - [ "IC2:itemBatLamaCrystal:26" ] = { - count = 1, - ingredients = { - "IC2:itemDust:12", - "IC2:itemPartCircuitAdv:0", - "IC2:itemDust:12", - [ 9 ] = "IC2:itemDust:12", - [ 10 ] = "IC2:itemPartCircuitAdv:0", - [ 11 ] = "IC2:itemDust:12", - [ 5 ] = "IC2:itemDust:12", - [ 6 ] = "IC2:itemBatCrystal:*", - [ 7 ] = "IC2:itemDust:12", - }, - maxCount = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:41" ] = { - ingredients = { - [ 10 ] = "minecraft:iron_ingot:0", - [ 2 ] = "appliedenergistics2:item.ItemMultiMaterial:9", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiPart:140", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "Thaumcraft:ItemInkwell:0" ] = { - count = 1, - ingredients = { - "Thaumcraft:ItemEssence:0", - "minecraft:feather:0", - [ 5 ] = "minecraft:dye:0", - }, - maxCount = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:400" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:280", - "appliedenergistics2:item.ItemMultiPart:180", - }, - count = 1, - }, - [ "StorageDrawers:fullDrawers4:0" ] = { - ingredients = { - "minecraft:chest:0", - "minecraft:planks:0", - "minecraft:chest:0", - [ 9 ] = "minecraft:chest:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:chest:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - }, - count = 4, - }, - [ "simplyjetpacks:jetpacks:4:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "ThermalFoundation:material:76", - "ThermalExpansion:capacitor:5:a84335f60eb302d08e1caa3ab88baf58", - "ThermalFoundation:material:76", - [ 9 ] = "simplyjetpacks:components:14", - [ 11 ] = "simplyjetpacks:components:14", - [ 5 ] = "ThermalFoundation:material:76", - [ 6 ] = "simplyjetpacks:jetpacks:3:a84335f60eb302d08e1caa3ab88baf58", - [ 7 ] = "ThermalFoundation:material:76", - }, - maxCount = 1, - }, - [ "simplyjetpacks:jetpacks:5:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "RedstoneArsenal:material:128", - "RedstoneArsenal:armor.plateFlux:0:a84335f60eb302d08e1caa3ab88baf58", - "RedstoneArsenal:material:128", - [ 9 ] = "simplyjetpacks:components:15", - [ 10 ] = "simplyjetpacks:fluxpacks:104:a84335f60eb302d08e1caa3ab88baf58", - [ 11 ] = "simplyjetpacks:components:15", - [ 5 ] = "simplyjetpacks:components:63", - [ 6 ] = "simplyjetpacks:jetpacks:104:a84335f60eb302d08e1caa3ab88baf58", - [ 7 ] = "simplyjetpacks:components:63", - }, - maxCount = 1, - }, - [ "rftools:remoteStorageBlock:0" ] = { - ingredients = { - "minecraft:ender_pearl:0", - "minecraft:chest:0", - "minecraft:ender_pearl:0", - [ 9 ] = "minecraft:ender_pearl:0", - [ 10 ] = "minecraft:quartz:0", - [ 11 ] = "minecraft:ender_pearl:0", - [ 5 ] = "minecraft:quartz:0", - [ 6 ] = "rftools:machineFrame:0", - [ 7 ] = "minecraft:quartz:0", - }, - count = 1, - }, - [ "IC2:blockMachine:2" ] = { - ingredients = { - [ 7 ] = "minecraft:redstone:0", - [ 2 ] = "IC2:itemPartCircuit:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "IC2:blockMachine:1", - }, - count = 1, - }, - [ "simplyjetpacks:jetpacks:2:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "ThermalFoundation:material:72", - "ThermalExpansion:capacitor:*:a84335f60eb302d08e1caa3ab88baf58", - "ThermalFoundation:material:72", - [ 9 ] = "simplyjetpacks:components:12", - [ 11 ] = "simplyjetpacks:components:12", - [ 5 ] = "ThermalFoundation:material:72", - [ 6 ] = "simplyjetpacks:jetpacks:1:a84335f60eb302d08e1caa3ab88baf58", - [ 7 ] = "ThermalFoundation:material:72", - }, - maxCount = 1, - }, - [ "simplyjetpacks:jetpacks:1:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "IC2:itemIngot:5", - "ThermalExpansion:capacitor:2:a84335f60eb302d08e1caa3ab88baf58", - "IC2:itemIngot:5", - [ 9 ] = "simplyjetpacks:components:11", - [ 11 ] = "simplyjetpacks:components:11", - [ 5 ] = "IC2:itemIngot:5", - [ 6 ] = "simplyjetpacks:components:0", - [ 7 ] = "IC2:itemIngot:5", - }, - maxCount = 1, - }, - [ "simplyjetpacks:jetpacks:3:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "ThermalFoundation:material:71", - "ThermalExpansion:capacitor:4:a84335f60eb302d08e1caa3ab88baf58", - "ThermalFoundation:material:71", - [ 9 ] = "simplyjetpacks:components:13", - [ 11 ] = "simplyjetpacks:components:13", - [ 5 ] = "ThermalFoundation:material:71", - [ 6 ] = "simplyjetpacks:jetpacks:2:a84335f60eb302d08e1caa3ab88baf58", - [ 7 ] = "ThermalFoundation:material:71", - }, - maxCount = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:16" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:140", - "appliedenergistics2:item.ItemMultiMaterial:7", - "appliedenergistics2:item.ItemMultiMaterial:7", - }, - count = 4, - }, - [ "EnderIO:blockReinforcedObsidian:0" ] = { - ingredients = { - "IC2:blockAlloy:0", - "Railcraft:cube:4", - "IC2:blockAlloy:0", - [ 9 ] = "IC2:blockAlloy:0", - [ 10 ] = "Railcraft:cube:4", - [ 11 ] = "IC2:blockAlloy:0", - [ 5 ] = "Railcraft:cube:4", - [ 6 ] = "StevesCarts:ModuleComponents:22", - [ 7 ] = "Railcraft:cube:4", - }, - count = 4, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:30" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:28", - "appliedenergistics2:item.ItemMultiMaterial:7", - }, - count = 1, - }, - [ "ThermalDynamics:ThermalDynamics_0:1" ] = { - ingredients = { - "minecraft:redstone:0", - "BuildCraft|Silicon:redstoneChipset:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "BuildCraft|Silicon:redstoneChipset:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "IC2:itemPlates:5", - [ 6 ] = "ThermalExpansion:Glass:0", - [ 7 ] = "IC2:itemPlates:5", - }, - count = 6, - }, - [ "EnderIO:itemMaterial:2" ] = { - ingredients = { - "IC2:itemDust:9", - "IC2:itemDust:9", - "IC2:itemDust:9", - [ 9 ] = "IC2:itemDust:9", - [ 10 ] = "IC2:itemDust:9", - [ 11 ] = "IC2:itemDust:9", - [ 5 ] = "ThermalExpansion:material:513", - [ 6 ] = "EnderIO:itemAlloy:0", - [ 7 ] = "ThermalExpansion:material:513", - }, - count = 8, - }, - [ "EnderIO:blockVat:0" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "minecraft:cauldron:0", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "minecraft:furnace:0", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:blockTank:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "EnderIO:blockTank:0", - }, - count = 1, - }, - [ "IC2:itemPartCarbonFibre:0" ] = { - ingredients = { - "ThermalFoundation:material:2", - "ThermalFoundation:material:2", - [ 5 ] = "ThermalFoundation:material:2", - [ 6 ] = "ThermalFoundation:material:2", - }, - count = 1, - }, - [ "BuildCraft|Transport:item.buildcraftPipe.pipeitemswood:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:glass:0", - "minecraft:planks:0", - }, - count = 8, - }, - [ "IC2:itemCable:10" ] = { - ingredients = { - "IC2:itemToolCutter:*", - "IC2:itemPlates:1", - }, - craftingTools = { - [ "IC2:itemToolCutter:*" ] = true, - }, - count = 3, - maxCount = 1, - }, - [ "StevesCarts:ModuleComponents:23" ] = { - ingredients = { - [ 10 ] = "minecraft:iron_ingot:0", - [ 2 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "StevesCarts:ModuleComponents:22", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "ThermalFoundation:material:512" ] = { - ingredients = { - "ThermalFoundation:material:2", - "IC2:itemDust:13", - [ 5 ] = "minecraft:blaze_powder:0", - [ 6 ] = "ProjRed|Core:projectred.core.part:56", - }, - count = 1, - }, - [ "rftools:timerBlock:0" ] = { - ingredients = { - "minecraft:redstone:0", - "minecraft:clock:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:redstone_torch:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:redstone_torch:0", - [ 6 ] = "rftools:machineBase:0", - [ 7 ] = "minecraft:redstone_torch:0", - }, - count = 1, - }, - [ "IC2:itemBatREDischarged:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "ProjRed|Core:projectred.core.part:56", - [ 11 ] = "IC2:itemCasing:1", - [ 2 ] = "IC2:itemCable:13", - [ 5 ] = "IC2:itemCasing:1", - [ 6 ] = "ProjRed|Core:projectred.core.part:56", - [ 7 ] = "IC2:itemCasing:1", - [ 9 ] = "IC2:itemCasing:1", - }, - maxCount = 16, - }, - [ "appliedenergistics2:item.ItemMultiPart:36" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:16", - "minecraft:wool:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:56" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:36", - "minecraft:redstone:0", - "minecraft:glowstone_dust:0", - }, - count = 1, - }, - [ "EnderIO:blockFarmStation:0" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "minecraft:diamond_hoe:*", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemMaterial:5", - [ 10 ] = "EnderIO:itemFrankenSkull:1", - [ 11 ] = "EnderIO:itemMaterial:5", - [ 5 ] = "EnderIO:itemAlloy:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "EnderIO:itemAlloy:0", - }, - count = 1, - }, - [ "ThermalExpansion:Machine:3" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 11 ] = "ThermalFoundation:material:136", - [ 2 ] = "minecraft:bucket:0", - [ 5 ] = "ThermalFoundation:material:72", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "ThermalFoundation:material:72", - [ 9 ] = "ThermalFoundation:material:136", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:76" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:36", - "appliedenergistics2:item.ItemMultiPart:36", - "appliedenergistics2:item.ItemMultiPart:36", - [ 5 ] = "appliedenergistics2:item.ItemMultiPart:36", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:glowstone_dust:0", - }, - count = 1, - }, - [ "chisel:factoryblock:0" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:iron_ingot:0", - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 32, - }, - [ "ThermalExpansion:capacitor:3" ] = { - count = 1, - ingredients = { - [ 10 ] = "TConstruct:materials:10", - [ 11 ] = "ProjRed|Core:projectred.core.part:56", - [ 2 ] = "ProjRed|Core:projectred.core.part:56", - [ 5 ] = "ThermalFoundation:material:72", - [ 6 ] = "ThermalExpansion:capacitor:2", - [ 7 ] = "ThermalFoundation:material:72", - [ 9 ] = "ProjRed|Core:projectred.core.part:56", - }, - maxCount = 1, - }, - [ "excompressum:autoHeavySieve:0" ] = { - ingredients = { - "Railcraft:cube:2", - "minecraft:glass_pane:0", - "Railcraft:cube:2", - [ 9 ] = "Railcraft:ingot:0", - [ 10 ] = "minecraft:glass_pane:0", - [ 11 ] = "Railcraft:ingot:0", - [ 5 ] = "minecraft:glass_pane:0", - [ 6 ] = "excompressum:heavySieve:0", - [ 7 ] = "minecraft:glass_pane:0", - }, - count = 1, - }, - [ "StevesCarts:ModuleComponents:46" ] = { - ingredients = { - "minecraft:glowstone_dust:0", - "minecraft:diamond_block:0", - "minecraft:glowstone_dust:0", - [ 9 ] = "StevesCarts:ModuleComponents:21", - [ 10 ] = "StevesCarts:ModuleComponents:45", - [ 11 ] = "StevesCarts:ModuleComponents:21", - [ 5 ] = "StevesCarts:ModuleComponents:45", - [ 6 ] = "minecraft:glowstone_dust:0", - [ 7 ] = "StevesCarts:ModuleComponents:45", - }, - count = 2, - }, - [ "IC2:blockMachine:11" ] = { - ingredients = { - [ 10 ] = "minecraft:dirt:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 2 ] = "minecraft:glowstone_dust:0", - [ 5 ] = "minecraft:dirt:0", - [ 6 ] = "IC2:blockMachine:5", - [ 7 ] = "minecraft:dirt:0", - [ 9 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "EnderIO:itemConduitFacade:0" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "EnderIO:itemMaterial:1", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "EnderIO:itemMaterial:1", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "EnderIO:itemMaterial:1", - [ 7 ] = "EnderIO:itemMaterial:1", - }, - count = 8, - }, - [ "IC2:itemPlates:0" ] = { - ingredients = { - "IC2:itemToolForgeHammer:*", - "TConstruct:materials:9", - [ 6 ] = "TConstruct:materials:9", - }, - craftingTools = { - [ "IC2:itemToolForgeHammer:*" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "IC2:blockMachine2:9" ] = { - ingredients = { - [ 9 ] = "IC2:itemPartCircuit:0", - [ 10 ] = "IC2:blockMachine:0", - [ 11 ] = "IC2:itemPartCircuit:0", - [ 2 ] = "IC2:itemTinCan:0", - [ 6 ] = "IC2:itemTinCan:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockCondenser:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:glass:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:8", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "Botania:seaLamp:0" ] = { - ingredients = { - [ 10 ] = "Botania:manaResource:10", - [ 2 ] = "Botania:manaResource:10", - [ 5 ] = "Botania:manaResource:10", - [ 6 ] = "minecraft:glowstone:0", - [ 7 ] = "Botania:manaResource:10", - }, - count = 1, - }, - [ "exnihilo:crucible_unfired:0" ] = { - ingredients = { - "exnihilo:porcelain:0", - [ 9 ] = "exnihilo:porcelain:0", - [ 10 ] = "exnihilo:porcelain:0", - [ 11 ] = "exnihilo:porcelain:0", - [ 3 ] = "exnihilo:porcelain:0", - [ 5 ] = "exnihilo:porcelain:0", - [ 7 ] = "exnihilo:porcelain:0", - }, - count = 1, - }, - [ "EnderIO:blockPowerMonitor:0" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemConduitProbe:0", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "EnderIO:itemPowerConduit:0", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:itemAlloy:0", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "EnderIO:itemAlloy:0", - }, - count = 1, - }, - [ "EnderIO:blockSolarPanel:1" ] = { - ingredients = { - "EnderIO:itemAlloy:2", - "EnderIO:blockFusedQuartz:2", - "EnderIO:itemAlloy:2", - [ 9 ] = "EnderIO:itemAlloy:5", - [ 10 ] = "minecraft:daylight_detector:0", - [ 11 ] = "EnderIO:itemAlloy:5", - [ 5 ] = "EnderIO:itemMaterial:6", - [ 6 ] = "EnderIO:blockFusedQuartz:2", - [ 7 ] = "EnderIO:itemMaterial:6", - }, - count = 1, - }, - [ "minecraft:glass:0" ] = { - ingredients = { - "EnderIO:blockFusedQuartz:1", - }, - count = 1, - }, - [ "IC2:reactorVentCore:1" ] = { - count = 1, - ingredients = { - "IC2:itemPlates:0", - "IC2:itemPlates:0", - "IC2:itemPlates:0", - [ 9 ] = "IC2:itemPlates:0", - [ 10 ] = "IC2:itemPlates:0", - [ 11 ] = "IC2:itemPlates:0", - [ 5 ] = "IC2:itemPlates:0", - [ 6 ] = "IC2:reactorVent:*", - [ 7 ] = "IC2:itemPlates:0", - }, - maxCount = 1, - }, - [ "StorageDrawers:compDrawers:0" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:piston:0", - [ 6 ] = "StorageDrawers:fullDrawers1:0", - [ 7 ] = "minecraft:piston:0", - }, - count = 1, - }, - [ "appliedenergistics2:tile.BlockSecurity:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "appliedenergistics2:tile.BlockChest:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:24", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiPart:16", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:37", - [ 7 ] = "appliedenergistics2:item.ItemMultiPart:16", - }, - count = 1, - }, - [ "StorageDrawers:upgrade:3" ] = { - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:stick:0", - "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:gold_ingot:0", - [ 10 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "StorageDrawers:upgradeTemplate:0", - [ 7 ] = "minecraft:stick:0", - }, - count = 1, - }, - [ "StorageDrawers:trim:0" ] = { - ingredients = { - "minecraft:stick:0", - "minecraft:planks:0", - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - }, - count = 4, - }, - [ "appliedenergistics2:item.ItemMultiPart:71" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:76", - "appliedenergistics2:item.ItemMultiPart:76", - "appliedenergistics2:item.ItemMultiPart:76", - [ 5 ] = "appliedenergistics2:item.ItemMultiPart:76", - [ 6 ] = "minecraft:dye:4", - [ 7 ] = "appliedenergistics2:item.ItemMultiPart:76", - [ 9 ] = "appliedenergistics2:item.ItemMultiPart:76", - [ 10 ] = "appliedenergistics2:item.ItemMultiPart:76", - [ 11 ] = "appliedenergistics2:item.ItemMultiPart:76", - }, - count = 8, - }, - [ "minecraft:golden_apple:1" ] = { - ingredients = { - "minecraft:gold_block:0", - "minecraft:gold_block:0", - "minecraft:gold_block:0", - [ 9 ] = "minecraft:gold_block:0", - [ 10 ] = "minecraft:gold_block:0", - [ 11 ] = "minecraft:gold_block:0", - [ 5 ] = "minecraft:gold_block:0", - [ 6 ] = "minecraft:apple:0", - [ 7 ] = "minecraft:gold_block:0", - }, - count = 1, - }, - [ "BuildCraft|Transport:item.buildcraftPipe.pipefluidscobblestone:0" ] = { - ingredients = { - "BuildCraft|Transport:pipeWaterproof:0", - "BuildCraft|Transport:item.buildcraftPipe.pipeitemscobblestone:0", - }, - count = 1, - }, - [ "harvestcraft:applejuiceItem:0" ] = { - ingredients = { - "harvestcraft:juicerItem:0", - "minecraft:apple:0", - }, - craftingTools = { - [ "harvestcraft:juicerItem:0" ] = true, - }, - maxCount = 1, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:380" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:180", - "appliedenergistics2:item.ItemMultiMaterial:43", - "appliedenergistics2:item.ItemMultiMaterial:44", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:22", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:360" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:380", - "minecraft:crafting_table:0", - "appliedenergistics2:item.ItemMultiMaterial:23", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:340" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiPart:360", - "appliedenergistics2:item.ItemMultiMaterial:24", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:300" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:7", - "appliedenergistics2:item.ItemMultiMaterial:7", - "appliedenergistics2:item.ItemMultiMaterial:7", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:44", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiPart:320" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:7", - "appliedenergistics2:item.ItemMultiMaterial:7", - "appliedenergistics2:item.ItemMultiMaterial:7", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:43", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "EnderIO:itemPowerConduit:0" ] = { - ingredients = { - "EnderIO:itemMaterial:1", - "ThermalDynamics:servo:0", - "EnderIO:itemMaterial:1", - [ 9 ] = "EnderIO:itemMaterial:1", - [ 10 ] = "ThermalDynamics:servo:0", - [ 11 ] = "EnderIO:itemMaterial:1", - [ 5 ] = "ThermalDynamics:ThermalDynamics_0:1", - [ 6 ] = "ThermalDynamics:ThermalDynamics_0:1", - [ 7 ] = "ThermalDynamics:ThermalDynamics_0:1", - }, - count = 3, - }, - [ "IronChest:BlockIronChest:1" ] = { - ingredients = { - "IC2:itemPlates:3", - "IC2:itemPlates:3", - "IC2:itemPlates:3", - [ 9 ] = "IC2:itemPlates:3", - [ 10 ] = "IC2:itemPlates:3", - [ 11 ] = "IC2:itemPlates:3", - [ 5 ] = "IC2:itemPlates:3", - [ 6 ] = "IronChest:BlockIronChest:0", - [ 7 ] = "IC2:itemPlates:3", - }, - count = 1, - }, - [ "IC2:blockMachine3:1" ] = { - ingredients = { - "IC2:itemCasing:4", - "IC2:itemCasing:4", - "IC2:itemCasing:4", - [ 9 ] = "IC2:itemCasing:4", - [ 10 ] = "IC2:itemRecipePart:5", - [ 11 ] = "IC2:itemCasing:4", - [ 5 ] = "IC2:itemCasing:4", - [ 6 ] = "IC2:blockMachine:0", - [ 7 ] = "IC2:itemCasing:4", - }, - count = 1, - }, - [ "ExtraUtilities:nodeUpgrade:0" ] = { - ingredients = { - "minecraft:redstone_block:0", - "minecraft:gold_nugget:0", - "minecraft:redstone_block:0", - [ 9 ] = "minecraft:redstone_block:0", - [ 10 ] = "minecraft:gold_ingot:0", - [ 11 ] = "minecraft:redstone_block:0", - [ 5 ] = "minecraft:gold_nugget:0", - [ 6 ] = "minecraft:gold_ingot:0", - [ 7 ] = "minecraft:gold_nugget:0", - }, - count = 4, - }, - [ "extracells:certustank:0" ] = { - ingredients = { - "appliedenergistics2:tile.BlockQuartzGlass:0", - "appliedenergistics2:tile.BlockQuartzGlass:0", - "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 9 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 10 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 11 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 5 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 7 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - }, - count = 1, - }, - [ "IC2:itemPlutonium:0" ] = { - ingredients = { - "IC2:itemPlutoniumSmall:0", - "IC2:itemPlutoniumSmall:0", - "IC2:itemPlutoniumSmall:0", - [ 9 ] = "IC2:itemPlutoniumSmall:0", - [ 10 ] = "IC2:itemPlutoniumSmall:0", - [ 11 ] = "IC2:itemPlutoniumSmall:0", - [ 5 ] = "IC2:itemPlutoniumSmall:0", - [ 6 ] = "IC2:itemPlutoniumSmall:0", - [ 7 ] = "IC2:itemPlutoniumSmall:0", - }, - count = 1, - }, - [ "ThermalDynamics:ThermalDynamics_0:3" ] = { - ingredients = { - "ThermalFoundation:material:514", - "ThermalFoundation:material:106", - "ThermalFoundation:material:514", - [ 9 ] = "ThermalFoundation:material:514", - [ 10 ] = "ThermalFoundation:material:106", - [ 11 ] = "ThermalFoundation:material:514", - [ 5 ] = "RedstoneArsenal:material:0", - [ 6 ] = "ThermalExpansion:Glass:1", - [ 7 ] = "RedstoneArsenal:material:0", - }, - count = 6, - }, - [ "IC2:upgradeModule:0" ] = { - ingredients = { - "IC2:reactorCoolantSimple:*", - "IC2:reactorCoolantSimple:*", - "IC2:reactorCoolantSimple:*", - [ 5 ] = "IC2:itemCable:0", - [ 6 ] = "IC2:itemPartCircuit:0", - [ 7 ] = "IC2:itemCable:0", - }, - count = 2, - }, - [ "minecraft:diamond_axe:0" ] = { - count = 1, - ingredients = { - "minecraft:diamond:0", - "minecraft:diamond:0", - [ 10 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:diamond:0", - }, - maxCount = 1, - }, - [ "gendustry:Transposer:0" ] = { - ingredients = { - "ThermalFoundation:material:137", - "TConstruct:materials:13", - "ThermalFoundation:material:137", - [ 9 ] = "ThermalFoundation:material:137", - [ 10 ] = "gendustry:PowerModule:0", - [ 11 ] = "ThermalFoundation:material:137", - [ 5 ] = "gendustry:GeneticsProcessor:32767", - [ 6 ] = "Forestry:sturdyMachine:0", - [ 7 ] = "gendustry:GeneticsProcessor:32767", - }, - count = 1, - }, - [ "ThermalExpansion:Tank:1" ] = { - ingredients = { - [ 10 ] = "minecraft:glass:0", - [ 2 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "TConstruct:materials:9", - [ 7 ] = "minecraft:glass:0", - }, - count = 1, - }, - [ "IC2:itemToolCutter:0" ] = { - count = 1, - ingredients = { - "IC2:itemPlates:4", - [ 9 ] = "minecraft:iron_ingot:0", - [ 3 ] = "IC2:itemPlates:4", - [ 11 ] = "minecraft:iron_ingot:0", - [ 6 ] = "IC2:itemPlates:4", - }, - maxCount = 1, - }, - [ "IC2:itemToolbox:0" ] = { - count = 1, - ingredients = { - "IC2:itemCasing:2", - "minecraft:chest:0", - "IC2:itemCasing:2", - [ 5 ] = "IC2:itemCasing:2", - [ 6 ] = "IC2:itemCasing:2", - [ 7 ] = "IC2:itemCasing:2", - }, - maxCount = 1, - }, - [ "IC2:itemToolForgeHammer:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 2 ] = "minecraft:iron_ingot:0", - [ 3 ] = "minecraft:iron_ingot:0", - [ 5 ] = "ImmersiveEngineering:material:0", - [ 6 ] = "ImmersiveEngineering:material:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - maxCount = 1, - }, - [ "rftools:storageModuleItem:1" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:quartz:0", - [ 2 ] = "minecraft:chest:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "rftools:storageModuleItem:0", - [ 7 ] = "minecraft:gold_ingot:0", - [ 9 ] = "minecraft:quartz:0", - }, - maxCount = 1, - }, - [ "IC2:itemFoamSprayer:0" ] = { - count = 1, - ingredients = { - "IC2:itemCasing:4", - [ 10 ] = "IC2:itemFluidCell:0", - [ 6 ] = "IC2:itemCasing:4", - [ 11 ] = "IC2:itemCasing:4", - }, - maxCount = 1, - }, - [ "appliedenergistics2:item.ItemBasicStorageCell.4k:0" ] = { - count = 1, - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:36", - "appliedenergistics2:item.ItemMultiMaterial:39", - }, - maxCount = 1, - }, - [ "ExtraUtilities:cobblestone_compressed:0" ] = { - ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - count = 1, - }, - [ "TConstruct:decoration.multibrickfancy:14" ] = { - ingredients = { - "TConstruct:decoration.multibrickfancy:15", - "TConstruct:chisel:*:b82f7c273f26c98be507d23ce781702a", - }, - craftingTools = { - [ "TConstruct:chisel:*:b82f7c273f26c98be507d23ce781702a" ] = true, - }, - maxCount = 1, - count = 1, - }, - [ "appliedenergistics2:tile.BlockCraftingUnit:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "appliedenergistics2:item.ItemMultiMaterial:23", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:23", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiPart:16", - [ 6 ] = "appliedenergistics2:item.ItemMultiMaterial:22", - [ 7 ] = "appliedenergistics2:item.ItemMultiPart:16", - }, - count = 1, - }, - [ "ComputerCraft:disk:0" ] = { - count = 1, - ingredients = { - "minecraft:redstone:0", - "minecraft:paper:0", - [ 5 ] = "minecraft:dye:4", - }, - maxCount = 1, - }, - [ "EnderIO:itemConduitProbe:0" ] = { - count = 1, - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemPowerConduit:0", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemMaterial:0", - [ 10 ] = "EnderIO:itemRedstoneConduit:2", - [ 11 ] = "EnderIO:itemMaterial:0", - [ 5 ] = "minecraft:glass_pane:0", - [ 6 ] = "minecraft:comparator:0", - [ 7 ] = "minecraft:glass_pane:0", - }, - maxCount = 1, - }, - [ "ThermalExpansion:Machine:9:2e064a3ee2fe778eb7e30fde1b7aa63b" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 11 ] = "Forestry:gearCopper:0", - [ 2 ] = "minecraft:chest:0", - [ 5 ] = "Forestry:gearTin:0", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "Forestry:gearTin:0", - [ 9 ] = "Forestry:gearCopper:0", - }, - count = 1, - }, - [ "ThermalExpansion:Machine:0:2e064a3ee2fe778eb7e30fde1b7aa63b" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 11 ] = "ThermalFoundation:material:128", - [ 2 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:brick_block:0", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "minecraft:brick_block:0", - [ 9 ] = "ThermalFoundation:material:128", - }, - count = 1, - }, - [ "ThermalExpansion:Machine:2" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 11 ] = "Forestry:gearCopper:0", - [ 2 ] = "minecraft:iron_axe:*", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "minecraft:planks:0", - [ 9 ] = "Forestry:gearCopper:0", - }, - count = 1, - }, - [ "IronChest:BlockIronChest:2" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "IronChest:BlockIronChest:1", - [ 7 ] = "minecraft:diamond:0", - }, - count = 1, - }, - [ "rftools:machineFrame:0" ] = { - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - "minecraft:stone:0", - [ 9 ] = "minecraft:stone:0", - [ 10 ] = "minecraft:stone:0", - [ 11 ] = "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "ThermalExpansion:Frame:3", - [ 7 ] = "minecraft:stone:0", - }, - count = 1, - }, - [ "RedstoneArsenal:tool.wrenchFlux:0:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "RedstoneArsenal:material:32", - [ 10 ] = "RedstoneArsenal:material:32", - [ 6 ] = "RedstoneArsenal:material:193", - [ 3 ] = "RedstoneArsenal:material:32", - }, - maxCount = 1, - }, - [ "EnderStorage:enderPouch:0" ] = { - count = 1, - ingredients = { - "minecraft:blaze_powder:0", - "minecraft:leather:0", - "minecraft:blaze_powder:0", - [ 9 ] = "minecraft:blaze_powder:0", - [ 10 ] = "minecraft:wool:0", - [ 11 ] = "minecraft:blaze_powder:0", - [ 5 ] = "minecraft:leather:0", - [ 6 ] = "minecraft:ender_pearl:0", - [ 7 ] = "minecraft:leather:0", - }, - maxCount = 1, - }, - [ "ThermalExpansion:Machine:5:d6ea6542bbae4238935edacb7daea011" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:material:1", - [ 11 ] = "ThermalFoundation:material:128", - [ 2 ] = "minecraft:bucket:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "minecraft:glass:0", - [ 9 ] = "ThermalFoundation:material:128", - }, - count = 1, - }, - [ "StorageDrawers:controllerSlave:0" ] = { - ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "BuildCraft|Silicon:redstoneChipset:2", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:comparator:0", - [ 6 ] = "StorageDrawers:fullDrawers4:0", - [ 7 ] = "minecraft:comparator:0", - }, - count = 1, - }, - [ "EnderIO:blockAlloySmelter:0" ] = { - ingredients = { - "Railcraft:cube:4", - "IC2:blockMachine:13", - "Railcraft:cube:4", - [ 9 ] = "Railcraft:cube:4", - [ 10 ] = "EnderIO:itemBasicCapacitor:0", - [ 11 ] = "Railcraft:cube:4", - [ 5 ] = "IC2:blockMachine:2", - [ 6 ] = "EnderIO:itemMachinePart:0", - [ 7 ] = "IC2:blockMachine:2", - }, - count = 1, - }, - [ "EnderIO:itemMaterial:3" ] = { - ingredients = { - "EnderIO:itemAlloy:5", - }, - count = 9, - }, - [ "ThermalExpansion:material:3" ] = { - ingredients = { - "minecraft:redstone:0", - [ 6 ] = "ThermalFoundation:material:71", - [ 11 ] = "minecraft:redstone:0", - }, - count = 1, - }, - [ "harvestcraft:cherrysmoothieItem:0" ] = { - ingredients = { - "harvestcraft:juicerItem:0", - "Forestry:fruits:0", - [ 5 ] = "minecraft:snowball:0", - }, - craftingTools = { - [ "harvestcraft:juicerItem:0" ] = true, - }, - count = 1, - maxCount = 1, - }, - [ "EnderIO:blockCapBank:2" ] = { - ingredients = { - "EnderIO:itemAlloy:0", - "EnderIO:itemBasicCapacitor:1", - "EnderIO:itemAlloy:0", - [ 9 ] = "EnderIO:itemAlloy:0", - [ 10 ] = "EnderIO:itemBasicCapacitor:1", - [ 11 ] = "EnderIO:itemAlloy:0", - [ 5 ] = "EnderIO:itemBasicCapacitor:1", - [ 6 ] = "minecraft:redstone_block:0", - [ 7 ] = "EnderIO:itemBasicCapacitor:1", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:37" ] = { - ingredients = { - "minecraft:glowstone_dust:0", - "appliedenergistics2:item.ItemMultiMaterial:24", - "minecraft:glowstone_dust:0", - [ 9 ] = "minecraft:glowstone_dust:0", - [ 10 ] = "appliedenergistics2:item.ItemMultiMaterial:36", - [ 11 ] = "minecraft:glowstone_dust:0", - [ 5 ] = "appliedenergistics2:item.ItemMultiMaterial:36", - [ 6 ] = "appliedenergistics2:tile.BlockQuartzGlass:0", - [ 7 ] = "appliedenergistics2:item.ItemMultiMaterial:36", - }, - count = 1, - }, - [ "appliedenergistics2:item.ItemMultiMaterial:27" ] = { - ingredients = { - "appliedenergistics2:item.ItemMultiMaterial:25", - "appliedenergistics2:item.ItemMultiMaterial:0", - }, - count = 1, - }, - [ "simplyjetpacks:jetpacks:104:a84335f60eb302d08e1caa3ab88baf58" ] = { - count = 1, - ingredients = { - "simplyjetpacks:armorPlatings:4", - [ 5 ] = "simplyjetpacks:jetpacks:4:a84335f60eb302d08e1caa3ab88baf58", - }, - maxCount = 1, - }, - [ "IC2:blockMachine3:8" ] = { - ingredients = { - "IC2:itemCasing:4", - [ 10 ] = "IC2:itemPlates:4", - [ 11 ] = "IC2:itemPlates:4", - [ 3 ] = "IC2:itemCasing:4", - [ 5 ] = "IC2:itemRecipePart:11", - [ 6 ] = "IC2:blockMachine:0", - [ 7 ] = "IC2:itemRecipePart:11", - [ 9 ] = "IC2:itemPlates:4", - }, - count = 1, - }, - [ "ThermalDynamics:ThermalDynamics_16:2" ] = { - ingredients = { - [ 10 ] = "ThermalExpansion:Glass:1", - [ 2 ] = "ThermalExpansion:Glass:1", - [ 5 ] = "ThermalFoundation:material:40", - [ 6 ] = "ThermalExpansion:Glass:0", - [ 7 ] = "ThermalFoundation:material:40", - }, - count = 6, - }, - [ "AdvancedSolarPanel:asp_crafting_items:5" ] = { - ingredients = { - "IC2:blockAlloyGlass:0", - "IC2:blockAlloyGlass:0", - "IC2:blockAlloyGlass:0", - [ 9 ] = "IC2:blockAlloyGlass:0", - [ 10 ] = "IC2:blockAlloyGlass:0", - [ 11 ] = "IC2:blockAlloyGlass:0", - [ 5 ] = "AdvancedSolarPanel:asp_crafting_items:2", - [ 6 ] = "minecraft:glowstone_dust:0", - [ 7 ] = "AdvancedSolarPanel:asp_crafting_items:2", - }, - count = 6, - }, - [ "ThermalFoundation:material:103" ] = { - ingredients = { - "ThermalFoundation:material:71", - }, - count = 9, - }, - [ "EnderIO:itemMachinePart:0" ] = { - ingredients = { - "minecraft:iron_bars:0", - "ThermalFoundation:material:75", - "minecraft:iron_bars:0", - [ 9 ] = "minecraft:iron_bars:0", - [ 10 ] = "ThermalFoundation:material:75", - [ 11 ] = "minecraft:iron_bars:0", - [ 5 ] = "EnderIO:itemBasicCapacitor:0", - [ 6 ] = "ThermalExpansion:Frame:0", - [ 7 ] = "EnderIO:itemBasicCapacitor:0", - }, - count = 1, - }, - [ "IC2:reactorVentGold:1" ] = { - count = 1, - ingredients = { - [ 10 ] = "IC2:itemPlates:3", - [ 2 ] = "IC2:itemPlates:3", - [ 5 ] = "IC2:itemPlates:3", - [ 6 ] = "IC2:reactorVentCore:*", - [ 7 ] = "IC2:itemPlates:3", - }, - maxCount = 1, - }, - [ "OpenBlocks:fan:0" ] = { - ingredients = { - "minecraft:iron_bars:0", - [ 9 ] = "minecraft:stone_slab:0", - [ 5 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "minecraft:stained_glass:0" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:15", - [ 7 ] = "minecraft:glass:0", - }, - count = 8, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/storagedrawers.db b/recipeBook/etc/recipes/storagedrawers.db deleted file mode 100644 index e07f07f..0000000 --- a/recipeBook/etc/recipes/storagedrawers.db +++ /dev/null @@ -1,34 +0,0 @@ -{ - name = "Storage Drawers", - version = "MC 1.8+", - recipes = { - [ "storagedrawers:upgradeStorage:4" ] = { - ingredients = { - "minecraft:emerald:0", - "minecraft:stick:0", - "minecraft:emerald:0", - [ 9 ] = "minecraft:emerald:0", - [ 10 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:emerald:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "storagedrawers:upgradeTemplate:0", - [ 7 ] = "minecraft:stick:0", - }, - count = 1, - }, - [ "storagedrawers:upgradeVoid:0" ] = { - ingredients = { - "minecraft:stick:0", - "minecraft:stick:0", - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:obsidian:0", - [ 6 ] = "storagedrawers:upgradeTemplate:0", - [ 7 ] = "minecraft:obsidian:0", - }, - count = 1, - }, - }, -} \ No newline at end of file diff --git a/recipeBook/etc/recipes/tconstruct.db b/recipeBook/etc/recipes/tconstruct.db deleted file mode 100644 index ab868b2..0000000 --- a/recipeBook/etc/recipes/tconstruct.db +++ /dev/null @@ -1,40 +0,0 @@ -{ - name = "Tinkers Construct", - version = "MC 1.8+", - recipes = { - [ "minecraft:book:0" ] = { - ingredients = { - "minecraft:paper:0", - "minecraft:paper:0", - "minecraft:paper:0", - [ 5 ] = "minecraft:string:0", - [ 6 ] = "tconstruct:pattern:0", - [ 7 ] = "tconstruct:pattern:0", - }, - count = 1, - }, - [ "tconstruct:pattern:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:0", - }, - count = 4, - }, - [ "tconstruct:soil:0" ] = { - ingredients = { - "minecraft:gravel:0", - "minecraft:sand:0", - "minecraft:gravel:0", - [ 9 ] = "minecraft:gravel:0", - [ 10 ] = "minecraft:sand:0", - [ 11 ] = "minecraft:gravel:0", - [ 5 ] = "minecraft:sand:0", - [ 6 ] = "minecraft:clay:0", - [ 7 ] = "minecraft:sand:0", - }, - count = 8, - }, - } -} \ No newline at end of file diff --git a/core/apis/turtle/craft.lua b/storage/apis/craft.lua similarity index 100% rename from core/apis/turtle/craft.lua rename to storage/apis/craft.lua diff --git a/storage/chestManager.lua b/storage/chestManager.lua index aca15ca..600727a 100644 --- a/storage/chestManager.lua +++ b/storage/chestManager.lua @@ -82,7 +82,7 @@ local Ansi = require('ansi') local Config = require('config') -local Craft = require('turtle.craft') +local Craft = require('storage.craft') local Event = require('event') local itemDB = require('core.itemDB') local Peripheral = require('peripheral')