recipe book selection
This commit is contained in:
@@ -4,7 +4,8 @@ local Util = require('util')
|
||||
local fs = _G.fs
|
||||
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 = { }
|
||||
|
||||
@@ -79,18 +80,17 @@ local function turtleCraft(recipe, qty, inventoryAdapter)
|
||||
end
|
||||
|
||||
function Craft.loadRecipes()
|
||||
Craft.recipes = Util.readTable(fs.combine(RECIPES_DIR, 'minecraft.db')) or { }
|
||||
Craft.recipes = { }
|
||||
|
||||
local files = fs.list('usr/etc/recipes')
|
||||
table.sort(files)
|
||||
Util.removeByValue(files, 'minecraft.db')
|
||||
Util.merge((Util.readTable(fs.combine(RECIPES_DIR, 'minecraft.db')) or { }).recipes)
|
||||
|
||||
for _,file in ipairs(files) do
|
||||
local recipes = Util.readTable(fs.combine(RECIPES_DIR, file))
|
||||
Util.merge(Craft.recipes, 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('usr/config/recipes.db') or { }
|
||||
local recipes = Util.readTable(USER_RECIPES) or { }
|
||||
Util.merge(Craft.recipes, recipes)
|
||||
end
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
_G.requireInjector()
|
||||
_G.requireInjector(_ENV)
|
||||
|
||||
local Ansi = require('ansi')
|
||||
local Event = require('event')
|
||||
|
||||
@@ -58,6 +58,9 @@ if device.workbench then
|
||||
end
|
||||
end
|
||||
|
||||
--TODO : find out duck antenna type
|
||||
duckAntenna = nil
|
||||
|
||||
local STATUS_INFO = 'info'
|
||||
local STATUS_WARNING = 'warning'
|
||||
local STATUS_ERROR = 'error'
|
||||
|
||||
121
apps/recipeBook.lua
Normal file
121
apps/recipeBook.lua
Normal 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()
|
||||
@@ -1,87 +1,91 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
count = 4,
|
||||
},
|
||||
[ "appliedenergistics2:material:43" ] = {
|
||||
ingredients = {
|
||||
"appliedenergistics2:material:0",
|
||||
"appliedenergistics2:material:8",
|
||||
"appliedenergistics2:material:22",
|
||||
[ "appliedenergistics2:material:43" ] = {
|
||||
ingredients = {
|
||||
"appliedenergistics2:material:0",
|
||||
"appliedenergistics2:material:8",
|
||||
"appliedenergistics2:material:22",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
[ "appliedenergistics2:material:44" ] = {
|
||||
ingredients = {
|
||||
[ 5 ] = "minecraft:quartz:0",
|
||||
[ 6 ] = "appliedenergistics2:material:8",
|
||||
[ 7 ] = "appliedenergistics2:material:22",
|
||||
[ "appliedenergistics2:material:44" ] = {
|
||||
ingredients = {
|
||||
[ 5 ] = "minecraft:quartz:0",
|
||||
[ 6 ] = "appliedenergistics2:material:8",
|
||||
[ 7 ] = "appliedenergistics2:material:22",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
@@ -1,451 +1,455 @@
|
||||
{
|
||||
[ "botania:vial:0" ] = {
|
||||
ingredients = {
|
||||
"botania:manaGlass:0",
|
||||
[ 6 ] = "botania:manaGlass:0",
|
||||
[ 3 ] = "botania:manaGlass: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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:petal:10" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:10",
|
||||
[ "botania:petal:10" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:10",
|
||||
},
|
||||
count = 12,
|
||||
},
|
||||
count = 12,
|
||||
},
|
||||
[ "botania:vial:1" ] = {
|
||||
ingredients = {
|
||||
"botania:elfGlass:0",
|
||||
[ 6 ] = "botania:elfGlass:0",
|
||||
[ 3 ] = "botania:elfGlass:0",
|
||||
[ "botania:vial:1" ] = {
|
||||
ingredients = {
|
||||
"botania:elfGlass:0",
|
||||
[ 6 ] = "botania:elfGlass:0",
|
||||
[ 3 ] = "botania:elfGlass:0",
|
||||
},
|
||||
count = 3,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:livingwood:5" ] = {
|
||||
ingredients = {
|
||||
"botania:livingwood:0",
|
||||
"minecraft:glowstone_dust:0",
|
||||
[ "botania:livingwood:5" ] = {
|
||||
ingredients = {
|
||||
"botania:livingwood:0",
|
||||
"minecraft:glowstone_dust:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:petal:11" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:11",
|
||||
[ "botania:petal:11" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:11",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:petal:15" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:15",
|
||||
[ "botania:petal:15" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:15",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
[ "botania:sparkUpgrade:2" ] = {
|
||||
ingredients = {
|
||||
"botania:manaResource:8",
|
||||
"botania:manaResource:0",
|
||||
[ 5 ] = "botania:rune:2",
|
||||
[ "botania:sparkUpgrade:2" ] = {
|
||||
ingredients = {
|
||||
"botania:manaResource:8",
|
||||
"botania:manaResource:0",
|
||||
[ 5 ] = "botania:rune:2",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:petal:8" ] = {
|
||||
ingredients = {
|
||||
"botania:doubleFlower2:0",
|
||||
[ "botania:petal:8" ] = {
|
||||
ingredients = {
|
||||
"botania:doubleFlower2:0",
|
||||
},
|
||||
count = 4,
|
||||
},
|
||||
count = 4,
|
||||
},
|
||||
[ "botania:petal:6" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:6",
|
||||
[ "botania:petal:6" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:6",
|
||||
},
|
||||
count = 10,
|
||||
},
|
||||
count = 10,
|
||||
},
|
||||
[ "botania:petal:9" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:9",
|
||||
[ "botania:petal:9" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:9",
|
||||
},
|
||||
count = 10,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:fertilizer:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:dye:15",
|
||||
"minecraft:dye:1",
|
||||
"minecraft:dye:1",
|
||||
[ 5 ] = "minecraft:dye:11",
|
||||
[ 6 ] = "minecraft:dye:11",
|
||||
[ "botania:fertilizer:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:dye:15",
|
||||
"minecraft:dye:1",
|
||||
"minecraft:dye:1",
|
||||
[ 5 ] = "minecraft:dye:11",
|
||||
[ 6 ] = "minecraft:dye:11",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:petal:14" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:14",
|
||||
[ "botania:petal:14" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:14",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
maxCount = 1,
|
||||
},
|
||||
[ "botania:petal:4" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:4",
|
||||
[ "botania:petal:4" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:4",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
[ "botania:sparkUpgrade:0" ] = {
|
||||
ingredients = {
|
||||
"botania:manaResource:8",
|
||||
"botania:manaResource:0",
|
||||
[ 5 ] = "botania:rune:0",
|
||||
[ "botania:sparkUpgrade:0" ] = {
|
||||
ingredients = {
|
||||
"botania:manaResource:8",
|
||||
"botania:manaResource:0",
|
||||
[ 5 ] = "botania:rune:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:petal:1" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:1",
|
||||
[ "botania:petal:1" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:1",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
[ "botania:petal:3" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:3",
|
||||
[ "botania:petal:3" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:3",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
[ "botania:petal:5" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:5",
|
||||
[ "botania:petal:5" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:5",
|
||||
},
|
||||
count = 12,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:manaResource:6" ] = {
|
||||
ingredients = {
|
||||
"minecraft:tallgrass:1",
|
||||
"minecraft:redstone:0",
|
||||
[ "botania:manaResource:6" ] = {
|
||||
ingredients = {
|
||||
"minecraft:tallgrass:1",
|
||||
"minecraft:redstone:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:manaResource:3" ] = {
|
||||
ingredients = {
|
||||
"botania:livingwood:0",
|
||||
[ 5 ] = "botania:livingwood:0",
|
||||
[ "botania:manaResource:3" ] = {
|
||||
ingredients = {
|
||||
"botania:livingwood:0",
|
||||
[ 5 ] = "botania:livingwood:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:petal:0" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:0",
|
||||
[ "botania:petal:0" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:0",
|
||||
},
|
||||
count = 6,
|
||||
},
|
||||
count = 6,
|
||||
},
|
||||
[ "botania:livingwood:1" ] = {
|
||||
ingredients = {
|
||||
"botania:livingwood:0",
|
||||
[ "botania:livingwood:1" ] = {
|
||||
ingredients = {
|
||||
"botania:livingwood:0",
|
||||
},
|
||||
count = 4,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:manaResource:18" ] = {
|
||||
ingredients = {
|
||||
"botania:manaResource:4",
|
||||
[ "botania:manaResource:18" ] = {
|
||||
ingredients = {
|
||||
"botania:manaResource:4",
|
||||
},
|
||||
count = 9,
|
||||
},
|
||||
count = 9,
|
||||
},
|
||||
[ "botania:petal:2" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:2",
|
||||
[ "botania:petal:2" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:2",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
[ "botania:petal:7" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:7",
|
||||
[ "botania:petal:7" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:7",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
[ "botania:petal:13" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:13",
|
||||
[ "botania:petal:13" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:13",
|
||||
},
|
||||
count = 4,
|
||||
},
|
||||
count = 4,
|
||||
},
|
||||
[ "botania:lens:10" ] = {
|
||||
count = 1,
|
||||
ingredients = {
|
||||
"botania:lens:0",
|
||||
"minecraft:gold_ingot:0",
|
||||
[ 5 ] = "minecraft:iron_ingot:0",
|
||||
[ "botania:lens:10" ] = {
|
||||
count = 1,
|
||||
ingredients = {
|
||||
"botania:lens:0",
|
||||
"minecraft:gold_ingot:0",
|
||||
[ 5 ] = "minecraft:iron_ingot:0",
|
||||
},
|
||||
maxCount = 1,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "botania:petal:12" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:12",
|
||||
[ "botania:petal:12" ] = {
|
||||
ingredients = {
|
||||
"botania:flower:12",
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
count = 2,
|
||||
},
|
||||
}
|
||||
@@ -1,87 +1,91 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,43 +1,47 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "exnihiloadscensio:hammerStone:0" ] = {
|
||||
maxCount = 1,
|
||||
ingredients = {
|
||||
[ 7 ] = "minecraft:cobblestone:0",
|
||||
[ 9 ] = "minecraft:stick:0",
|
||||
[ 2 ] = "minecraft:cobblestone:0",
|
||||
[ 6 ] = "minecraft:stick:0",
|
||||
[ "exnihiloadscensio:hammerStone:0" ] = {
|
||||
maxCount = 1,
|
||||
ingredients = {
|
||||
[ 7 ] = "minecraft:cobblestone:0",
|
||||
[ 9 ] = "minecraft:stick:0",
|
||||
[ 2 ] = "minecraft:cobblestone:0",
|
||||
[ 6 ] = "minecraft:stick:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "exnihiloadscensio:itemMaterial:1" ] = {
|
||||
ingredients = {
|
||||
"minecraft:dye:15",
|
||||
"minecraft:clay_ball:0",
|
||||
[ "exnihiloadscensio:itemMaterial:1" ] = {
|
||||
ingredients = {
|
||||
"minecraft:dye:15",
|
||||
"minecraft:clay_ball:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
@@ -1,168 +1,172 @@
|
||||
{
|
||||
[ "extrautils2:decorativesolid:2" ] = {
|
||||
ingredients = {
|
||||
"minecraft:stonebrick:0",
|
||||
"minecraft:stonebrick:0",
|
||||
[ 5 ] = "minecraft:stonebrick:0",
|
||||
[ 6 ] = "minecraft:stonebrick: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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "extrautils2:endershard:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:ender_pearl:0",
|
||||
"extrautils2:glasscutter:*",
|
||||
[ "extrautils2:endershard:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:ender_pearl:0",
|
||||
"extrautils2:glasscutter:*",
|
||||
},
|
||||
craftingTools = {
|
||||
[ "extrautils2:glasscutter:*" ] = true,
|
||||
},
|
||||
maxCount = 1,
|
||||
count = 8,
|
||||
},
|
||||
craftingTools = {
|
||||
[ "extrautils2:glasscutter:*" ] = true,
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "extrautils2:ingredients:6" ] = {
|
||||
count = 1,
|
||||
ingredients = {
|
||||
"extrautils2:ingredients:9",
|
||||
"minecraft:gold_ingot:0",
|
||||
[ 5 ] = "minecraft:redstone_block:0",
|
||||
},
|
||||
maxCount = 4,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "extrautils2:ingredients:6" ] = {
|
||||
count = 1,
|
||||
ingredients = {
|
||||
"extrautils2:ingredients:9",
|
||||
"minecraft:gold_ingot:0",
|
||||
[ 5 ] = "minecraft:redstone_block:0",
|
||||
[ "extrautils2:miner:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:dropper:0",
|
||||
"extrautils2:ingredients:0",
|
||||
[ 5 ] = "minecraft:iron_pickaxe:*",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
maxCount = 4,
|
||||
},
|
||||
[ "extrautils2:miner:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:dropper:0",
|
||||
"extrautils2:ingredients:0",
|
||||
[ 5 ] = "minecraft:iron_pickaxe:*",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "extrautils2:passivegenerator:7" ] = {
|
||||
ingredients = {
|
||||
[ 7 ] = "extrautils2:decorativesolid:2",
|
||||
[ 2 ] = "extrautils2:ingredients:1",
|
||||
[ 5 ] = "extrautils2:decorativesolid:2",
|
||||
[ 6 ] = "extrautils2:ingredients:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "extrautils2:passivegenerator:7" ] = {
|
||||
ingredients = {
|
||||
[ 7 ] = "extrautils2:decorativesolid:2",
|
||||
[ 2 ] = "extrautils2:ingredients:1",
|
||||
[ 5 ] = "extrautils2:decorativesolid:2",
|
||||
[ 6 ] = "extrautils2:ingredients:0",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "extrautils2:user:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:dropper:0",
|
||||
"extrautils2:ingredients:0",
|
||||
[ 5 ] = "minecraft:lever:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "extrautils2:user:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:dropper:0",
|
||||
"extrautils2:ingredients:0",
|
||||
[ 5 ] = "minecraft:lever:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
@@ -1,114 +1,118 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
|
||||
@@ -1,58 +1,62 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "mekanism:ControlCircuit:1" ] = {
|
||||
ingredients = {
|
||||
"mekanism:EnrichedAlloy:0",
|
||||
"mekanism:ControlCircuit:0",
|
||||
"mekanism:EnrichedAlloy:0",
|
||||
[ "mekanism:ControlCircuit:1" ] = {
|
||||
ingredients = {
|
||||
"mekanism:EnrichedAlloy:0",
|
||||
"mekanism:ControlCircuit:0",
|
||||
"mekanism:EnrichedAlloy:0",
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,178 +1,182 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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: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: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: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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
@@ -1,126 +1,130 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
|
||||
@@ -1,30 +1,34 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
}
|
||||
@@ -1,36 +1,40 @@
|
||||
{
|
||||
[ "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",
|
||||
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,
|
||||
},
|
||||
count = 1,
|
||||
},
|
||||
[ "tconstruct:pattern:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:planks:0",
|
||||
"minecraft:stick:0",
|
||||
[ 5 ] = "minecraft:stick:0",
|
||||
[ 6 ] = "minecraft:planks:0",
|
||||
[ "tconstruct:pattern:0" ] = {
|
||||
ingredients = {
|
||||
"minecraft:planks:0",
|
||||
"minecraft:stick:0",
|
||||
[ 5 ] = "minecraft:stick:0",
|
||||
[ 6 ] = "minecraft:planks:0",
|
||||
},
|
||||
count = 4,
|
||||
},
|
||||
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",
|
||||
[ "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,
|
||||
},
|
||||
count = 8,
|
||||
},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user