recipe book selection

This commit is contained in:
kepler155c
2018-02-19 22:19:01 -05:00
parent 1bee7c97f7
commit 2cfa6c8c7f
17 changed files with 4254 additions and 4078 deletions

View File

@@ -4,7 +4,8 @@ local Util = require('util')
local fs = _G.fs local fs = _G.fs
local turtle = _G.turtle local turtle = _G.turtle
local RECIPES_DIR = 'usr/etc/recipes' local RECIPES_DIR = 'usr/etc/recipes'
local USER_RECIPES = 'usr/config/recipes.db'
local Craft = { } local Craft = { }
@@ -79,18 +80,17 @@ local function turtleCraft(recipe, qty, inventoryAdapter)
end end
function Craft.loadRecipes() function Craft.loadRecipes()
Craft.recipes = Util.readTable(fs.combine(RECIPES_DIR, 'minecraft.db')) or { } Craft.recipes = { }
local files = fs.list('usr/etc/recipes') Util.merge((Util.readTable(fs.combine(RECIPES_DIR, 'minecraft.db')) or { }).recipes)
table.sort(files)
Util.removeByValue(files, 'minecraft.db')
for _,file in ipairs(files) do local config = Util.readTable('usr/config/recipeBooks.db') or { }
local recipes = Util.readTable(fs.combine(RECIPES_DIR, file)) for _, book in pairs(config) do
Util.merge(Craft.recipes, recipes) local recipeFile = Util.readTable(book)
Util.merge(Craft.recipes, recipeFile.recipes)
end end
local recipes = Util.readTable('usr/config/recipes.db') or { } local recipes = Util.readTable(USER_RECIPES) or { }
Util.merge(Craft.recipes, recipes) Util.merge(Craft.recipes, recipes)
end end

View File

@@ -1,4 +1,4 @@
_G.requireInjector() _G.requireInjector(_ENV)
local Ansi = require('ansi') local Ansi = require('ansi')
local Event = require('event') local Event = require('event')

View File

@@ -58,6 +58,9 @@ if device.workbench then
end end
end end
--TODO : find out duck antenna type
duckAntenna = nil
local STATUS_INFO = 'info' local STATUS_INFO = 'info'
local STATUS_WARNING = 'warning' local STATUS_WARNING = 'warning'
local STATUS_ERROR = 'error' local STATUS_ERROR = 'error'

121
apps/recipeBook.lua Normal file
View File

@@ -0,0 +1,121 @@
_G.requireInjector(_ENV)
local Ansi = require('ansi')
local UI = require('ui')
local Util = require('util')
local colors = _G.colors
local fs = _G.fs
local RECIPES_DIR = 'usr/etc/recipes'
local function getRecipeBooks()
local books = { }
local files = fs.list(RECIPES_DIR)
table.sort(files)
Util.removeByValue(files, 'minecraft.db')
for _,file in ipairs(files) do
local path = fs.combine(RECIPES_DIR, file)
local recipeFile = Util.readTable(path)
if recipeFile then
table.insert(books, {
path = path,
name = recipeFile.name,
version = recipeFile.version,
})
end
end
local config = Util.readTable('usr/config/recipeBooks.db') or { }
for _, book in pairs(config) do
local b = Util.find(books, 'path', book)
if b then
b.enabled = true
end
end
return books
end
local page = UI.Page {
info = UI.Window {
x = 2, ex = -2, y = 2, ey = 5,
button = UI.Button {
ex = -1, y = 2, width = 9,
text = 'Enable',
event = 'grid_select',
}
},
grid = UI.ScrollingGrid {
y = 6,
headerBackgroundColor = colors.black,
headerTextColor = colors.cyan,
columns = {
{ heading = 'Name', key = 'name' },
{ heading = 'Version', key = 'version' },
},
values = getRecipeBooks(),
sortColumn = 'name',
autospace = true,
},
accelerators = {
q = 'quit',
space = 'grid_select',
t = 'terminate',
},
}
function page.info:draw()
local book = self.parent.grid:getSelected()
self:clear()
if book then
self:setCursorPos(1, 1)
self:print(
string.format('Name: %s%s%s\n', Ansi.yellow, book.name, Ansi.reset))
self:print(
string.format('Version: %s%s%s\n', Ansi.yellow, book.version, Ansi.reset))
self.button.text = book.enabled and 'Disable' or 'Enable'
self.button:draw()
end
end
function page.grid:getRowTextColor(row, selected)
if row.enabled then
return colors.white
end
return selected and colors.lightGray or colors.gray
end
function page:save()
local t = { }
for _, book in pairs(self.grid.values) do
if book.enabled then
table.insert(t, book.path)
end
end
Util.writeTable('usr/config/recipeBooks.db', t)
end
function page:eventHandler(event)
if event.type == 'grid_select' then
local recipes = self.grid:getSelected()
recipes.enabled = not recipes.enabled
self.info:draw()
self.grid:draw()
self:save()
elseif event.type == 'grid_focus_row' then
self.info:draw()
elseif event.type == 'quit' then
UI:exitPullEvents()
end
UI.Page.eventHandler(self, event)
end
UI:setPage(page)
UI:pullEvents()

View File

@@ -1,87 +1,91 @@
{ {
[ "appliedenergistics2:quartz_glass:0" ] = { name = "Applied Energistics",
ingredients = { version = "MC 1.8+",
"appliedenergistics2:material:2", recipes = {
"minecraft:glass:0", [ "appliedenergistics2:quartz_glass:0" ] = {
"appliedenergistics2:material:2", ingredients = {
[ 9 ] = "appliedenergistics2:material:2", "appliedenergistics2:material:2",
[ 10 ] = "minecraft:glass:0", "minecraft:glass:0",
[ 11 ] = "appliedenergistics2:material:2", "appliedenergistics2:material:2",
[ 5 ] = "minecraft:glass:0", [ 9 ] = "appliedenergistics2:material:2",
[ 6 ] = "appliedenergistics2:material:2", [ 10 ] = "minecraft:glass:0",
[ 7 ] = "minecraft:glass:0", [ 11 ] = "appliedenergistics2:material:2",
[ 5 ] = "minecraft:glass:0",
[ 6 ] = "appliedenergistics2:material:2",
[ 7 ] = "minecraft:glass:0",
},
count = 4,
}, },
count = 4, [ "appliedenergistics2:material:43" ] = {
}, ingredients = {
[ "appliedenergistics2:material:43" ] = { "appliedenergistics2:material:0",
ingredients = { "appliedenergistics2:material:8",
"appliedenergistics2:material:0", "appliedenergistics2:material:22",
"appliedenergistics2:material:8", },
"appliedenergistics2:material:22", count = 2,
}, },
count = 2, [ "appliedenergistics2:material:44" ] = {
}, ingredients = {
[ "appliedenergistics2:material:44" ] = { [ 5 ] = "minecraft:quartz:0",
ingredients = { [ 6 ] = "appliedenergistics2:material:8",
[ 5 ] = "minecraft:quartz:0", [ 7 ] = "appliedenergistics2:material:22",
[ 6 ] = "appliedenergistics2:material:8", },
[ 7 ] = "appliedenergistics2:material:22", count = 2,
}, },
count = 2, [ "appliedenergistics2:material:35" ] = {
}, ingredients = {
[ "appliedenergistics2:material:35" ] = { "minecraft:redstone:0",
ingredients = { "appliedenergistics2:material:0",
"minecraft:redstone:0", "minecraft:redstone:0",
"appliedenergistics2:material:0", [ 5 ] = "appliedenergistics2:material:0",
"minecraft:redstone:0", [ 6 ] = "appliedenergistics2:material:22",
[ 5 ] = "appliedenergistics2:material:0", [ 7 ] = "appliedenergistics2:material:0",
[ 6 ] = "appliedenergistics2:material:22", [ 9 ] = "minecraft:redstone:0",
[ 7 ] = "appliedenergistics2:material:0", [ 10 ] = "appliedenergistics2:material:0",
[ 9 ] = "minecraft:redstone:0", [ 11 ] = "minecraft:redstone:0",
[ 10 ] = "appliedenergistics2:material:0", },
[ 11 ] = "minecraft:redstone:0", count = 1,
}, },
count = 1, [ "appliedenergistics2:interface:0" ] = {
}, ingredients = {
[ "appliedenergistics2:interface:0" ] = { "minecraft:iron_ingot:0",
ingredients = { "minecraft:glass:0",
"minecraft:iron_ingot:0", "minecraft:iron_ingot:0",
"minecraft:glass:0", [ 9 ] = "minecraft:iron_ingot:0",
"minecraft:iron_ingot:0", [ 10 ] = "minecraft:glass:0",
[ 9 ] = "minecraft:iron_ingot:0", [ 11 ] = "minecraft:iron_ingot:0",
[ 10 ] = "minecraft:glass:0", [ 5 ] = "appliedenergistics2:material:44",
[ 11 ] = "minecraft:iron_ingot:0", [ 7 ] = "appliedenergistics2:material:43",
[ 5 ] = "appliedenergistics2:material:44", },
[ 7 ] = "appliedenergistics2:material:43", count = 1,
}, },
count = 1, [ "appliedenergistics2:material:36" ] = {
}, ingredients = {
[ "appliedenergistics2:material:36" ] = { "minecraft:redstone:0",
ingredients = { "appliedenergistics2:material:23",
"minecraft:redstone:0", "minecraft:redstone:0",
"appliedenergistics2:material:23", [ 5 ] = "appliedenergistics2:material:35",
"minecraft:redstone:0", [ 6 ] = "appliedenergistics2:quartz_glass:0",
[ 5 ] = "appliedenergistics2:material:35", [ 7 ] = "appliedenergistics2:material:35",
[ 6 ] = "appliedenergistics2:quartz_glass:0", [ 9 ] = "minecraft:redstone:0",
[ 7 ] = "appliedenergistics2:material:35", [ 10 ] = "appliedenergistics2:material:35",
[ 9 ] = "minecraft:redstone:0", [ 11 ] = "minecraft:redstone:0",
[ 10 ] = "appliedenergistics2:material:35", },
[ 11 ] = "minecraft:redstone:0", count = 1,
}, },
count = 1, [ "appliedenergistics2:material:37" ] = {
}, ingredients = {
[ "appliedenergistics2:material:37" ] = { "minecraft:glowstone_dust:0",
ingredients = { "appliedenergistics2:material:24",
"minecraft:glowstone_dust:0", "minecraft:glowstone_dust:0",
"appliedenergistics2:material:24", [ 5 ] = "appliedenergistics2:material:36",
"minecraft:glowstone_dust:0", [ 6 ] = "appliedenergistics2:quartz_glass:0",
[ 5 ] = "appliedenergistics2:material:36", [ 7 ] = "appliedenergistics2:material:36",
[ 6 ] = "appliedenergistics2:quartz_glass:0", [ 9 ] = "minecraft:glowstone_dust:0",
[ 7 ] = "appliedenergistics2:material:36", [ 10 ] = "appliedenergistics2:material:36",
[ 9 ] = "minecraft:glowstone_dust:0", [ 11 ] = "minecraft:glowstone_dust:0",
[ 10 ] = "appliedenergistics2:material:36", },
[ 11 ] = "minecraft:glowstone_dust:0", count = 1,
}, },
count = 1,
}, },
} }

View File

@@ -1,451 +1,455 @@
{ {
[ "botania:vial:0" ] = { name = "Botania",
ingredients = { version = "MC 1.8+",
"botania:manaGlass:0", recipes = {
[ 6 ] = "botania:manaGlass:0", [ "botania:vial:0" ] = {
[ 3 ] = "botania:manaGlass:0", ingredients = {
"botania:manaGlass:0",
[ 6 ] = "botania:manaGlass:0",
[ 3 ] = "botania:manaGlass:0",
},
count = 3,
}, },
count = 3, [ "botania:lens:0" ] = {
}, count = 1,
[ "botania:lens:0" ] = { ingredients = {
count = 1, [ 10 ] = "botania:manaResource:0",
ingredients = { [ 2 ] = "botania:manaResource:0",
[ 10 ] = "botania:manaResource:0", [ 5 ] = "botania:manaResource:0",
[ 2 ] = "botania:manaResource:0", [ 6 ] = "minecraft:glass_pane:0",
[ 5 ] = "botania:manaResource:0", [ 7 ] = "botania:manaResource:0",
[ 6 ] = "minecraft:glass_pane:0", },
[ 7 ] = "botania:manaResource:0", maxCount = 1,
}, },
maxCount = 1, [ "botania:brewery:0" ] = {
}, ingredients = {
[ "botania:brewery:0" ] = { "botania:livingrock:0",
ingredients = { "minecraft:brewing_stand:0",
"botania:livingrock:0", "botania:livingrock:0",
"minecraft:brewing_stand:0", [ 9 ] = "botania:livingrock:0",
"botania:livingrock:0", [ 10 ] = "botania:storage:0",
[ 9 ] = "botania:livingrock:0", [ 11 ] = "botania:livingrock:0",
[ 10 ] = "botania:storage:0", [ 5 ] = "botania:livingrock:0",
[ 11 ] = "botania:livingrock:0", [ 6 ] = "botania:rune:8",
[ 5 ] = "botania:livingrock:0", [ 7 ] = "botania:livingrock:0",
[ 6 ] = "botania:rune:8", },
[ 7 ] = "botania:livingrock:0", count = 1,
}, },
count = 1, [ "botania:spark:0" ] = {
}, ingredients = {
[ "botania:spark:0" ] = { [ 10 ] = "botania:petal:*",
ingredients = { [ 2 ] = "botania:petal:*",
[ 10 ] = "botania:petal:*", [ 5 ] = "minecraft:blaze_powder:0",
[ 2 ] = "botania:petal:*", [ 6 ] = "minecraft:gold_nugget:0",
[ 5 ] = "minecraft:blaze_powder:0", [ 7 ] = "minecraft:blaze_powder:0",
[ 6 ] = "minecraft:gold_nugget:0", },
[ 7 ] = "minecraft:blaze_powder:0", count = 1,
}, },
count = 1, [ "botania:petal:10" ] = {
}, ingredients = {
[ "botania:petal:10" ] = { "botania:flower:10",
ingredients = { },
"botania:flower:10", count = 12,
}, },
count = 12, [ "botania:vial:1" ] = {
}, ingredients = {
[ "botania:vial:1" ] = { "botania:elfGlass:0",
ingredients = { [ 6 ] = "botania:elfGlass:0",
"botania:elfGlass:0", [ 3 ] = "botania:elfGlass:0",
[ 6 ] = "botania:elfGlass:0", },
[ 3 ] = "botania:elfGlass:0", count = 3,
}, },
count = 3, [ "botania:manaTablet:0" ] = {
}, ingredients = {
[ "botania:manaTablet:0" ] = { "botania:livingrock:0",
ingredients = { "botania:livingrock:0",
"botania:livingrock:0", "botania:livingrock:0",
"botania:livingrock:0", [ 9 ] = "botania:livingrock:0",
"botania:livingrock:0", [ 10 ] = "botania:livingrock:0",
[ 9 ] = "botania:livingrock:0", [ 11 ] = "botania:livingrock:0",
[ 10 ] = "botania:livingrock:0", [ 5 ] = "botania:livingrock:0",
[ 11 ] = "botania:livingrock:0", [ 6 ] = "botania:manaResource:1",
[ 5 ] = "botania:livingrock:0", [ 7 ] = "botania:livingrock:0",
[ 6 ] = "botania:manaResource:1", },
[ 7 ] = "botania:livingrock:0", count = 1,
}, },
count = 1, [ "botania:hourglass:0" ] = {
}, ingredients = {
[ "botania:hourglass:0" ] = { "minecraft:gold_ingot:0",
ingredients = { "botania:manaGlass:0",
"minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
"botania:manaGlass:0", [ 9 ] = "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 10 ] = "botania:manaGlass:0",
[ 9 ] = "minecraft:gold_ingot:0", [ 11 ] = "minecraft:gold_ingot:0",
[ 10 ] = "botania:manaGlass:0", [ 5 ] = "minecraft:redstone:0",
[ 11 ] = "minecraft:gold_ingot:0", [ 6 ] = "botania:manaResource:0",
[ 5 ] = "minecraft:redstone:0", [ 7 ] = "minecraft:redstone:0",
[ 6 ] = "botania:manaResource:0", },
[ 7 ] = "minecraft:redstone:0", count = 1,
}, },
count = 1, [ "botania:pylon:2" ] = {
}, ingredients = {
[ "botania:pylon:2" ] = { [ 10 ] = "botania:manaResource:8",
ingredients = { [ 2 ] = "botania:manaResource:8",
[ 10 ] = "botania:manaResource:8", [ 5 ] = "botania:manaResource:7",
[ 2 ] = "botania:manaResource:8", [ 6 ] = "botania:pylon:0",
[ 5 ] = "botania:manaResource:7", [ 7 ] = "botania:manaResource:7",
[ 6 ] = "botania:pylon:0", },
[ 7 ] = "botania:manaResource:7", count = 1,
}, },
count = 1, [ "botania:terraPlate:0" ] = {
}, ingredients = {
[ "botania:terraPlate:0" ] = { "minecraft:lapis_block:0",
ingredients = { "minecraft:lapis_block:0",
"minecraft:lapis_block:0", "minecraft:lapis_block:0",
"minecraft:lapis_block:0", [ 9 ] = "botania:rune:2",
"minecraft:lapis_block:0", [ 10 ] = "botania:rune:8",
[ 9 ] = "botania:rune:2", [ 11 ] = "botania:rune:3",
[ 10 ] = "botania:rune:8", [ 5 ] = "botania:rune:0",
[ 11 ] = "botania:rune:3", [ 6 ] = "botania:storage:0",
[ 5 ] = "botania:rune:0", [ 7 ] = "botania:rune:1",
[ 6 ] = "botania:storage:0", },
[ 7 ] = "botania:rune:1", count = 1,
}, },
count = 1, [ "botania:livingwood:5" ] = {
}, ingredients = {
[ "botania:livingwood:5" ] = { "botania:livingwood:0",
ingredients = { "minecraft:glowstone_dust:0",
"botania:livingwood:0", },
"minecraft:glowstone_dust:0", count = 1,
}, },
count = 1, [ "botania:pylon:1" ] = {
}, ingredients = {
[ "botania:pylon:1" ] = { [ 10 ] = "minecraft:ender_eye:0",
ingredients = { [ 2 ] = "botania:manaResource:18",
[ 10 ] = "minecraft:ender_eye:0", [ 5 ] = "botania:manaResource:18",
[ 2 ] = "botania:manaResource:18", [ 6 ] = "botania:pylon:0",
[ 5 ] = "botania:manaResource:18", [ 7 ] = "botania:manaResource:18",
[ 6 ] = "botania:pylon:0", },
[ 7 ] = "botania:manaResource:18", count = 1,
}, },
count = 1, [ "botania:petal:11" ] = {
}, ingredients = {
[ "botania:petal:11" ] = { "botania:flower:11",
ingredients = { },
"botania:flower:11", count = 2,
}, },
count = 2, [ "botania:conjurationCatalyst:0" ] = {
}, ingredients = {
[ "botania:conjurationCatalyst:0" ] = { "botania:livingrock:0",
ingredients = { "botania:manaResource:8",
"botania:livingrock:0", "botania:livingrock:0",
"botania:manaResource:8", [ 9 ] = "botania:livingrock:0",
"botania:livingrock:0", [ 10 ] = "botania:manaResource:7",
[ 9 ] = "botania:livingrock:0", [ 11 ] = "botania:livingrock:0",
[ 10 ] = "botania:manaResource:7", [ 5 ] = "botania:manaResource:7",
[ 11 ] = "botania:livingrock:0", [ 6 ] = "botania:alchemyCatalyst:0",
[ 5 ] = "botania:manaResource:7", [ 7 ] = "botania:manaResource:7",
[ 6 ] = "botania:alchemyCatalyst:0", },
[ 7 ] = "botania:manaResource:7", count = 1,
}, },
count = 1, [ "botania:petal:15" ] = {
}, ingredients = {
[ "botania:petal:15" ] = { "botania:flower:15",
ingredients = { },
"botania:flower:15", count = 2,
}, },
count = 2, [ "botania:sparkUpgrade:2" ] = {
}, ingredients = {
[ "botania:sparkUpgrade:2" ] = { "botania:manaResource:8",
ingredients = { "botania:manaResource:0",
"botania:manaResource:8", [ 5 ] = "botania:rune:2",
"botania:manaResource:0", },
[ 5 ] = "botania:rune:2", count = 1,
}, },
count = 1, [ "botania:petal:8" ] = {
}, ingredients = {
[ "botania:petal:8" ] = { "botania:doubleFlower2:0",
ingredients = { },
"botania:doubleFlower2:0", count = 4,
}, },
count = 4, [ "botania:petal:6" ] = {
}, ingredients = {
[ "botania:petal:6" ] = { "botania:flower:6",
ingredients = { },
"botania:flower:6", count = 10,
}, },
count = 10, [ "botania:petal:9" ] = {
}, ingredients = {
[ "botania:petal:9" ] = { "botania:flower:9",
ingredients = { },
"botania:flower:9", count = 10,
}, },
count = 10, [ "botania:turntable:0" ] = {
}, ingredients = {
[ "botania:turntable:0" ] = { "botania:livingwood:0",
ingredients = { "botania:livingwood:0",
"botania:livingwood:0", "botania:livingwood:0",
"botania:livingwood:0", [ 9 ] = "botania:livingwood:0",
"botania:livingwood:0", [ 10 ] = "botania:livingwood:0",
[ 9 ] = "botania:livingwood:0", [ 11 ] = "botania:livingwood:0",
[ 10 ] = "botania:livingwood:0", [ 5 ] = "botania:livingwood:0",
[ 11 ] = "botania:livingwood:0", [ 6 ] = "minecraft:sticky_piston:0",
[ 5 ] = "botania:livingwood:0", [ 7 ] = "botania:livingwood:0",
[ 6 ] = "minecraft:sticky_piston:0", },
[ 7 ] = "botania:livingwood:0", count = 1,
}, },
count = 1, [ "botania:alfheimPortal:0" ] = {
}, ingredients = {
[ "botania:alfheimPortal:0" ] = { "botania:livingwood:0",
ingredients = { "botania:manaResource:18",
"botania:livingwood:0", "botania:livingwood:0",
"botania:manaResource:18", [ 9 ] = "botania:livingwood:0",
"botania:livingwood:0", [ 10 ] = "botania:manaResource:18",
[ 9 ] = "botania:livingwood:0", [ 11 ] = "botania:livingwood:0",
[ 10 ] = "botania:manaResource:18", [ 5 ] = "botania:livingwood:0",
[ 11 ] = "botania:livingwood:0", [ 6 ] = "botania:manaResource:18",
[ 5 ] = "botania:livingwood:0", [ 7 ] = "botania:livingwood:0",
[ 6 ] = "botania:manaResource:18", },
[ 7 ] = "botania:livingwood:0", count = 1,
}, },
count = 1, [ "botania:fertilizer:0" ] = {
}, ingredients = {
[ "botania:fertilizer:0" ] = { "minecraft:dye:15",
ingredients = { "minecraft:dye:1",
"minecraft:dye:15", "minecraft:dye:1",
"minecraft:dye:1", [ 5 ] = "minecraft:dye:11",
"minecraft:dye:1", [ 6 ] = "minecraft:dye:11",
[ 5 ] = "minecraft:dye:11", },
[ 6 ] = "minecraft:dye:11", count = 1,
}, },
count = 1, [ "botania:storage:0" ] = {
}, ingredients = {
[ "botania:storage:0" ] = { "botania:manaResource:0",
ingredients = { "botania:manaResource:0",
"botania:manaResource:0", "botania:manaResource:0",
"botania:manaResource:0", [ 9 ] = "botania:manaResource:0",
"botania:manaResource:0", [ 10 ] = "botania:manaResource:0",
[ 9 ] = "botania:manaResource:0", [ 11 ] = "botania:manaResource:0",
[ 10 ] = "botania:manaResource:0", [ 5 ] = "botania:manaResource:0",
[ 11 ] = "botania:manaResource:0", [ 6 ] = "botania:manaResource:0",
[ 5 ] = "botania:manaResource:0", [ 7 ] = "botania:manaResource:0",
[ 6 ] = "botania:manaResource:0", },
[ 7 ] = "botania:manaResource:0", count = 1,
}, },
count = 1, [ "botania:openCrate:0" ] = {
}, ingredients = {
[ "botania:openCrate:0" ] = { "botania:livingwood:1",
ingredients = { "botania:livingwood:1",
"botania:livingwood:1", "botania:livingwood:1",
"botania:livingwood:1", [ 7 ] = "botania:livingwood:1",
"botania:livingwood:1", [ 9 ] = "botania:livingwood:1",
[ 7 ] = "botania:livingwood:1", [ 11 ] = "botania:livingwood:1",
[ 9 ] = "botania:livingwood:1", [ 5 ] = "botania:livingwood:1",
[ 11 ] = "botania:livingwood:1", },
[ 5 ] = "botania:livingwood:1", count = 1,
}, },
count = 1, [ "botania:petal:14" ] = {
}, ingredients = {
[ "botania:petal:14" ] = { "botania:flower:14",
ingredients = { },
"botania:flower:14", count = 2,
}, },
count = 2, [ "botania:twigWand:0:6605f7f28f36765a5acc434fa1820653" ] = {
}, count = 1,
[ "botania:twigWand:0:6605f7f28f36765a5acc434fa1820653" ] = { ingredients = {
count = 1, [ 9 ] = "botania:manaResource:3",
ingredients = { [ 2 ] = "botania:petal:6",
[ 9 ] = "botania:manaResource:3", [ 3 ] = "botania:manaResource:3",
[ 2 ] = "botania:petal:6", [ 6 ] = "botania:manaResource:3",
[ 3 ] = "botania:manaResource:3", [ 7 ] = "botania:petal:6",
[ 6 ] = "botania:manaResource:3", },
[ 7 ] = "botania:petal:6", maxCount = 1,
}, },
maxCount = 1, [ "botania:petal:4" ] = {
}, ingredients = {
[ "botania:petal:4" ] = { "botania:flower:4",
ingredients = { },
"botania:flower:4", count = 2,
}, },
count = 2, [ "botania:sparkUpgrade:0" ] = {
}, ingredients = {
[ "botania:sparkUpgrade:0" ] = { "botania:manaResource:8",
ingredients = { "botania:manaResource:0",
"botania:manaResource:8", [ 5 ] = "botania:rune:0",
"botania:manaResource:0", },
[ 5 ] = "botania:rune:0", count = 1,
}, },
count = 1, [ "botania:altar:0" ] = {
}, ingredients = {
[ "botania:altar:0" ] = { "minecraft:stone_slab:3",
ingredients = { "botania:petal:0",
"minecraft:stone_slab:3", "minecraft:stone_slab:3",
"botania:petal:0", [ 9 ] = "minecraft:cobblestone:0",
"minecraft:stone_slab:3", [ 10 ] = "minecraft:cobblestone:0",
[ 9 ] = "minecraft:cobblestone:0", [ 11 ] = "minecraft:cobblestone:0",
[ 10 ] = "minecraft:cobblestone:0", [ 6 ] = "minecraft:cobblestone:0",
[ 11 ] = "minecraft:cobblestone:0", },
[ 6 ] = "minecraft:cobblestone:0", count = 1,
}, },
count = 1, [ "botania:petal:1" ] = {
}, ingredients = {
[ "botania:petal:1" ] = { "botania:flower:1",
ingredients = { },
"botania:flower:1", count = 2,
}, },
count = 2, [ "botania:petal:3" ] = {
}, ingredients = {
[ "botania:petal:3" ] = { "botania:flower:3",
ingredients = { },
"botania:flower:3", count = 2,
}, },
count = 2, [ "botania:petal:5" ] = {
}, ingredients = {
[ "botania:petal:5" ] = { "botania:flower:5",
ingredients = { },
"botania:flower:5", count = 12,
}, },
count = 12, [ "botania:spreader:0" ] = {
}, ingredients = {
[ "botania:spreader:0" ] = { "botania:livingwood:0",
ingredients = { "botania:livingwood:0",
"botania:livingwood:0", "botania:livingwood:0",
"botania:livingwood:0", [ 9 ] = "botania:livingwood:0",
"botania:livingwood:0", [ 10 ] = "botania:livingwood:0",
[ 9 ] = "botania:livingwood:0", [ 11 ] = "botania:livingwood:0",
[ 10 ] = "botania:livingwood:0", [ 5 ] = "botania:livingwood:0",
[ 11 ] = "botania:livingwood:0", [ 6 ] = "botania:petal:4",
[ 5 ] = "botania:livingwood:0", },
[ 6 ] = "botania:petal:4", count = 1,
}, },
count = 1, [ "botania:manaResource:6" ] = {
}, ingredients = {
[ "botania:manaResource:6" ] = { "minecraft:tallgrass:1",
ingredients = { "minecraft:redstone:0",
"minecraft:tallgrass:1", },
"minecraft:redstone:0", count = 1,
}, },
count = 1, [ "botania:manaResource:3" ] = {
}, ingredients = {
[ "botania:manaResource:3" ] = { "botania:livingwood:0",
ingredients = { [ 5 ] = "botania:livingwood:0",
"botania:livingwood:0", },
[ 5 ] = "botania:livingwood:0", count = 1,
}, },
count = 1, [ "botania:alchemyCatalyst:0" ] = {
}, ingredients = {
[ "botania:alchemyCatalyst:0" ] = { "botania:livingrock:0",
ingredients = { "minecraft:gold_ingot:0",
"botania:livingrock:0", "botania:livingrock:0",
"minecraft:gold_ingot:0", [ 9 ] = "botania:livingrock:0",
"botania:livingrock:0", [ 10 ] = "minecraft:gold_ingot:0",
[ 9 ] = "botania:livingrock:0", [ 11 ] = "botania:livingrock:0",
[ 10 ] = "minecraft:gold_ingot:0", [ 5 ] = "minecraft:brewing_stand:0",
[ 11 ] = "botania:livingrock:0", [ 6 ] = "botania:manaResource:1",
[ 5 ] = "minecraft:brewing_stand:0", [ 7 ] = "minecraft:brewing_stand:0",
[ 6 ] = "botania:manaResource:1", },
[ 7 ] = "minecraft:brewing_stand:0", count = 1,
}, },
count = 1, [ "botania:pool:0" ] = {
}, ingredients = {
[ "botania:pool:0" ] = { "botania:livingrock:0",
ingredients = { [ 7 ] = "botania:livingrock:0",
"botania:livingrock:0", [ 3 ] = "botania:livingrock:0",
[ 7 ] = "botania:livingrock:0", [ 5 ] = "botania:livingrock:0",
[ 3 ] = "botania:livingrock:0", [ 6 ] = "botania:livingrock:0",
[ 5 ] = "botania:livingrock:0", },
[ 6 ] = "botania:livingrock:0", count = 1,
}, },
count = 1, [ "botania:pylon:0" ] = {
}, ingredients = {
[ "botania:pylon:0" ] = { [ 10 ] = "minecraft:gold_ingot:0",
ingredients = { [ 2 ] = "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:gold_ingot:0", [ 5 ] = "botania:manaResource:0",
[ 2 ] = "minecraft:gold_ingot:0", [ 6 ] = "botania:manaResource:2",
[ 5 ] = "botania:manaResource:0", [ 7 ] = "botania:manaResource:0",
[ 6 ] = "botania:manaResource:2", },
[ 7 ] = "botania:manaResource:0", count = 1,
}, },
count = 1, [ "botania:manaResource:14" ] = {
}, ingredients = {
[ "botania:manaResource:14" ] = { [ 10 ] = "botania:manaResource:5",
ingredients = { [ 2 ] = "botania:manaResource:5",
[ 10 ] = "botania:manaResource:5", [ 5 ] = "botania:manaResource:5",
[ 2 ] = "botania:manaResource:5", [ 6 ] = "botania:manaResource:4",
[ 5 ] = "botania:manaResource:5", [ 7 ] = "botania:manaResource:5",
[ 6 ] = "botania:manaResource:4", },
[ 7 ] = "botania:manaResource:5", count = 1,
}, },
count = 1, [ "botania:petal:0" ] = {
}, ingredients = {
[ "botania:petal:0" ] = { "botania:flower:0",
ingredients = { },
"botania:flower:0", count = 6,
}, },
count = 6, [ "botania:livingwood:1" ] = {
}, ingredients = {
[ "botania:livingwood:1" ] = { "botania:livingwood:0",
ingredients = { },
"botania:livingwood:0", count = 4,
}, },
count = 4, [ "botania:runeAltar:0" ] = {
}, ingredients = {
[ "botania:runeAltar:0" ] = { "botania:livingrock:0",
ingredients = { "botania:livingrock:0",
"botania:livingrock:0", "botania:livingrock:0",
"botania:livingrock:0", [ 5 ] = "botania:livingrock:0",
"botania:livingrock:0", [ 6 ] = "botania:manaResource:1",
[ 5 ] = "botania:livingrock:0", [ 7 ] = "botania:livingrock:0",
[ 6 ] = "botania:manaResource:1", },
[ 7 ] = "botania:livingrock:0", count = 1,
}, },
count = 1, [ "botania:manaResource:18" ] = {
}, ingredients = {
[ "botania:manaResource:18" ] = { "botania:manaResource:4",
ingredients = { },
"botania:manaResource:4", count = 9,
}, },
count = 9, [ "botania:petal:2" ] = {
}, ingredients = {
[ "botania:petal:2" ] = { "botania:flower:2",
ingredients = { },
"botania:flower:2", count = 2,
}, },
count = 2, [ "botania:petal:7" ] = {
}, ingredients = {
[ "botania:petal:7" ] = { "botania:flower:7",
ingredients = { },
"botania:flower:7", count = 2,
}, },
count = 2, [ "botania:petal:13" ] = {
}, ingredients = {
[ "botania:petal:13" ] = { "botania:flower:13",
ingredients = { },
"botania:flower:13", count = 4,
}, },
count = 4, [ "botania:lens:10" ] = {
}, count = 1,
[ "botania:lens:10" ] = { ingredients = {
count = 1, "botania:lens:0",
ingredients = { "minecraft:gold_ingot:0",
"botania:lens:0", [ 5 ] = "minecraft:iron_ingot:0",
"minecraft:gold_ingot:0", },
[ 5 ] = "minecraft:iron_ingot:0", maxCount = 1,
}, },
maxCount = 1, [ "botania:distributor:0" ] = {
}, ingredients = {
[ "botania:distributor:0" ] = { "botania:livingrock:0",
ingredients = { "botania:livingrock:0",
"botania:livingrock:0", "botania:livingrock:0",
"botania:livingrock:0", [ 9 ] = "botania:livingrock:0",
"botania:livingrock:0", [ 10 ] = "botania:livingrock:0",
[ 9 ] = "botania:livingrock:0", [ 11 ] = "botania:livingrock:0",
[ 10 ] = "botania:livingrock:0", [ 5 ] = "botania:manaResource:0",
[ 11 ] = "botania:livingrock:0", [ 7 ] = "botania:manaResource:0",
[ 5 ] = "botania:manaResource:0", },
[ 7 ] = "botania:manaResource:0", count = 1,
}, },
count = 1, [ "botania:petal:12" ] = {
}, ingredients = {
[ "botania:petal:12" ] = { "botania:flower:12",
ingredients = { },
"botania:flower:12", count = 2,
}, },
count = 2,
}, },
} }

View File

@@ -1,87 +1,91 @@
{ {
[ "computercraft:turtle_advanced:0" ] = { name = "Computercraft",
ingredients = { version = "MC 1.8+",
"minecraft:gold_ingot:0", recipes = {
"minecraft:gold_ingot:0", [ "computercraft:turtle_advanced:0" ] = {
"minecraft:gold_ingot:0", ingredients = {
[ 9 ] = "minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:chest:0", "minecraft:gold_ingot:0",
[ 11 ] = "minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 9 ] = "minecraft:gold_ingot:0",
[ 6 ] = "computercraft:computer:16384", [ 10 ] = "minecraft:chest:0",
[ 7 ] = "minecraft:gold_ingot:0", [ 11 ] = "minecraft:gold_ingot:0",
[ 5 ] = "minecraft:gold_ingot:0",
[ 6 ] = "computercraft:computer:16384",
[ 7 ] = "minecraft:gold_ingot:0",
},
count = 1,
}, },
count = 1, [ "computercraft:pocket_computer:1" ] = {
}, count = 1,
[ "computercraft:pocket_computer:1" ] = { ingredients = {
count = 1, "minecraft:gold_ingot:0",
ingredients = { "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 9 ] = "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 10 ] = "minecraft:glass_pane:0",
[ 9 ] = "minecraft:gold_ingot:0", [ 11 ] = "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:glass_pane:0", [ 5 ] = "minecraft:gold_ingot:0",
[ 11 ] = "minecraft:gold_ingot:0", [ 6 ] = "minecraft:golden_apple:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 7 ] = "minecraft:gold_ingot:0",
[ 6 ] = "minecraft:golden_apple:0", },
[ 7 ] = "minecraft:gold_ingot:0", maxCount = 1,
}, },
maxCount = 1, [ "computercraft:peripheral:0" ] = {
}, ingredients = {
[ "computercraft:peripheral:0" ] = { "minecraft:stone:0",
ingredients = { "minecraft:stone:0",
"minecraft:stone:0", "minecraft:stone:0",
"minecraft:stone:0", [ 9 ] = "minecraft:stone:0",
"minecraft:stone:0", [ 10 ] = "minecraft:redstone:0",
[ 9 ] = "minecraft:stone:0", [ 11 ] = "minecraft:stone:0",
[ 10 ] = "minecraft:redstone:0", [ 5 ] = "minecraft:stone:0",
[ 11 ] = "minecraft:stone:0", [ 6 ] = "minecraft:redstone:0",
[ 5 ] = "minecraft:stone:0", [ 7 ] = "minecraft:stone:0",
[ 6 ] = "minecraft:redstone:0", },
[ 7 ] = "minecraft:stone:0", count = 1,
}, },
count = 1, [ "computercraft:peripheral:4" ] = {
}, ingredients = {
[ "computercraft:peripheral:4" ] = { "minecraft:gold_ingot:0",
ingredients = { "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 9 ] = "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 10 ] = "minecraft:gold_ingot:0",
[ 9 ] = "minecraft:gold_ingot:0", [ 11 ] = "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:gold_ingot:0", [ 5 ] = "minecraft:gold_ingot:0",
[ 11 ] = "minecraft:gold_ingot:0", [ 6 ] = "minecraft:glass_pane:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 7 ] = "minecraft:gold_ingot:0",
[ 6 ] = "minecraft:glass_pane:0", },
[ 7 ] = "minecraft:gold_ingot:0", count = 4,
}, },
count = 4, [ "computercraft:advanced_modem:0" ] = {
}, ingredients = {
[ "computercraft:advanced_modem:0" ] = { "minecraft:gold_ingot:0",
ingredients = { "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 9 ] = "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 10 ] = "minecraft:gold_ingot:0",
[ 9 ] = "minecraft:gold_ingot:0", [ 11 ] = "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:gold_ingot:0", [ 5 ] = "minecraft:gold_ingot:0",
[ 11 ] = "minecraft:gold_ingot:0", [ 6 ] = "minecraft:ender_eye:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 7 ] = "minecraft:gold_ingot:0",
[ 6 ] = "minecraft:ender_eye:0", },
[ 7 ] = "minecraft:gold_ingot:0", count = 1,
}, },
count = 1, [ "computercraft:computer:16384" ] = {
}, ingredients = {
[ "computercraft:computer:16384" ] = { "minecraft:gold_ingot:0",
ingredients = { "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 9 ] = "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 10 ] = "minecraft:glass_pane:0",
[ 9 ] = "minecraft:gold_ingot:0", [ 11 ] = "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:glass_pane:0", [ 5 ] = "minecraft:gold_ingot:0",
[ 11 ] = "minecraft:gold_ingot:0", [ 6 ] = "minecraft:redstone:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 7 ] = "minecraft:gold_ingot:0",
[ 6 ] = "minecraft:redstone:0", },
[ 7 ] = "minecraft:gold_ingot:0", count = 1,
}, },
count = 1,
}, },
} }

File diff suppressed because it is too large Load Diff

View File

@@ -1,43 +1,47 @@
{ {
[ "exnihiloadscensio:blockBarrel1:0" ] = { name = "Ex Nihilo",
ingredients = { version = "MC 1.8+",
"minecraft:stone:0", recipes = {
[ 9 ] = "minecraft:stone:0", [ "exnihiloadscensio:blockBarrel1:0" ] = {
[ 10 ] = "minecraft:stone_slab:0", ingredients = {
[ 11 ] = "minecraft:stone:0", "minecraft:stone:0",
[ 3 ] = "minecraft:stone:0", [ 9 ] = "minecraft:stone:0",
[ 5 ] = "minecraft:stone:0", [ 10 ] = "minecraft:stone_slab:0",
[ 7 ] = "minecraft:stone:0", [ 11 ] = "minecraft:stone:0",
[ 3 ] = "minecraft:stone:0",
[ 5 ] = "minecraft:stone:0",
[ 7 ] = "minecraft:stone:0",
},
count = 1,
}, },
count = 1, [ "exnihiloadscensio:blockCrucible:0" ] = {
}, ingredients = {
[ "exnihiloadscensio:blockCrucible:0" ] = { "exnihiloadscensio:itemMaterial:1",
ingredients = { [ 9 ] = "exnihiloadscensio:itemMaterial:1",
"exnihiloadscensio:itemMaterial:1", [ 10 ] = "exnihiloadscensio:itemMaterial:1",
[ 9 ] = "exnihiloadscensio:itemMaterial:1", [ 11 ] = "exnihiloadscensio:itemMaterial:1",
[ 10 ] = "exnihiloadscensio:itemMaterial:1", [ 3 ] = "exnihiloadscensio:itemMaterial:1",
[ 11 ] = "exnihiloadscensio:itemMaterial:1", [ 5 ] = "exnihiloadscensio:itemMaterial:1",
[ 3 ] = "exnihiloadscensio:itemMaterial:1", [ 7 ] = "exnihiloadscensio:itemMaterial:1",
[ 5 ] = "exnihiloadscensio:itemMaterial:1", },
[ 7 ] = "exnihiloadscensio:itemMaterial:1", count = 1,
}, },
count = 1, [ "exnihiloadscensio:hammerStone:0" ] = {
}, maxCount = 1,
[ "exnihiloadscensio:hammerStone:0" ] = { ingredients = {
maxCount = 1, [ 7 ] = "minecraft:cobblestone:0",
ingredients = { [ 9 ] = "minecraft:stick:0",
[ 7 ] = "minecraft:cobblestone:0", [ 2 ] = "minecraft:cobblestone:0",
[ 9 ] = "minecraft:stick:0", [ 6 ] = "minecraft:stick:0",
[ 2 ] = "minecraft:cobblestone:0", },
[ 6 ] = "minecraft:stick:0", count = 1,
}, },
count = 1, [ "exnihiloadscensio:itemMaterial:1" ] = {
}, ingredients = {
[ "exnihiloadscensio:itemMaterial:1" ] = { "minecraft:dye:15",
ingredients = { "minecraft:clay_ball:0",
"minecraft:dye:15", },
"minecraft:clay_ball:0", count = 1,
}, },
count = 1,
}, },
} }

View File

@@ -1,168 +1,172 @@
{ {
[ "extrautils2:decorativesolid:2" ] = { name = "Extra Utilities",
ingredients = { version = "MC 1.8+",
"minecraft:stonebrick:0", recipes = {
"minecraft:stonebrick:0", [ "extrautils2:decorativesolid:2" ] = {
[ 5 ] = "minecraft:stonebrick:0", ingredients = {
[ 6 ] = "minecraft:stonebrick:0", "minecraft:stonebrick:0",
"minecraft:stonebrick:0",
[ 5 ] = "minecraft:stonebrick:0",
[ 6 ] = "minecraft:stonebrick:0",
},
count = 4,
}, },
count = 4, [ "extrautils2:drum:1" ] = {
}, ingredients = {
[ "extrautils2:drum:1" ] = { "minecraft:iron_ingot:0",
ingredients = { "minecraft:heavy_weighted_pressure_plate:0",
"minecraft:iron_ingot:0", "minecraft:iron_ingot:0",
"minecraft:heavy_weighted_pressure_plate:0", [ 9 ] = "minecraft:iron_ingot:0",
"minecraft:iron_ingot:0", [ 10 ] = "minecraft:heavy_weighted_pressure_plate:0",
[ 9 ] = "minecraft:iron_ingot:0", [ 11 ] = "minecraft:iron_ingot:0",
[ 10 ] = "minecraft:heavy_weighted_pressure_plate:0", [ 5 ] = "minecraft:iron_ingot:0",
[ 11 ] = "minecraft:iron_ingot:0", [ 6 ] = "minecraft:cauldron:0",
[ 5 ] = "minecraft:iron_ingot:0", [ 7 ] = "minecraft:iron_ingot:0",
[ 6 ] = "minecraft:cauldron:0", },
[ 7 ] = "minecraft:iron_ingot:0", count = 1,
}, },
count = 1, [ "extrautils2:endershard:0" ] = {
}, ingredients = {
[ "extrautils2:endershard:0" ] = { "minecraft:ender_pearl:0",
ingredients = { "extrautils2:glasscutter:*",
"minecraft:ender_pearl:0", },
"extrautils2:glasscutter:*", craftingTools = {
[ "extrautils2:glasscutter:*" ] = true,
},
maxCount = 1,
count = 8,
}, },
craftingTools = { [ "extrautils2:grocket:2" ] = {
[ "extrautils2:glasscutter:*" ] = true, ingredients = {
"minecraft:redstone:0",
"extrautils2:pipe:0",
"minecraft:redstone:0",
[ 5 ] = "minecraft:stone:0",
[ 6 ] = "minecraft:bucket:0",
[ 7 ] = "minecraft:stone:0",
},
count = 4,
}, },
maxCount = 1, [ "extrautils2:grocket:4" ] = {
count = 8, ingredients = {
}, [ 10 ] = "minecraft:ender_pearl:0",
[ "extrautils2:grocket:2" ] = { [ 2 ] = "minecraft:ender_pearl:0",
ingredients = { [ 5 ] = "extrautils2:grocket:2",
"minecraft:redstone:0", [ 6 ] = "minecraft:diamond:0",
"extrautils2:pipe:0", [ 7 ] = "extrautils2:grocket:2",
"minecraft:redstone:0", },
[ 5 ] = "minecraft:stone:0", count = 2,
[ 6 ] = "minecraft:bucket:0",
[ 7 ] = "minecraft:stone:0",
}, },
count = 4, [ "extrautils2:ingredients:0" ] = {
}, ingredients = {
[ "extrautils2:grocket:4" ] = { "extrautils2:endershard:0",
ingredients = { "enderio:itemAlloy:3",
[ 10 ] = "minecraft:ender_pearl:0", "enderio:itemAlloy:3",
[ 2 ] = "minecraft:ender_pearl:0", [ 5 ] = "enderio:itemAlloy:3",
[ 5 ] = "extrautils2:grocket:2", [ 6 ] = "enderio:itemAlloy:3",
[ 6 ] = "minecraft:diamond:0", [ 7 ] = "enderio:itemAlloy:3",
[ 7 ] = "extrautils2:grocket:2", },
count = 1,
}, },
count = 2, [ "extrautils2:ingredients:1" ] = {
}, ingredients = {
[ "extrautils2:ingredients:0" ] = { [ 10 ] = "minecraft:redstone_torch:0",
ingredients = { [ 2 ] = "minecraft:redstone_torch:0",
"extrautils2:endershard:0", [ 5 ] = "minecraft:redstone_torch:0",
"enderio:itemAlloy:3", [ 6 ] = "minecraft:planks:0",
"enderio:itemAlloy:3", [ 7 ] = "minecraft:redstone_torch:0",
[ 5 ] = "enderio:itemAlloy:3", },
[ 6 ] = "enderio:itemAlloy:3", count = 1,
[ 7 ] = "enderio:itemAlloy:3",
}, },
count = 1, [ "extrautils2:ingredients:6" ] = {
}, count = 1,
[ "extrautils2:ingredients:1" ] = { ingredients = {
ingredients = { "extrautils2:ingredients:9",
[ 10 ] = "minecraft:redstone_torch:0", "minecraft:gold_ingot:0",
[ 2 ] = "minecraft:redstone_torch:0", [ 5 ] = "minecraft:redstone_block:0",
[ 5 ] = "minecraft:redstone_torch:0", },
[ 6 ] = "minecraft:planks:0", maxCount = 4,
[ 7 ] = "minecraft:redstone_torch:0",
}, },
count = 1, [ "extrautils2:miner:0" ] = {
}, ingredients = {
[ "extrautils2:ingredients:6" ] = { "minecraft:dropper:0",
count = 1, "extrautils2:ingredients:0",
ingredients = { [ 5 ] = "minecraft:iron_pickaxe:*",
"extrautils2:ingredients:9", },
"minecraft:gold_ingot:0", count = 1,
[ 5 ] = "minecraft:redstone_block:0",
}, },
maxCount = 4, [ "extrautils2:passivegenerator:3" ] = {
}, ingredients = {
[ "extrautils2:miner:0" ] = { "extrautils2:decorativesolid:3",
ingredients = { "extrautils2:decorativesolid:3",
"minecraft:dropper:0", "extrautils2:decorativesolid:3",
"extrautils2:ingredients:0", [ 9 ] = "extrautils2:decorativesolid:3",
[ 5 ] = "minecraft:iron_pickaxe:*", [ 10 ] = "extrautils2:decorativesolid:3",
[ 11 ] = "extrautils2:decorativesolid:3",
[ 5 ] = "extrautils2:ingredients:1",
[ 6 ] = "extrautils2:ingredients:0",
[ 7 ] = "extrautils2:ingredients:1",
},
count = 1,
}, },
count = 1, [ "extrautils2:passivegenerator:7" ] = {
}, ingredients = {
[ "extrautils2:passivegenerator:3" ] = { [ 7 ] = "extrautils2:decorativesolid:2",
ingredients = { [ 2 ] = "extrautils2:ingredients:1",
"extrautils2:decorativesolid:3", [ 5 ] = "extrautils2:decorativesolid:2",
"extrautils2:decorativesolid:3", [ 6 ] = "extrautils2:ingredients:0",
"extrautils2:decorativesolid:3", },
[ 9 ] = "extrautils2:decorativesolid:3", count = 1,
[ 10 ] = "extrautils2:decorativesolid:3",
[ 11 ] = "extrautils2:decorativesolid:3",
[ 5 ] = "extrautils2:ingredients:1",
[ 6 ] = "extrautils2:ingredients:0",
[ 7 ] = "extrautils2:ingredients:1",
}, },
count = 1, [ "extrautils2:pipe:0" ] = {
}, ingredients = {
[ "extrautils2:passivegenerator:7" ] = { "minecraft:stone_slab:0",
ingredients = { "minecraft:stone_slab:0",
[ 7 ] = "extrautils2:decorativesolid:2", "minecraft:stone_slab:0",
[ 2 ] = "extrautils2:ingredients:1", [ 9 ] = "minecraft:stone_slab:0",
[ 5 ] = "extrautils2:decorativesolid:2", [ 10 ] = "minecraft:stone_slab:0",
[ 6 ] = "extrautils2:ingredients:0", [ 11 ] = "minecraft:stone_slab:0",
[ 5 ] = "minecraft:glass:0",
[ 6 ] = "minecraft:redstone:0",
[ 7 ] = "minecraft:glass:0",
},
count = 64,
}, },
count = 1, [ "extrautils2:resonator:0" ] = {
}, ingredients = {
[ "extrautils2:pipe:0" ] = { "minecraft:redstone:0",
ingredients = { "minecraft:coal_block:0",
"minecraft:stone_slab:0", "minecraft:redstone:0",
"minecraft:stone_slab:0", [ 9 ] = "minecraft:iron_ingot:0",
"minecraft:stone_slab:0", [ 10 ] = "minecraft:iron_ingot:0",
[ 9 ] = "minecraft:stone_slab:0", [ 11 ] = "minecraft:iron_ingot:0",
[ 10 ] = "minecraft:stone_slab:0", [ 5 ] = "minecraft:iron_ingot:0",
[ 11 ] = "minecraft:stone_slab:0", [ 6 ] = "extrautils2:ingredients:0",
[ 5 ] = "minecraft:glass:0", [ 7 ] = "minecraft:iron_ingot:0",
[ 6 ] = "minecraft:redstone:0", },
[ 7 ] = "minecraft:glass:0", count = 1,
}, },
count = 64, [ "extrautils2:trashcan:0" ] = {
}, ingredients = {
[ "extrautils2:resonator:0" ] = { "minecraft:stone:0",
ingredients = { "minecraft:stone:0",
"minecraft:redstone:0", "minecraft:stone:0",
"minecraft:coal_block:0", [ 9 ] = "minecraft:cobblestone:0",
"minecraft:redstone:0", [ 10 ] = "minecraft:cobblestone:0",
[ 9 ] = "minecraft:iron_ingot:0", [ 11 ] = "minecraft:cobblestone:0",
[ 10 ] = "minecraft:iron_ingot:0", [ 5 ] = "minecraft:cobblestone:0",
[ 11 ] = "minecraft:iron_ingot:0", [ 6 ] = "minecraft:chest:0",
[ 5 ] = "minecraft:iron_ingot:0", [ 7 ] = "minecraft:cobblestone:0",
[ 6 ] = "extrautils2:ingredients:0", },
[ 7 ] = "minecraft:iron_ingot:0", count = 1,
}, },
count = 1, [ "extrautils2:user:0" ] = {
}, ingredients = {
[ "extrautils2:trashcan:0" ] = { "minecraft:dropper:0",
ingredients = { "extrautils2:ingredients:0",
"minecraft:stone:0", [ 5 ] = "minecraft:lever:0",
"minecraft:stone:0", },
"minecraft:stone:0", count = 1,
[ 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,
}, },
} }

View File

@@ -1,114 +1,118 @@
{ {
[ "ironchest:BlockIronChest:0" ] = { name = "Iron Chests",
ingredients = { version = "MC 1.8+",
"minecraft:iron_ingot:0", recipes = {
"minecraft:iron_ingot:0", [ "ironchest:BlockIronChest:0" ] = {
"minecraft:iron_ingot:0", ingredients = {
[ 9 ] = "minecraft:iron_ingot:0", "minecraft:iron_ingot:0",
[ 10 ] = "minecraft:iron_ingot:0", "minecraft:iron_ingot:0",
[ 11 ] = "minecraft:iron_ingot:0", "minecraft:iron_ingot:0",
[ 5 ] = "minecraft:iron_ingot:0", [ 9 ] = "minecraft:iron_ingot:0",
[ 6 ] = "minecraft:chest:0", [ 10 ] = "minecraft:iron_ingot:0",
[ 7 ] = "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,
}, },
count = 1, [ "ironchest:BlockIronChest:1" ] = {
}, ingredients = {
[ "ironchest:BlockIronChest:1" ] = { "minecraft:gold_ingot:0",
ingredients = { "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 9 ] = "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 10 ] = "minecraft:gold_ingot:0",
[ 9 ] = "minecraft:gold_ingot:0", [ 11 ] = "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:gold_ingot:0", [ 5 ] = "minecraft:gold_ingot:0",
[ 11 ] = "minecraft:gold_ingot:0", [ 6 ] = "ironchest:BlockIronChest:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 7 ] = "minecraft:gold_ingot:0",
[ 6 ] = "ironchest:BlockIronChest:0", },
[ 7 ] = "minecraft:gold_ingot:0", count = 1,
}, },
count = 1, [ "ironchest:BlockIronChest:2" ] = {
}, ingredients = {
[ "ironchest:BlockIronChest:2" ] = { "minecraft:glass:0",
ingredients = { "minecraft:glass:0",
"minecraft:glass:0", "minecraft:glass:0",
"minecraft:glass:0", [ 9 ] = "minecraft:glass:0",
"minecraft:glass:0", [ 10 ] = "minecraft:glass:0",
[ 9 ] = "minecraft:glass:0", [ 11 ] = "minecraft:glass:0",
[ 10 ] = "minecraft:glass:0", [ 5 ] = "minecraft:diamond:0",
[ 11 ] = "minecraft:glass:0", [ 6 ] = "ironchest:BlockIronChest:1",
[ 5 ] = "minecraft:diamond:0", [ 7 ] = "minecraft:diamond:0",
[ 6 ] = "ironchest:BlockIronChest:1", },
[ 7 ] = "minecraft:diamond:0", count = 1,
}, },
count = 1, [ "ironchest:BlockIronChest:5" ] = {
}, ingredients = {
[ "ironchest:BlockIronChest:5" ] = { "minecraft:glass:0",
ingredients = { "minecraft:glass:0",
"minecraft:glass:0", "minecraft:glass:0",
"minecraft:glass:0", [ 9 ] = "minecraft:glass:0",
"minecraft:glass:0", [ 10 ] = "minecraft:glass:0",
[ 9 ] = "minecraft:glass:0", [ 11 ] = "minecraft:glass:0",
[ 10 ] = "minecraft:glass:0", [ 5 ] = "minecraft:glass:0",
[ 11 ] = "minecraft:glass:0", [ 6 ] = "ironchest:BlockIronChest:2",
[ 5 ] = "minecraft:glass:0", [ 7 ] = "minecraft:glass:0",
[ 6 ] = "ironchest:BlockIronChest:2", },
[ 7 ] = "minecraft:glass:0", count = 1,
}, },
count = 1, [ "ironchest:BlockIronChest:6" ] = {
}, ingredients = {
[ "ironchest:BlockIronChest:6" ] = { "minecraft:obsidian:0",
ingredients = { "minecraft:obsidian:0",
"minecraft:obsidian:0", "minecraft:obsidian:0",
"minecraft:obsidian:0", [ 9 ] = "minecraft:obsidian:0",
"minecraft:obsidian:0", [ 10 ] = "minecraft:obsidian:0",
[ 9 ] = "minecraft:obsidian:0", [ 11 ] = "minecraft:obsidian:0",
[ 10 ] = "minecraft:obsidian:0", [ 5 ] = "minecraft:obsidian:0",
[ 11 ] = "minecraft:obsidian:0", [ 6 ] = "ironchest:BlockIronChest:2",
[ 5 ] = "minecraft:obsidian:0", [ 7 ] = "minecraft:obsidian:0",
[ 6 ] = "ironchest:BlockIronChest:2", },
[ 7 ] = "minecraft:obsidian:0", count = 1,
}, },
count = 1, [ "ironchest:goldDiamondUpgrade:0" ] = {
}, ingredients = {
[ "ironchest:goldDiamondUpgrade:0" ] = { "minecraft:glass:0",
ingredients = { "minecraft:glass:0",
"minecraft:glass:0", "minecraft:glass:0",
"minecraft:glass:0", [ 9 ] = "minecraft:glass:0",
"minecraft:glass:0", [ 10 ] = "minecraft:glass:0",
[ 9 ] = "minecraft:glass:0", [ 11 ] = "minecraft:glass:0",
[ 10 ] = "minecraft:glass:0", [ 5 ] = "minecraft:diamond:0",
[ 11 ] = "minecraft:glass:0", [ 6 ] = "minecraft:gold_ingot:0",
[ 5 ] = "minecraft:diamond:0", [ 7 ] = "minecraft:diamond:0",
[ 6 ] = "minecraft:gold_ingot:0", },
[ 7 ] = "minecraft:diamond:0", count = 1,
}, },
count = 1, [ "ironchest:ironGoldUpgrade:0" ] = {
}, ingredients = {
[ "ironchest:ironGoldUpgrade:0" ] = { "minecraft:gold_ingot:0",
ingredients = { "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 9 ] = "minecraft:gold_ingot:0",
"minecraft:gold_ingot:0", [ 10 ] = "minecraft:gold_ingot:0",
[ 9 ] = "minecraft:gold_ingot:0", [ 11 ] = "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:gold_ingot:0", [ 5 ] = "minecraft:gold_ingot:0",
[ 11 ] = "minecraft:gold_ingot:0", [ 6 ] = "minecraft:iron_ingot:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 7 ] = "minecraft:gold_ingot:0",
[ 6 ] = "minecraft:iron_ingot:0", },
[ 7 ] = "minecraft:gold_ingot:0", count = 1,
}, },
count = 1, [ "ironchest:woodIronUpgrade:0" ] = {
}, ingredients = {
[ "ironchest:woodIronUpgrade:0" ] = { "minecraft:iron_ingot:0",
ingredients = { "minecraft:iron_ingot:0",
"minecraft:iron_ingot:0", "minecraft:iron_ingot:0",
"minecraft:iron_ingot:0", [ 9 ] = "minecraft:iron_ingot:0",
"minecraft:iron_ingot:0", [ 10 ] = "minecraft:iron_ingot:0",
[ 9 ] = "minecraft:iron_ingot:0", [ 11 ] = "minecraft:iron_ingot:0",
[ 10 ] = "minecraft:iron_ingot:0", [ 5 ] = "minecraft:iron_ingot:0",
[ 11 ] = "minecraft:iron_ingot:0", [ 6 ] = "minecraft:planks:0",
[ 5 ] = "minecraft:iron_ingot:0", [ 7 ] = "minecraft:iron_ingot:0",
[ 6 ] = "minecraft:planks:0", },
[ 7 ] = "minecraft:iron_ingot:0", count = 1,
}, },
count = 1,
}, },
} }

View File

@@ -1,58 +1,62 @@
{ {
[ "mekanism:EnergyTablet:0:3a153e5a66ba42a2d96ffd50ba64918b" ] = { name = "Mekanism",
ingredients = { version = "MC 1.8+",
"minecraft:redstone:0", recipes = {
"minecraft:gold_ingot:0", [ "mekanism:EnergyTablet:0:3a153e5a66ba42a2d96ffd50ba64918b" ] = {
"minecraft:redstone:0", ingredients = {
[ 9 ] = "minecraft:redstone:0", "minecraft:redstone:0",
[ 10 ] = "minecraft:gold_ingot:0", "minecraft:gold_ingot:0",
[ 11 ] = "minecraft:redstone:0", "minecraft:redstone:0",
[ 5 ] = "mekanism:EnrichedAlloy:0", [ 9 ] = "minecraft:redstone:0",
[ 6 ] = "minecraft:gold_ingot:0", [ 10 ] = "minecraft:gold_ingot:0",
[ 7 ] = "mekanism:EnrichedAlloy:0", [ 11 ] = "minecraft:redstone:0",
[ 5 ] = "mekanism:EnrichedAlloy:0",
[ 6 ] = "minecraft:gold_ingot:0",
[ 7 ] = "mekanism:EnrichedAlloy:0",
},
count = 1,
}, },
count = 1, [ "mekanism:SpeedUpgrade:0" ] = {
}, ingredients = {
[ "mekanism:SpeedUpgrade:0" ] = { [ 10 ] = "minecraft:glass:0",
ingredients = { [ 2 ] = "minecraft:glass:0",
[ 10 ] = "minecraft:glass:0", [ 5 ] = "mekanism:EnrichedAlloy:0",
[ 2 ] = "minecraft:glass:0", [ 6 ] = "mekanism:Dust:2",
[ 5 ] = "mekanism:EnrichedAlloy:0", [ 7 ] = "mekanism:EnrichedAlloy:0",
[ 6 ] = "mekanism:Dust:2", },
[ 7 ] = "mekanism:EnrichedAlloy:0", count = 1,
}, },
count = 1, [ "mekanism:ControlCircuit:1" ] = {
}, ingredients = {
[ "mekanism:ControlCircuit:1" ] = { "mekanism:EnrichedAlloy:0",
ingredients = { "mekanism:ControlCircuit:0",
"mekanism:EnrichedAlloy:0", "mekanism:EnrichedAlloy:0",
"mekanism:ControlCircuit:0", },
"mekanism:EnrichedAlloy:0", count = 1,
}, },
count = 1, [ "mekanism:BasicBlock:8" ] = {
}, ingredients = {
[ "mekanism:BasicBlock:8" ] = { "bigreactors:ingotmetals:5",
ingredients = { "minecraft:glass:0",
"bigreactors:ingotmetals:5", "bigreactors:ingotmetals:5",
"minecraft:glass:0", [ 9 ] = "bigreactors:ingotmetals:5",
"bigreactors:ingotmetals:5", [ 10 ] = "minecraft:glass:0",
[ 9 ] = "bigreactors:ingotmetals:5", [ 11 ] = "bigreactors:ingotmetals:5",
[ 10 ] = "minecraft:glass:0", [ 5 ] = "minecraft:glass:0",
[ 11 ] = "bigreactors:ingotmetals:5", [ 6 ] = "mekanism:Ingot:1",
[ 5 ] = "minecraft:glass:0", [ 7 ] = "minecraft:glass:0",
[ 6 ] = "mekanism:Ingot:1", },
[ 7 ] = "minecraft:glass:0", count = 1,
}, },
count = 1, [ "mekanism:EnergyUpgrade:0" ] = {
}, ingredients = {
[ "mekanism:EnergyUpgrade:0" ] = { [ 10 ] = "minecraft:glass:0",
ingredients = { [ 2 ] = "minecraft:glass:0",
[ 10 ] = "minecraft:glass:0", [ 5 ] = "mekanism:EnrichedAlloy:0",
[ 2 ] = "minecraft:glass:0", [ 6 ] = "exnihiloadscensio:itemOreGold:2",
[ 5 ] = "mekanism:EnrichedAlloy:0", [ 7 ] = "mekanism:EnrichedAlloy:0",
[ 6 ] = "exnihiloadscensio:itemOreGold:2", },
[ 7 ] = "mekanism:EnrichedAlloy:0", count = 1,
}, },
count = 1,
}, },
} }

File diff suppressed because it is too large Load Diff

View File

@@ -1,178 +1,182 @@
{ {
[ "mysticalagriculture:supremium_ingot:0" ] = { name = "Mystical Agriculture",
ingredients = { version = "MC 1.8+",
[ 10 ] = "mysticalagriculture:supremium_essence:0", recipes = {
[ 2 ] = "mysticalagriculture:supremium_essence:0", [ "mysticalagriculture:supremium_ingot:0" ] = {
[ 5 ] = "mysticalagriculture:supremium_essence:0", ingredients = {
[ 6 ] = "mysticalagriculture:superium_ingot:0", [ 10 ] = "mysticalagriculture:supremium_essence:0",
[ 7 ] = "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,
}, },
count = 1, [ "mysticalagriculture:prudentium_ingot:0" ] = {
}, ingredients = {
[ "mysticalagriculture:prudentium_ingot:0" ] = { [ 10 ] = "mysticalagriculture:prudentium_essence:0",
ingredients = { [ 2 ] = "mysticalagriculture:prudentium_essence:0",
[ 10 ] = "mysticalagriculture:prudentium_essence:0", [ 5 ] = "mysticalagriculture:prudentium_essence:0",
[ 2 ] = "mysticalagriculture:prudentium_essence:0", [ 6 ] = "mysticalagriculture:inferium_ingot:0",
[ 5 ] = "mysticalagriculture:prudentium_essence:0", [ 7 ] = "mysticalagriculture:prudentium_essence:0",
[ 6 ] = "mysticalagriculture:inferium_ingot:0", },
[ 7 ] = "mysticalagriculture:prudentium_essence:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:intermedium_ingot:0" ] = {
}, ingredients = {
[ "mysticalagriculture:intermedium_ingot:0" ] = { [ 10 ] = "mysticalagriculture:intermedium_essence:0",
ingredients = { [ 2 ] = "mysticalagriculture:intermedium_essence:0",
[ 10 ] = "mysticalagriculture:intermedium_essence:0", [ 5 ] = "mysticalagriculture:intermedium_essence:0",
[ 2 ] = "mysticalagriculture:intermedium_essence:0", [ 6 ] = "mysticalagriculture:prudentium_ingot:0",
[ 5 ] = "mysticalagriculture:intermedium_essence:0", [ 7 ] = "mysticalagriculture:intermedium_essence:0",
[ 6 ] = "mysticalagriculture:prudentium_ingot:0", },
[ 7 ] = "mysticalagriculture:intermedium_essence:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:superium_armor_core:0" ] = {
}, ingredients = {
[ "mysticalagriculture:superium_armor_core:0" ] = { "mysticalagriculture:superium_essence:0",
ingredients = { "minecraft:diamond_block:0",
"mysticalagriculture:superium_essence:0", "mysticalagriculture:superium_essence:0",
"minecraft:diamond_block:0", [ 5 ] = "minecraft:emerald:0",
"mysticalagriculture:superium_essence:0", [ 6 ] = "mysticalagriculture:intermedium_armor_core:0",
[ 5 ] = "minecraft:emerald:0", [ 7 ] = "minecraft:emerald:0",
[ 6 ] = "mysticalagriculture:intermedium_armor_core:0", [ 9 ] = "mysticalagriculture:superium_essence:0",
[ 7 ] = "minecraft:emerald:0", [ 10 ] = "minecraft:emerald:0",
[ 9 ] = "mysticalagriculture:superium_essence:0", [ 11 ] = "mysticalagriculture:superium_essence:0",
[ 10 ] = "minecraft:emerald:0", },
[ 11 ] = "mysticalagriculture:superium_essence:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:inferium_ingot:0" ] = {
}, ingredients = {
[ "mysticalagriculture:inferium_ingot:0" ] = { [ 10 ] = "mysticalagriculture:inferium_essence:0",
ingredients = { [ 2 ] = "mysticalagriculture:inferium_essence:0",
[ 10 ] = "mysticalagriculture:inferium_essence:0", [ 5 ] = "mysticalagriculture:inferium_essence:0",
[ 2 ] = "mysticalagriculture:inferium_essence:0", [ 6 ] = "mysticalagriculture:base_essence_ingot:0",
[ 5 ] = "mysticalagriculture:inferium_essence:0", [ 7 ] = "mysticalagriculture:inferium_essence:0",
[ 6 ] = "mysticalagriculture:base_essence_ingot:0", },
[ 7 ] = "mysticalagriculture:inferium_essence:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:intermedium_armor_core:0" ] = {
}, ingredients = {
[ "mysticalagriculture:intermedium_armor_core:0" ] = { "mysticalagriculture:intermedium_essence:0",
ingredients = { "minecraft:gold_block:0",
"mysticalagriculture:intermedium_essence:0", "mysticalagriculture:intermedium_essence:0",
"minecraft:gold_block:0", [ 5 ] = "minecraft:diamond:0",
"mysticalagriculture:intermedium_essence:0", [ 6 ] = "mysticalagriculture:prudentium_armor_core:0",
[ 5 ] = "minecraft:diamond:0", [ 7 ] = "minecraft:diamond:0",
[ 6 ] = "mysticalagriculture:prudentium_armor_core:0", [ 9 ] = "mysticalagriculture:intermedium_essence:0",
[ 7 ] = "minecraft:diamond:0", [ 10 ] = "minecraft:diamond:0",
[ 9 ] = "mysticalagriculture:intermedium_essence:0", [ 11 ] = "mysticalagriculture:intermedium_essence:0",
[ 10 ] = "minecraft:diamond:0", },
[ 11 ] = "mysticalagriculture:intermedium_essence:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:infusion_crystal:0" ] = {
}, ingredients = {
[ "mysticalagriculture:infusion_crystal:0" ] = { "mysticalagriculture:prosperity_shard:0",
ingredients = { "mysticalagriculture:inferium_essence:0",
"mysticalagriculture:prosperity_shard:0", "mysticalagriculture:prosperity_shard:0",
"mysticalagriculture:inferium_essence:0", [ 9 ] = "mysticalagriculture:prosperity_shard:0",
"mysticalagriculture:prosperity_shard:0", [ 10 ] = "mysticalagriculture:inferium_essence:0",
[ 9 ] = "mysticalagriculture:prosperity_shard:0", [ 11 ] = "mysticalagriculture:prosperity_shard:0",
[ 10 ] = "mysticalagriculture:inferium_essence:0", [ 5 ] = "mysticalagriculture:inferium_essence:0",
[ 11 ] = "mysticalagriculture:prosperity_shard:0", [ 6 ] = "minecraft:diamond:0",
[ 5 ] = "mysticalagriculture:inferium_essence:0", [ 7 ] = "mysticalagriculture:inferium_essence:0",
[ 6 ] = "minecraft:diamond:0", },
[ 7 ] = "mysticalagriculture:inferium_essence:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:supremium_armor_core:0" ] = {
}, ingredients = {
[ "mysticalagriculture:supremium_armor_core:0" ] = { "mysticalagriculture:supremium_essence:0",
ingredients = { "minecraft:nether_star:0",
"mysticalagriculture:supremium_essence:0", "mysticalagriculture:supremium_essence:0",
"minecraft:nether_star:0", [ 5 ] = "minecraft:skull:1",
"mysticalagriculture:supremium_essence:0", [ 6 ] = "mysticalagriculture:superium_armor_core:0",
[ 5 ] = "minecraft:skull:1", [ 7 ] = "minecraft:skull:1",
[ 6 ] = "mysticalagriculture:superium_armor_core:0", [ 9 ] = "mysticalagriculture:supremium_essence:0",
[ 7 ] = "minecraft:skull:1", [ 10 ] = "minecraft:skull:1",
[ 9 ] = "mysticalagriculture:supremium_essence:0", [ 11 ] = "mysticalagriculture:supremium_essence:0",
[ 10 ] = "minecraft:skull:1", },
[ 11 ] = "mysticalagriculture:supremium_essence:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:inferium_armor_core:0" ] = {
}, ingredients = {
[ "mysticalagriculture:inferium_armor_core:0" ] = { "mysticalagriculture:inferium_essence:0",
ingredients = { "minecraft:gold_ingot:0",
"mysticalagriculture:inferium_essence:0", "mysticalagriculture:inferium_essence:0",
"minecraft:gold_ingot:0", [ 5 ] = "minecraft:leather:0",
"mysticalagriculture:inferium_essence:0", [ 6 ] = "mysticalagriculture:base_essence_ingot:0",
[ 5 ] = "minecraft:leather:0", [ 7 ] = "minecraft:leather:0",
[ 6 ] = "mysticalagriculture:base_essence_ingot:0", [ 9 ] = "mysticalagriculture:inferium_essence:0",
[ 7 ] = "minecraft:leather:0", [ 10 ] = "minecraft:leather:0",
[ 9 ] = "mysticalagriculture:inferium_essence:0", [ 11 ] = "mysticalagriculture:inferium_essence:0",
[ 10 ] = "minecraft:leather:0", },
[ 11 ] = "mysticalagriculture:inferium_essence:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:base_essence_ingot:0" ] = {
}, ingredients = {
[ "mysticalagriculture:base_essence_ingot:0" ] = { [ 10 ] = "mysticalagriculture:prosperity_shard:0",
ingredients = { [ 2 ] = "mysticalagriculture:prosperity_shard:0",
[ 10 ] = "mysticalagriculture:prosperity_shard:0", [ 5 ] = "mysticalagriculture:prosperity_shard:0",
[ 2 ] = "mysticalagriculture:prosperity_shard:0", [ 6 ] = "thermalfoundation:material:136",
[ 5 ] = "mysticalagriculture:prosperity_shard:0", [ 7 ] = "mysticalagriculture:prosperity_shard:0",
[ 6 ] = "thermalfoundation:material:136", },
[ 7 ] = "mysticalagriculture:prosperity_shard:0", count = 1,
}, },
count = 1, [ "mysticalagriculture:tier2_inferium_seeds:0" ] = {
}, count = 1,
[ "mysticalagriculture:tier2_inferium_seeds:0" ] = { ingredients = {
count = 1, "mysticalagriculture:prudentium_essence:0",
ingredients = { "mysticalagriculture:prudentium_essence:0",
"mysticalagriculture:prudentium_essence:0", "mysticalagriculture:prudentium_essence:0",
"mysticalagriculture:prudentium_essence:0", [ 9 ] = "mysticalagriculture:prudentium_essence:0",
"mysticalagriculture:prudentium_essence:0", [ 10 ] = "mysticalagriculture:prudentium_essence:0",
[ 9 ] = "mysticalagriculture:prudentium_essence:0", [ 11 ] = "mysticalagriculture:prudentium_essence:0",
[ 10 ] = "mysticalagriculture:prudentium_essence:0", [ 5 ] = "mysticalagriculture:prudentium_essence:0",
[ 11 ] = "mysticalagriculture:prudentium_essence:0", [ 6 ] = "mysticalagriculture:tier1_inferium_seeds:0",
[ 5 ] = "mysticalagriculture:prudentium_essence:0", [ 7 ] = "mysticalagriculture:prudentium_essence:0",
[ 6 ] = "mysticalagriculture:tier1_inferium_seeds:0", },
[ 7 ] = "mysticalagriculture:prudentium_essence:0",
}, },
}, [ "mysticalagriculture:tier3_inferium_seeds:0" ] = {
[ "mysticalagriculture:tier3_inferium_seeds:0" ] = { count = 1,
count = 1, ingredients = {
ingredients = { "mysticalagriculture:intermedium_essence:0",
"mysticalagriculture:intermedium_essence:0", "mysticalagriculture:intermedium_essence:0",
"mysticalagriculture:intermedium_essence:0", "mysticalagriculture:intermedium_essence:0",
"mysticalagriculture:intermedium_essence:0", [ 9 ] = "mysticalagriculture:intermedium_essence:0",
[ 9 ] = "mysticalagriculture:intermedium_essence:0", [ 10 ] = "mysticalagriculture:intermedium_essence:0",
[ 10 ] = "mysticalagriculture:intermedium_essence:0", [ 11 ] = "mysticalagriculture:intermedium_essence:0",
[ 11 ] = "mysticalagriculture:intermedium_essence:0", [ 5 ] = "mysticalagriculture:intermedium_essence:0",
[ 5 ] = "mysticalagriculture:intermedium_essence:0", [ 6 ] = "mysticalagriculture:tier2_inferium_seeds:0",
[ 6 ] = "mysticalagriculture:tier2_inferium_seeds:0", [ 7 ] = "mysticalagriculture:intermedium_essence:0",
[ 7 ] = "mysticalagriculture:intermedium_essence:0", },
}, },
}, [ "mysticalagriculture:tier1_inferium_seeds:0" ] = {
[ "mysticalagriculture:tier1_inferium_seeds:0" ] = { count = 1,
count = 1, ingredients = {
ingredients = { "mysticalagriculture:inferium_essence:0",
"mysticalagriculture:inferium_essence:0", "mysticalagriculture:inferium_essence:0",
"mysticalagriculture:inferium_essence:0", "mysticalagriculture:inferium_essence:0",
"mysticalagriculture:inferium_essence:0", [ 9 ] = "mysticalagriculture:inferium_essence:0",
[ 9 ] = "mysticalagriculture:inferium_essence:0", [ 10 ] = "mysticalagriculture:inferium_essence:0",
[ 10 ] = "mysticalagriculture:inferium_essence:0", [ 11 ] = "mysticalagriculture:inferium_essence:0",
[ 11 ] = "mysticalagriculture:inferium_essence:0", [ 5 ] = "mysticalagriculture:inferium_essence:0",
[ 5 ] = "mysticalagriculture:inferium_essence:0", [ 6 ] = "minecraft:wheat_seeds:0",
[ 6 ] = "minecraft:wheat_seeds:0", [ 7 ] = "mysticalagriculture:inferium_essence:0",
[ 7 ] = "mysticalagriculture:inferium_essence:0", },
}, },
}, [ "mysticalagriculture:prudentium_armor_core:0" ] = {
[ "mysticalagriculture:prudentium_armor_core:0" ] = { ingredients = {
ingredients = { "mysticalagriculture:prudentium_essence:0",
"mysticalagriculture:prudentium_essence:0", "minecraft:lapis_block:0",
"minecraft:lapis_block:0", "mysticalagriculture:prudentium_essence:0",
"mysticalagriculture:prudentium_essence:0", [ 5 ] = "minecraft:gold_ingot:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 6 ] = "mysticalagriculture:inferium_armor_core:0",
[ 6 ] = "mysticalagriculture:inferium_armor_core:0", [ 7 ] = "minecraft:gold_ingot:0",
[ 7 ] = "minecraft:gold_ingot:0", [ 9 ] = "mysticalagriculture:prudentium_essence:0",
[ 9 ] = "mysticalagriculture:prudentium_essence:0", [ 10 ] = "minecraft:gold_ingot:0",
[ 10 ] = "minecraft:gold_ingot:0", [ 11 ] = "mysticalagriculture:prudentium_essence:0",
[ 11 ] = "mysticalagriculture:prudentium_essence:0", },
count = 1,
}, },
count = 1,
}, },
} }

View File

@@ -1,126 +1,130 @@
{ {
[ "rftools:crafter1:0" ] = { name = "RFTools",
ingredients = { version = "MC 1.8+",
[ 10 ] = "minecraft:redstone_torch:0", recipes = {
[ 2 ] = "minecraft:redstone_torch:0", [ "rftools:crafter1:0" ] = {
[ 5 ] = "minecraft:crafting_table:0", ingredients = {
[ 6 ] = "rftools:machine_frame:0", [ 10 ] = "minecraft:redstone_torch:0",
[ 7 ] = "minecraft:crafting_table:0", [ 2 ] = "minecraft:redstone_torch:0",
[ 5 ] = "minecraft:crafting_table:0",
[ 6 ] = "rftools:machine_frame:0",
[ 7 ] = "minecraft:crafting_table:0",
},
count = 1,
}, },
count = 1, [ "rftools:crafter2:0" ] = {
}, ingredients = {
[ "rftools:crafter2:0" ] = { [ 10 ] = "minecraft:redstone_torch:0",
ingredients = { [ 2 ] = "minecraft:redstone_torch:0",
[ 10 ] = "minecraft:redstone_torch:0", [ 5 ] = "minecraft:crafting_table:0",
[ 2 ] = "minecraft:redstone_torch:0", [ 6 ] = "rftools:crafter1:0",
[ 5 ] = "minecraft:crafting_table:0", [ 7 ] = "minecraft:crafting_table:0",
[ 6 ] = "rftools:crafter1:0", },
[ 7 ] = "minecraft:crafting_table:0", count = 1,
}, },
count = 1, [ "rftools:crafter3:0" ] = {
}, ingredients = {
[ "rftools:crafter3:0" ] = { [ 10 ] = "minecraft:redstone_torch:0",
ingredients = { [ 2 ] = "minecraft:redstone_torch:0",
[ 10 ] = "minecraft:redstone_torch:0", [ 5 ] = "minecraft:crafting_table:0",
[ 2 ] = "minecraft:redstone_torch:0", [ 6 ] = "rftools:crafter2:0",
[ 5 ] = "minecraft:crafting_table:0", [ 7 ] = "minecraft:crafting_table:0",
[ 6 ] = "rftools:crafter2:0", },
[ 7 ] = "minecraft:crafting_table:0", count = 1,
}, },
count = 1, [ "rftools:machine_frame:0" ] = {
}, ingredients = {
[ "rftools:machine_frame:0" ] = { "minecraft:iron_ingot:0",
ingredients = { "minecraft:dye:4",
"minecraft:iron_ingot:0", "minecraft:iron_ingot:0",
"minecraft:dye:4", [ 9 ] = "minecraft:iron_ingot:0",
"minecraft:iron_ingot:0", [ 10 ] = "minecraft:dye:4",
[ 9 ] = "minecraft:iron_ingot:0", [ 11 ] = "minecraft:iron_ingot:0",
[ 10 ] = "minecraft:dye:4", [ 5 ] = "minecraft:gold_nugget:0",
[ 11 ] = "minecraft:iron_ingot:0", [ 7 ] = "minecraft:gold_nugget:0",
[ 5 ] = "minecraft:gold_nugget:0", },
[ 7 ] = "minecraft:gold_nugget:0", count = 1,
}, },
count = 1, [ "rftools:modular_storage:0" ] = {
}, ingredients = {
[ "rftools:modular_storage:0" ] = { "minecraft:redstone:0",
ingredients = { "minecraft:chest:0",
"minecraft:redstone:0", "minecraft:redstone:0",
"minecraft:chest:0", [ 9 ] = "minecraft:redstone:0",
"minecraft:redstone:0", [ 10 ] = "minecraft:quartz:0",
[ 9 ] = "minecraft:redstone:0", [ 11 ] = "minecraft:redstone:0",
[ 10 ] = "minecraft:quartz:0", [ 5 ] = "minecraft:quartz:0",
[ 11 ] = "minecraft:redstone:0", [ 6 ] = "rftools:machine_frame:0",
[ 5 ] = "minecraft:quartz:0", [ 7 ] = "minecraft:quartz:0",
[ 6 ] = "rftools:machine_frame:0", },
[ 7 ] = "minecraft:quartz:0", count = 1,
}, },
count = 1, [ "rftools:storage_module:2" ] = {
}, count = 1,
[ "rftools:storage_module:2" ] = { ingredients = {
count = 1, [ 10 ] = "minecraft:redstone_block:0",
ingredients = { [ 11 ] = "minecraft:quartz_block:1",
[ 10 ] = "minecraft:redstone_block:0", [ 2 ] = "minecraft:chest:0",
[ 11 ] = "minecraft:quartz_block:1", [ 5 ] = "minecraft:gold_block:0",
[ 2 ] = "minecraft:chest:0", [ 6 ] = "rftools:storage_module:1",
[ 5 ] = "minecraft:gold_block:0", [ 7 ] = "minecraft:gold_block:0",
[ 6 ] = "rftools:storage_module:1", [ 9 ] = "minecraft:quartz_block:1",
[ 7 ] = "minecraft:gold_block:0", },
[ 9 ] = "minecraft:quartz_block:1", maxCount = 1,
}, },
maxCount = 1, [ "rftools:remote_storage:0" ] = {
}, ingredients = {
[ "rftools:remote_storage:0" ] = { "minecraft:ender_pearl:0",
ingredients = { "minecraft:chest:0",
"minecraft:ender_pearl:0", "minecraft:ender_pearl:0",
"minecraft:chest:0", [ 9 ] = "minecraft:ender_pearl:0",
"minecraft:ender_pearl:0", [ 10 ] = "minecraft:quartz:0",
[ 9 ] = "minecraft:ender_pearl:0", [ 11 ] = "minecraft:ender_pearl:0",
[ 10 ] = "minecraft:quartz:0", [ 5 ] = "minecraft:quartz:0",
[ 11 ] = "minecraft:ender_pearl:0", [ 6 ] = "rftools:machine_frame:0",
[ 5 ] = "minecraft:quartz:0", [ 7 ] = "minecraft:quartz:0",
[ 6 ] = "rftools:machine_frame:0", },
[ 7 ] = "minecraft:quartz:0", count = 1,
}, },
count = 1, [ "rftools:storage_module:0" ] = {
}, count = 1,
[ "rftools:storage_module:0" ] = { ingredients = {
count = 1, [ 10 ] = "minecraft:redstone:0",
ingredients = { [ 11 ] = "minecraft:quartz:0",
[ 10 ] = "minecraft:redstone:0", [ 2 ] = "minecraft:chest:0",
[ 11 ] = "minecraft:quartz:0", [ 5 ] = "minecraft:gold_nugget:0",
[ 2 ] = "minecraft:chest:0", [ 6 ] = "minecraft:iron_ingot:0",
[ 5 ] = "minecraft:gold_nugget:0", [ 7 ] = "minecraft:gold_nugget:0",
[ 6 ] = "minecraft:iron_ingot:0", [ 9 ] = "minecraft:quartz:0",
[ 7 ] = "minecraft:gold_nugget:0", },
[ 9 ] = "minecraft:quartz:0", maxCount = 1,
}, },
maxCount = 1, [ "rftools:storage_module:1" ] = {
}, count = 1,
[ "rftools:storage_module:1" ] = { ingredients = {
count = 1, [ 10 ] = "minecraft:redstone:0",
ingredients = { [ 11 ] = "minecraft:quartz:0",
[ 10 ] = "minecraft:redstone:0", [ 2 ] = "minecraft:chest:0",
[ 11 ] = "minecraft:quartz:0", [ 5 ] = "minecraft:gold_ingot:0",
[ 2 ] = "minecraft:chest:0", [ 6 ] = "rftools:storage_module:0",
[ 5 ] = "minecraft:gold_ingot:0", [ 7 ] = "minecraft:gold_ingot:0",
[ 6 ] = "rftools:storage_module:0", [ 9 ] = "minecraft:quartz:0",
[ 7 ] = "minecraft:gold_ingot:0", },
[ 9 ] = "minecraft:quartz:0", maxCount = 1,
}, },
maxCount = 1, [ "rftools:storage_module:6" ] = {
}, ingredients = {
[ "rftools:storage_module:6" ] = { "minecraft:ender_pearl:0",
ingredients = { "minecraft:chest:0",
"minecraft:ender_pearl:0", "minecraft:ender_pearl:0",
"minecraft:chest:0", [ 9 ] = "minecraft:quartz:0",
"minecraft:ender_pearl:0", [ 10 ] = "minecraft:redstone:0",
[ 9 ] = "minecraft:quartz:0", [ 11 ] = "minecraft:quartz:0",
[ 10 ] = "minecraft:redstone:0", [ 5 ] = "minecraft:gold_nugget:0",
[ 11 ] = "minecraft:quartz:0", [ 6 ] = "minecraft:iron_ingot:0",
[ 5 ] = "minecraft:gold_nugget:0", [ 7 ] = "minecraft:gold_nugget:0",
[ 6 ] = "minecraft:iron_ingot:0", },
[ 7 ] = "minecraft:gold_nugget:0", count = 1,
}, },
count = 1,
}, },
} }

View File

@@ -1,30 +1,34 @@
{ {
[ "storagedrawers:upgradeStorage:4" ] = { name = "Storage Drawers",
ingredients = { version = "MC 1.8+",
"minecraft:emerald:0", recipes = {
"minecraft:stick:0", [ "storagedrawers:upgradeStorage:4" ] = {
"minecraft:emerald:0", ingredients = {
[ 9 ] = "minecraft:emerald:0", "minecraft:emerald:0",
[ 10 ] = "minecraft:stick:0", "minecraft:stick:0",
[ 11 ] = "minecraft:emerald:0", "minecraft:emerald:0",
[ 5 ] = "minecraft:stick:0", [ 9 ] = "minecraft:emerald:0",
[ 6 ] = "storagedrawers:upgradeTemplate:0", [ 10 ] = "minecraft:stick:0",
[ 7 ] = "minecraft:stick:0", [ 11 ] = "minecraft:emerald:0",
[ 5 ] = "minecraft:stick:0",
[ 6 ] = "storagedrawers:upgradeTemplate:0",
[ 7 ] = "minecraft:stick:0",
},
count = 1,
}, },
count = 1, [ "storagedrawers:upgradeVoid:0" ] = {
}, ingredients = {
[ "storagedrawers:upgradeVoid:0" ] = { "minecraft:stick:0",
ingredients = { "minecraft:stick:0",
"minecraft:stick:0", "minecraft:stick:0",
"minecraft:stick:0", [ 9 ] = "minecraft:stick:0",
"minecraft:stick:0", [ 10 ] = "minecraft:stick:0",
[ 9 ] = "minecraft:stick:0", [ 11 ] = "minecraft:stick:0",
[ 10 ] = "minecraft:stick:0", [ 5 ] = "minecraft:obsidian:0",
[ 11 ] = "minecraft:stick:0", [ 6 ] = "storagedrawers:upgradeTemplate:0",
[ 5 ] = "minecraft:obsidian:0", [ 7 ] = "minecraft:obsidian:0",
[ 6 ] = "storagedrawers:upgradeTemplate:0", },
[ 7 ] = "minecraft:obsidian:0", count = 1,
}, },
count = 1,
}, },
} }

View File

@@ -1,36 +1,40 @@
{ {
[ "minecraft:book:0" ] = { name = "Tinkers Construct",
ingredients = { version = "MC 1.8+",
"minecraft:paper:0", recipes = {
"minecraft:paper:0", [ "minecraft:book:0" ] = {
"minecraft:paper:0", ingredients = {
[ 5 ] = "minecraft:string:0", "minecraft:paper:0",
[ 6 ] = "tconstruct:pattern:0", "minecraft:paper:0",
[ 7 ] = "tconstruct:pattern:0", "minecraft:paper:0",
[ 5 ] = "minecraft:string:0",
[ 6 ] = "tconstruct:pattern:0",
[ 7 ] = "tconstruct:pattern:0",
},
count = 1,
}, },
count = 1, [ "tconstruct:pattern:0" ] = {
}, ingredients = {
[ "tconstruct:pattern:0" ] = { "minecraft:planks:0",
ingredients = { "minecraft:stick:0",
"minecraft:planks:0", [ 5 ] = "minecraft:stick:0",
"minecraft:stick:0", [ 6 ] = "minecraft:planks:0",
[ 5 ] = "minecraft:stick:0", },
[ 6 ] = "minecraft:planks:0", count = 4,
}, },
count = 4, [ "tconstruct:soil:0" ] = {
}, ingredients = {
[ "tconstruct:soil:0" ] = { "minecraft:gravel:0",
ingredients = { "minecraft:sand:0",
"minecraft:gravel:0", "minecraft:gravel:0",
"minecraft:sand:0", [ 9 ] = "minecraft:gravel:0",
"minecraft:gravel:0", [ 10 ] = "minecraft:sand:0",
[ 9 ] = "minecraft:gravel:0", [ 11 ] = "minecraft:gravel:0",
[ 10 ] = "minecraft:sand:0", [ 5 ] = "minecraft:sand:0",
[ 11 ] = "minecraft:gravel:0", [ 6 ] = "minecraft:clay:0",
[ 5 ] = "minecraft:sand:0", [ 7 ] = "minecraft:sand:0",
[ 6 ] = "minecraft:clay:0", },
[ 7 ] = "minecraft:sand:0", count = 8,
}, },
count = 8, }
},
} }