From 2f67fb2ef82d6d004d531b1e5587b7f4b2800018 Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Sat, 24 Dec 2022 15:33:01 +0400 Subject: [PATCH 01/26] Try to update Milo for 1.19 Removes Milo trying to access damage on items (`nil` because of The Flattening). We might also need to reimplement showing durability in the item's display name - I got a little too carried away with removing mentions of "damage". Also renames nbtHash to nbt to be consistent with new CC:T naming. I tried not to touch anything related to MiloRemote for now, and there are probably still many bugs remaining that need to be ironed out. Most of the basic functionality works now, though. --- milo/MiloLocal.lua | 9 +++----- milo/MiloRemote.lua | 2 +- milo/apis/craft2.lua | 31 +++++++------------------ milo/apis/init.lua | 18 ++++----------- milo/apis/miniAdapter.lua | 4 ++-- milo/apis/storage.lua | 25 ++++++++++---------- milo/apis/turtleInv.lua | 41 +++++++++++++++++++++++++++++++++ milo/core/machines.lua | 12 ++++------ milo/plugins/exportTask.lua | 8 +++---- milo/plugins/importTask.lua | 7 +++--- milo/plugins/item/infoTab.lua | 12 ++++++---- milo/plugins/item/manageTab.lua | 11 ++------- milo/plugins/item/recipeTab.lua | 8 +++---- milo/plugins/remote.lua | 2 +- milo/plugins/replenishTask.lua | 9 ++++---- swshop/swshop.lua | 2 +- 16 files changed, 101 insertions(+), 100 deletions(-) create mode 100644 milo/apis/turtleInv.lua diff --git a/milo/MiloLocal.lua b/milo/MiloLocal.lua index ed1c282..b65d05d 100644 --- a/milo/MiloLocal.lua +++ b/milo/MiloLocal.lua @@ -2,6 +2,7 @@ local Event = require('opus.event') local Milo = require('milo') local Sound = require('opus.sound') local Storage = require('milo.storage') +local TurtleInv = require('milo.turtleInv') local UI = require('opus.ui') local Util = require('opus.util') @@ -18,7 +19,6 @@ multishell.setTitle(multishell.getCurrent(), 'Milo') local function Syntax(msg) print([[ Turtle must be provided with: - * Introspection module (never bound) * Workbench Turtle must be connected to: @@ -46,10 +46,6 @@ if not modem.getNameLocal() then Syntax('Wired modem is not active') end -local introspection = device['plethora:introspection'] or - turtle.equip('left', 'plethora:module:0') and device['plethora:introspection'] or - Syntax('Introspection module missing') - if not device.workbench then turtle.equip('right', 'minecraft:crafting_table:0') if not device.workbench then @@ -58,6 +54,7 @@ if not device.workbench then end local localName = modem.getNameLocal() +TurtleInv.setLocalName(localName) local context = { resources = Util.readTable(Milo.RESOURCE_FILE) or { }, @@ -76,7 +73,7 @@ local context = { turtleInventory = { name = localName, mtype = 'hidden', - adapter = introspection.getInventory(), + adapter = TurtleInv, } } diff --git a/milo/MiloRemote.lua b/milo/MiloRemote.lua index 0e702db..9a18708 100644 --- a/milo/MiloRemote.lua +++ b/milo/MiloRemote.lua @@ -283,7 +283,7 @@ local function splitKey(key) local t = Util.split(key, '(.-):') local item = { } if #t[#t] > 8 then - item.nbtHash = table.remove(t) + item.nbt = table.remove(t) end item.damage = tonumber(table.remove(t)) item.name = table.concat(t, ':') diff --git a/milo/apis/craft2.lua b/milo/apis/craft2.lua index 57b7004..4b5bfe2 100644 --- a/milo/apis/craft2.lua +++ b/milo/apis/craft2.lua @@ -20,10 +20,11 @@ local Craft = { local function splitKey(key) local t = Util.split(key, '(.-):') local item = { } - if #t[#t] > 8 then - item.nbtHash = table.remove(t) + + if t[3] then + item.nbt = t[3] end - item.damage = tonumber(table.remove(t)) + item.name = table.concat(t, ':') return item end @@ -32,7 +33,7 @@ local function makeRecipeKey(item) if type(item) == 'string' then item = splitKey(item) end - return table.concat({ item.name, item.damage or 0, item.nbtHash }, ':') + return table.concat({ item.name, item.nbt }, ':') end local function convert(ingredient) @@ -47,8 +48,7 @@ local function getCraftingTool(storage, item) for _,v in pairs(items) do if item.name == v.name and - (not item.damage or item.damage == v.damage) and - (not item.nbtHash or item.nbtHash == v.nbtHash) then + (not item.nbt or item.nbt == v.nbt) then return v end end @@ -93,11 +93,7 @@ function Craft.getItemCount(items, item) local count = 0 for _,v in pairs(items) do if v.name == item.name and - (not item.damage or v.damage == item.damage) and - v.nbtHash == item.nbtHash then - if item.damage then - return v.count - end + v.nbt == item.nbt then count = count + v.count end end @@ -387,18 +383,7 @@ function Craft.findRecipe(key) end local item = itemDB:splitKey(key) - if item.damage then - return Craft.recipes[makeRecipeKey(item)] - end - - -- handle cases where the request is like : IC2:reactorVent:* - for rkey,recipe in pairs(Craft.recipes) do - local r = itemDB:splitKey(rkey) - if item.name == r.name and - (not item.nbtHash or r.nbtHash == item.nbtHash) then - return recipe - end - end + return Craft.recipes[makeRecipeKey(item)] end -- determine the full list of ingredients needed to craft diff --git a/milo/apis/init.lua b/milo/apis/init.lua index 41b42b2..dbc1fa9 100644 --- a/milo/apis/init.lua +++ b/milo/apis/init.lua @@ -93,7 +93,7 @@ function Milo:getMatches(item, flags) local count = 0 local items = self:listItems() - if not flags.ignoreDamage and not flags.ignoreNbtHash then + if not flags.ignoreNbt then local key = item.key or itemDB:makeKey(item) local v = items[key] if v then @@ -104,8 +104,7 @@ function Milo:getMatches(item, flags) else for key,v in pairs(items) do if item.name == v.name and - (flags.ignoreDamage or item.damage == v.damage) and - (flags.ignoreNbtHash or item.nbtHash == v.nbtHash) then + (flags.ignoreNbt or item.nbt == v.nbt) then t[key] = Util.shallowCopy(v) count = count + v.count @@ -125,7 +124,7 @@ function Milo:getTurtleInventory() for i, v in pairs(self.context.turtleInventory.adapter.list()) do list[i] = itemDB:get(v, function() - return self.context.turtleInventory.adapter.getItemMeta(i) + return self.context.turtleInventory.adapter.getItemDetail(i) end) end @@ -277,22 +276,15 @@ function Milo:learnRecipe() for _,v1 in pairs(results) do for _,v2 in pairs(ingredients) do if v1.name == v2.name and - v1.nbtHash == v2.nbtHash and - (v1.damage == v2.damage or - (v1.maxDamage > 0 and v2.maxDamage > 0 and - v1.damage ~= v2.damage)) then + v1.nbt == v2.nbt then if not newRecipe.crafingTools then newRecipe.craftingTools = { } end local tool = Util.shallowCopy(v2) - if tool.maxDamage > 0 then - tool.damage = '*' - v2.damage = '*' - end --[[ Turtles can only craft one item at a time using a tool :( - ]]-- + ]] -- Todo: check if this still applies maxCount = 1 newRecipe.craftingTools[itemDB:makeKey(tool)] = true diff --git a/milo/apis/miniAdapter.lua b/milo/apis/miniAdapter.lua index aaf14f3..cb348b4 100644 --- a/milo/apis/miniAdapter.lua +++ b/milo/apis/miniAdapter.lua @@ -21,13 +21,13 @@ function Adapter:listItems(throttle) for k,v in pairs(self.list()) do if v.count > 0 then - local key = table.concat({ v.name, v.damage, v.nbtHash }, ':') + local key = table.concat({ v.name, v.nbt }, ':') local entry = cache[key] if entry then entry.count = entry.count + v.count else - cache[key] = itemDB:get(v, function() return self.getItemMeta(k) end) + cache[key] = itemDB:get(v, function() return self.getItemDetail(k) end) end throttle() end diff --git a/milo/apis/storage.lua b/milo/apis/storage.lua index 2cdbc3d..20b4acd 100644 --- a/milo/apis/storage.lua +++ b/milo/apis/storage.lua @@ -321,7 +321,7 @@ function Storage:listItemsRaw(throttle) local items = chest.list() for slot, item in pairs(items) do - items[slot] = itemDB:get(item, function() return chest.getItemMeta(slot) end) + items[slot] = itemDB:get(item, function() return chest.getItemDetail(slot) end) end res[v.name] = items @@ -340,7 +340,7 @@ function Storage:listProviders(throttle) for chest, items in pairs(rawItems) do for slot, item in pairs(items) do - local key = table.concat({item.name, item.damage, item.nbtHash}, ":") + local key = table.concat({item.name, item.nbt}, ":") if not res[key] then res[key] = {} end @@ -443,7 +443,7 @@ function Storage:updateCache(adapter, item, count) return end - local key = item.key or table.concat({ item.name, item.damage, item.nbtHash }, ':') + local key = item.key or table.concat({ item.name, item.nbt }, ':') local entry = adapter.cache[key] if not entry then @@ -490,14 +490,14 @@ end local function isValidTransfer(adapter, target) -- lazily cache transfer locations - if not adapter.transferLocations then + --[[if not adapter.transferLocations then adapter.transferLocations = adapter.getTransferLocations() end - for _,v in pairs(adapter.transferLocations) do - if v == target then + for _,v in pairs(adapter.transferLocations) do]] + -- if v == target then return true - end - end + -- end + --end end local function rawExport(source, target, item, qty, slot) @@ -529,8 +529,7 @@ local function rawExport(source, target, item, qty, slot) local stacks = source.list() for key,stack in Util.rpairs(stacks) do if stack.name == item.name and - stack.damage == item.damage and - stack.nbtHash == item.nbtHash then + stack.nbt == item.nbt then local amount = math.min(qty, stack.count) if amount > 0 then amount = transfer(key, amount, slot) @@ -560,7 +559,7 @@ end function Storage:export(target, slot, count, item) local timer = Util.timer() local total = 0 - local key = item.key or table.concat({ item.name, item.damage, item.nbtHash }, ':') + local key = item.key or table.concat({ item.name, item.nbt }, ':') local function provide(adapter, pcount) -- update cache before export to allow for simultaneous calls @@ -651,7 +650,7 @@ function Storage:import(source, slot, count, item) local timer = Util.timer() local total = 0 - local key = item.key or table.concat({ item.name, item.damage, item.nbtHash }, ':') + local key = item.key or table.concat({ item.name, item.nbt }, ':') if not self.cache then self:listItems() @@ -664,7 +663,7 @@ function Storage:import(source, slot, count, item) entry = itemDB:add(item) else -- get the metadata from the device and add to db - entry = itemDB:add(source.adapter.getItemMeta(slot)) + entry = itemDB:add(source.adapter.getItemDetail(slot)) end itemDB:flush() end diff --git a/milo/apis/turtleInv.lua b/milo/apis/turtleInv.lua new file mode 100644 index 0000000..42488a9 --- /dev/null +++ b/milo/apis/turtleInv.lua @@ -0,0 +1,41 @@ +--[[ Emulate a CC:T inventory on the turtle +]] + +local TurtleInv = {} + +local turtle = _G.turtle + +local inventorySize = 16 + +local localName = "milo_local_name_unset" + +function TurtleInv.setLocalName(name) + localName = name +end + +function TurtleInv.size() + return inventorySize +end + +function TurtleInv.list() + local list = {} + for slot = 1, inventorySize do + list[slot] = turtle.getItemDetail(slot) + end + return list +end + +function TurtleInv.getItemDetail(slot) + return turtle.getItemDetail(slot, true) +end + +function TurtleInv.pullItems(fromName, fromSlot, limit, toSlot) + return peripheral.call(fromName, "pushItems", localName, fromSlot, limit, toSlot) +end + +function TurtleInv.pushItems(toName, fromSlot, limit, toSlot) + return peripheral.call(toName, "pullItems", localName, fromSlot, limit, toSlot) +end + + +return TurtleInv diff --git a/milo/core/machines.lua b/milo/core/machines.lua index cdc5ce1..ef5c620 100644 --- a/milo/core/machines.lua +++ b/milo/core/machines.lua @@ -312,14 +312,10 @@ The settings will take effect immediately!]], margin = 1, manualControls = true, [1] = UI.Checkbox { - formLabel = 'Ignore Dmg', formKey = 'ignoreDamage', - help = 'Ignore damage of item', - }, - [2] = UI.Checkbox { - formLabel = 'Ignore NBT', formKey = 'ignoreNbtHash', + formLabel = 'Ignore NBT', formKey = 'ignoreNbt', help = 'Ignore NBT of item', }, - [3] = UI.Chooser { + [2] = UI.Chooser { width = 13, formLabel = 'Mode', formKey = 'blacklist', nochoice = 'whitelist', @@ -327,7 +323,7 @@ The settings will take effect immediately!]], { name = 'whitelist', value = false }, { name = 'blacklist', value = true }, }, - help = 'Ignore damage of item' + help = 'Accept item by default or deny by default' }, scan = UI.Button { x = -11, y = 1, @@ -349,7 +345,7 @@ The settings will take effect immediately!]], self.form:setValues(entry) self:resetGrid() - self.form[3].inactive = whitelistOnly + self.form[2].inactive = whitelistOnly UI.SlideOut.show(self) self:setFocus(self.form.scan) diff --git a/milo/plugins/exportTask.lua b/milo/plugins/exportTask.lua index 3fc6a9f..bf0990b 100644 --- a/milo/plugins/exportTask.lua +++ b/milo/plugins/exportTask.lua @@ -30,7 +30,7 @@ function ExportTask:cycle(context) end local function exportSingleSlot() - local slot = node.adapter.getItemMeta(entry.slot) + local slot = node.adapter.getItemDetail(entry.slot) if slot and slot.count == slot.maxCount then return @@ -41,8 +41,7 @@ function ExportTask:cycle(context) for key in pairs(entry.filter) do local filterItem = itemDB:splitKey(key) if (slot.name == filterItem.name and - (entry.ignoreDamage or slot.damage == filterItem.damage) and - (entry.ignoreNbtHash or slot.nbtHash == filterItem.nbtHash)) then + (entry.ignoreNbt or slot.nbt == filterItem.nbt)) then local items = Milo:getMatches(filterItem, entry) local _, item = next(items) @@ -81,8 +80,7 @@ function ExportTask:cycle(context) for i = 1, node.adapter.__size do local slot = slots[i] if (not slot or slot.name == item.name and - (entry.ignoreDamage or slot.damage == item.damage) and - (entry.ignoreNbtHash or slot.nbtHash == item.nbtHash) and + (entry.ignoreNbt or slot.nbt == item.nbt) and slot.count < item.maxCount) then return true diff --git a/milo/plugins/importTask.lua b/milo/plugins/importTask.lua index f7ac84c..3a1c0a6 100644 --- a/milo/plugins/importTask.lua +++ b/milo/plugins/importTask.lua @@ -21,7 +21,7 @@ function ImportTask:cycle(context) for _, entry in pairs(node.imports) do local function itemMatchesFilter(item) - if not entry.ignoreDamage and not entry.ignoreNbtHash then + if not entry.ignoreNbt then local key = itemDB:makeKey(item) return entry.filter[key] end @@ -29,8 +29,7 @@ function ImportTask:cycle(context) for key in pairs(entry.filter) do local v = itemDB:splitKey(key) if item.name == v.name and - (entry.ignoreDamage or item.damage == v.damage) and - (entry.ignoreNbtHash or item.nbtHash == v.nbtHash) then + (entry.ignoreNbt or item.nbt == v.nbt) then return true end end @@ -52,7 +51,7 @@ function ImportTask:cycle(context) local function importSlot(slotNo) local item = itemDB:get(list[slotNo], function() - return node.adapter.getItemMeta(slotNo) + return node.adapter.getItemDetail(slotNo) end) if item and matchesFilter(item) then if context.storage:import(node, slotNo, item.count, item) ~= item.count then diff --git a/milo/plugins/item/infoTab.lua b/milo/plugins/item/infoTab.lua index 6634948..1e3009b 100644 --- a/milo/plugins/item/infoTab.lua +++ b/milo/plugins/item/infoTab.lua @@ -20,16 +20,18 @@ function infoTab:draw() Ansi.orange, item.displayName, Ansi.reset, item.name) - if item.nbtHash then - value = value .. item.nbtHash .. '\n' + if item.nbt then + value = value .. item.nbt .. '\n' end value = value .. string.format('\n%sCount:%s %s', Ansi.yellow, Ansi.reset, item.count) - value = value .. string.format('\n%sDamage:%s %s', - Ansi.yellow, Ansi.reset, item.damage) - + if item.durability then + value = value .. string.format('\n%Durability:%s %s', + Ansi.yellow, Ansi.reset, item.durability) + end + if item.maxDamage and item.maxDamage > 0 then value = value .. string.format(' (max: %s)', item.maxDamage) end diff --git a/milo/plugins/item/manageTab.lua b/milo/plugins/item/manageTab.lua index e1f49fe..776829e 100644 --- a/milo/plugins/item/manageTab.lua +++ b/milo/plugins/item/manageTab.lua @@ -29,11 +29,7 @@ local manageTab = UI.Tab { transform = 'number', }, [4] = UI.Checkbox { - formLabel = 'Ignore Dmg', formKey = 'ignoreDamage', - help = 'Ignore damage of item', - }, - [5] = UI.Checkbox { - formLabel = 'Ignore NBT', formKey = 'ignoreNbtHash', + formLabel = 'Ignore NBT', formKey = 'ignoreNbt', help = 'Ignore NBT of item', }, }, @@ -44,8 +40,6 @@ function manageTab:setItem(item) self.res = Util.shallowCopy(context.resources[item.key] or { }) self.res.displayName = self.item.displayName self.form:setValues(self.res) - - -- TODO: ignore damage should not be active if there is not a maxDamage value end function manageTab:eventHandler(event) @@ -76,8 +70,7 @@ function manageTab:eventHandler(event) local newKey = { name = self.item.name, - damage = self.res.ignoreDamage and 0 or self.item.damage, - nbtHash = not self.res.ignoreNbtHash and self.item.nbtHash or nil, + nbt = not self.res.ignoreNbt and self.item.nbt or nil, } context.resources[self.item.key] = nil diff --git a/milo/plugins/item/recipeTab.lua b/milo/plugins/item/recipeTab.lua index 591715f..9759e98 100644 --- a/milo/plugins/item/recipeTab.lua +++ b/milo/plugins/item/recipeTab.lua @@ -42,7 +42,7 @@ function recipeTab:setItem(item) }) end local key = itemDB:splitKey(self.recipe.result) - self.ignoreResultNBT.inactive = not key.nbtHash + self.ignoreResultNBT.inactive = not key.nbt end self.grid:setValues(t) end @@ -53,7 +53,7 @@ function recipeTab:eventHandler(event) Milo:updateRecipe(self.recipe.result) local item = itemDB:splitKey(self.recipe.result) - item.nbtHash = nil + item.nbt = nil self.recipe.result = itemDB:makeKey(item) -- add updated entry @@ -64,13 +64,13 @@ function recipeTab:eventHandler(event) elseif event.type == 'grid_focus_row' then local key = itemDB:splitKey(event.selected.key) - self.ignoreNBT.inactive = not key.nbtHash + self.ignoreNBT.inactive = not key.nbt self.ignoreNBT:draw() elseif event.type == 'ignore_nbt' then local selected = self.grid:getSelected() local item = itemDB:splitKey(selected.key) - item.nbtHash = nil + item.nbt = nil selected.key = itemDB:makeKey(item) self.grid:draw() diff --git a/milo/plugins/remote.lua b/milo/plugins/remote.lua index ff1b929..c74dd45 100644 --- a/milo/plugins/remote.lua +++ b/milo/plugins/remote.lua @@ -94,7 +94,7 @@ local function client(socket) local function deposit() local node = makeNode(data.source or 'inventory') if node then - local slot = node.adapter.getItemMeta(data.slot) + local slot = node.adapter.getItemDetail(data.slot) if slot then if context.storage:import(node, data.slot, slot.count, slot) > 0 then local item = Milo:getItem(slot) diff --git a/milo/plugins/replenishTask.lua b/milo/plugins/replenishTask.lua index 3423197..d0b2d07 100644 --- a/milo/plugins/replenishTask.lua +++ b/milo/plugins/replenishTask.lua @@ -15,14 +15,13 @@ function ReplenishTask:cycle(context) local _, count = Milo:getMatches(item, res) if count < res.low then - local nbtHash - if not res.ignoreNbtHash then - nbtHash = item.nbtHash + local nbt + if not res.ignoreNbt then + nbt = item.nbt end Milo:requestCrafting({ name = item.name, - damage = res.ignoreDamage and 0 or item.damage, - nbtHash = nbtHash, + nbt = nbt, requested = res.low - count, count = count, replenish = true, diff --git a/swshop/swshop.lua b/swshop/swshop.lua index 8529f5a..5a8a065 100644 --- a/swshop/swshop.lua +++ b/swshop/swshop.lua @@ -12,7 +12,7 @@ local jua = require("swshop.jua") local await = jua.await local device = _G.device -local json = _G.json +local json = { encode=textutils.serializeJSON, decode = textutils.unserialiseJSON } local rs = _G.rs local textutils = _G.textutils -- 2.49.1 From f231173236663f1749109ae53fbbed6a81f4a5ab Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Thu, 29 Dec 2022 01:26:19 +0400 Subject: [PATCH 02/26] oops, forgot to update itemDB --- core/apis/itemDB.lua | 79 ++++++++++++-------------------------------- 1 file changed, 21 insertions(+), 58 deletions(-) diff --git a/core/apis/itemDB.lua b/core/apis/itemDB.lua index c8b66f2..790ce0b 100644 --- a/core/apis/itemDB.lua +++ b/core/apis/itemDB.lua @@ -33,20 +33,18 @@ end function itemDB:makeKey(item) if not item then error('itemDB:makeKey: item is required', 2) end - return table.concat({ item.name, item.damage or '*', item.nbtHash }, ':') + return table.concat({ item.name, item.nbt }, ':') end function itemDB:splitKey(key, item) item = item or { } local t = Util.split(key, '(.-):') - if #t[#t] > 8 then - item.nbtHash = table.remove(t) - end - local damage = table.remove(t) - if damage ~= '*' then - item.damage = tonumber(damage) + + if t[3] then + item.nbt = t[3] end + item.name = table.concat(t, ':') return item @@ -82,36 +80,21 @@ function itemDB:_get(key) return item end - -- try finding an item that has damage values - if type(key.damage) == 'number' then - item = TableDB.get(self, self:makeKey({ name = key.name, nbtHash = key.nbtHash })) - if item and item.maxDamage then + for k,item in pairs(self.data) do + if key.name == item.name and + key.nbt == key.nbt then item = Util.shallowCopy(item) - item.damage = key.damage - if item.maxDamage > 0 and type(item.damage) == 'number' and item.damage > 0 then - item.displayName = string.format('%s (damage: %s)', item.displayName, item.damage) - end + item.nbt = key.nbt return item end - else - for k,item in pairs(self.data) do - if key.name == item.name and - key.nbtHash == key.nbtHash and - item.maxDamage > 0 then - item = Util.shallowCopy(item) - item.nbtHash = key.nbtHash - return item - end - end end - if key.nbtHash then - item = self:get({ name = key.name, damage = key.damage }) + if key.nbt then + item = self:get({ name = key.name }) if item and item.ignoreNBT then item = Util.shallowCopy(item) - item.nbtHash = key.nbtHash - item.damage = key.damage + item.nbt = key.nbt return item end end @@ -134,8 +117,7 @@ end function itemDB:add(baseItem) local nItem = { name = baseItem.name, - damage = baseItem.damage, - nbtHash = baseItem.nbtHash, + nbt = baseItem.nbt, } -- if detail.maxDamage > 0 then -- nItem.damage = '*' @@ -143,7 +125,6 @@ function itemDB:add(baseItem) nItem.displayName = safeString(baseItem.displayName) nItem.maxCount = baseItem.maxCount - nItem.maxDamage = baseItem.maxDamage -- enchanted items if baseItem.enchantments then @@ -156,7 +137,7 @@ function itemDB:add(baseItem) if k > 1 then nItem.displayName = nItem.displayName .. ', ' end - nItem.displayName = nItem.displayName .. v.fullName + nItem.displayName = nItem.displayName .. v.displayName end -- turtles / computers / etc @@ -192,18 +173,8 @@ function itemDB:add(baseItem) if nItem.name == item.name and nItem.displayName == item.displayName then - if nItem.nbtHash ~= item.nbtHash and nItem.damage ~= item.damage then - nItem.damage = '*' - nItem.nbtHash = nil - nItem.ignoreNBT = true - self.data[k] = nil - break - elseif nItem.damage ~= item.damage then - nItem.damage = '*' - self.data[k] = nil - break - elseif nItem.nbtHash ~= item.nbtHash then - nItem.nbtHash = nil + if nItem.nbt ~= item.nbt then + nItem.nbt = nil nItem.ignoreNBT = true self.data[k] = nil break @@ -214,8 +185,7 @@ function itemDB:add(baseItem) TableDB.add(self, self:makeKey(nItem), nItem) nItem = Util.shallowCopy(nItem) - nItem.damage = baseItem.damage - nItem.nbtHash = baseItem.nbtHash + nItem.nbt = baseItem.nbt return nItem end @@ -234,8 +204,8 @@ function itemDB:getName(item) -- fallback to nameDB local strId = self:makeKey(item) local name = nameDB.data[strId] - if not name and not item.damage then - name = nameDB.data[self:makeKey({ name = item.name, damage = 0, nbtHash = item.nbtHash })] + if not name then + name = nameDB.data[self:makeKey({ name = item.name, nbt = item.nbt })] end return name or strId end @@ -250,24 +220,17 @@ function itemDB:load() for key,item in pairs(self.data) do self:splitKey(key, item) - item.maxDamage = item.maxDamage or 0 item.maxCount = item.maxCount or 64 end end function itemDB:flush() if self.dirty then - local t = { } for k,v in pairs(self.data) do v = Util.shallowCopy(v) v.name = nil - v.damage = nil - v.nbtHash = nil -v.count = nil -- wipe out previously saved counts - temporary - if v.maxDamage == 0 then - v.maxDamage = nil - end + v.nbt = nil if v.maxCount == 64 then v.maxCount = nil end @@ -281,4 +244,4 @@ end itemDB:load() -return itemDB +return itemDB \ No newline at end of file -- 2.49.1 From 13aa4631be34f9b70816b33574bb0116f2fafd36 Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Thu, 29 Dec 2022 09:11:53 +0400 Subject: [PATCH 03/26] hopefully this works 9removed damage values) --- recipeBook/etc/recipes/minecraft.db | 2330 --------------------------- 1 file changed, 2330 deletions(-) diff --git a/recipeBook/etc/recipes/minecraft.db b/recipeBook/etc/recipes/minecraft.db index 14dac3f..e69de29 100644 --- a/recipeBook/etc/recipes/minecraft.db +++ b/recipeBook/etc/recipes/minecraft.db @@ -1,2330 +0,0 @@ -{ - name = "Minecraft", - version = "", - recipes = { - [ "minecraft:jukebox:0" ] = { - count = 1, - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:diamond:0", - }, - }, - [ "minecraft:flint_and_steel:0" ] = { - count = 1, - ingredients = { - "minecraft:flint:0", - "minecraft:iron_ingot:0", - }, - maxCount = 1, - }, - [ "minecraft:glass_bottle:0" ] = { - ingredients = { - "minecraft:glass:0", - [ 6 ] = "minecraft:glass:0", - [ 3 ] = "minecraft:glass:0", - }, - count = 3, - }, - [ "minecraft:writable_book:0" ] = { - ingredients = { - "minecraft:book:0", - "minecraft:dye:0", - "minecraft:feather:0", - }, - count = 1, - }, - [ "minecraft:carpet:8" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:8", - [ 6 ] = "minecraft:wool:8", - }, - }, - [ "minecraft:wooden_slab:4" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks:4", - [ 6 ] = "minecraft:planks:4", - [ 7 ] = "minecraft:planks:4", - }, - }, - [ "minecraft:iron_bars:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 16, - }, - [ "minecraft:glass_pane:0" ] = { - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:glass:0", - [ 7 ] = "minecraft:glass:0", - }, - count = 16, - }, - [ "minecraft:stained_glass:5" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:10", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:carpet:9" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:9", - [ 6 ] = "minecraft:wool:9", - }, - }, - [ "minecraft:brick_stairs:0" ] = { - count = 4, - ingredients = { - "minecraft:brick_block:0", - [ 9 ] = "minecraft:brick_block:0", - [ 10 ] = "minecraft:brick_block:0", - [ 11 ] = "minecraft:brick_block:0", - [ 5 ] = "minecraft:brick_block:0", - [ 6 ] = "minecraft:brick_block:0", - }, - }, - [ "minecraft:birch_fence_gate:0" ] = { - count = 1, - ingredients = { - "minecraft:stick:0", - "minecraft:planks:2", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:2", - [ 7 ] = "minecraft:stick:0", - }, - }, - [ "minecraft:stone_slab:0" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:stone:0", - [ 7 ] = "minecraft:stone:0", - }, - }, - [ "minecraft:wool:10" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye:5", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:carpet:15" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:15", - [ 6 ] = "minecraft:wool:15", - }, - }, - [ "minecraft:stained_glass_pane:6" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:6", - "minecraft:stained_glass:6", - "minecraft:stained_glass:6", - [ 5 ] = "minecraft:stained_glass:6", - [ 6 ] = "minecraft:stained_glass:6", - [ 7 ] = "minecraft:stained_glass:6", - }, - }, - [ "minecraft:wooden_button:0" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:jungle_stairs:0" ] = { - count = 4, - ingredients = { - "minecraft:planks:3", - [ 9 ] = "minecraft:planks:3", - [ 10 ] = "minecraft:planks:3", - [ 11 ] = "minecraft:planks:3", - [ 5 ] = "minecraft:planks:3", - [ 6 ] = "minecraft:planks:3", - }, - }, - [ "minecraft:dye:9" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye:1", - [ 6 ] = "minecraft:dye:15", - }, - }, - [ "minecraft:end_bricks:0" ] = { - count = 4, - ingredients = { - "minecraft:end_stone:0", - "minecraft:end_stone:0", - [ 5 ] = "minecraft:end_stone:0", - [ 6 ] = "minecraft:end_stone:0", - }, - }, - [ "minecraft:stained_hardened_clay:9" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:6", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:sign:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:wool:15" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye:0", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:stained_hardened_clay:8" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:7", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:dye:7" ] = { - count = 3, - ingredients = { - "minecraft:dye:15", - "minecraft:dye:15", - [ 5 ] = "minecraft:dye:0", - }, - }, - [ "minecraft:snow_layer:0" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:snow:0", - [ 6 ] = "minecraft:snow:0", - [ 7 ] = "minecraft:snow:0", - }, - }, - [ "minecraft:furnace:0" ] = { - count = 1, - ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - }, - [ "minecraft:carpet:0" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:stained_glass:1" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:14", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:carpet:14" ] = { - count = 3, - ingredients = { - "minecraft:wool:14", - "minecraft:wool:14", - }, - }, - [ "minecraft:wooden_slab:2" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks:2", - [ 6 ] = "minecraft:planks:2", - [ 7 ] = "minecraft:planks:2", - }, - }, - [ "minecraft:carpet:2" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:2", - [ 6 ] = "minecraft:wool:2", - }, - }, - [ "minecraft:prismarine:1" ] = { - count = 1, - ingredients = { - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - [ 9 ] = "minecraft:prismarine_shard:0", - [ 10 ] = "minecraft:prismarine_shard:0", - [ 11 ] = "minecraft:prismarine_shard:0", - [ 5 ] = "minecraft:prismarine_shard:0", - [ 6 ] = "minecraft:prismarine_shard:0", - [ 7 ] = "minecraft:prismarine_shard:0", - }, - }, - [ "minecraft:birch_door:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:2", - "minecraft:planks:2", - [ 9 ] = "minecraft:planks:2", - [ 10 ] = "minecraft:planks:2", - [ 5 ] = "minecraft:planks:2", - [ 6 ] = "minecraft:planks:2", - }, - }, - [ "minecraft:comparator:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:stone:0", - [ 11 ] = "minecraft:stone:0", - [ 2 ] = "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:redstone_torch:0", - [ 6 ] = "minecraft:quartz:0", - [ 7 ] = "minecraft:redstone_torch:0", - [ 9 ] = "minecraft:stone:0", - }, - }, - [ "minecraft:wooden_slab:3" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks:3", - [ 6 ] = "minecraft:planks:3", - [ 7 ] = "minecraft:planks:3", - }, - }, - [ "minecraft:sandstone:1" ] = { - count = 1, - ingredients = { - [ 2 ] = "minecraft:stone_slab:1", - [ 6 ] = "minecraft:stone_slab:1", - }, - }, - [ "minecraft:noteblock:0" ] = { - count = 1, - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:coal_block:0" ] = { - count = 1, - ingredients = { - "minecraft:coal:0", - "minecraft:coal:0", - "minecraft:coal:0", - [ 9 ] = "minecraft:coal:0", - [ 10 ] = "minecraft:coal:0", - [ 11 ] = "minecraft:coal:0", - [ 5 ] = "minecraft:coal:0", - [ 6 ] = "minecraft:coal:0", - [ 7 ] = "minecraft:coal:0", - }, - }, - [ "minecraft:stained_glass_pane:4" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:4", - "minecraft:stained_glass:4", - "minecraft:stained_glass:4", - [ 5 ] = "minecraft:stained_glass:4", - [ 6 ] = "minecraft:stained_glass:4", - [ 7 ] = "minecraft:stained_glass:4", - }, - }, - [ "minecraft:stained_glass:11" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:4", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:clock:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:gold_ingot:0", - [ 2 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - }, - [ "minecraft:stained_glass:3" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:12", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:acacia_fence_gate:0" ] = { - count = 1, - ingredients = { - "minecraft:stick:0", - "minecraft:planks:4", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:4", - [ 7 ] = "minecraft:stick:0", - }, - }, - [ "minecraft:wooden_pressure_plate:0" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:stained_glass_pane:9" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:9", - "minecraft:stained_glass:9", - "minecraft:stained_glass:9", - [ 5 ] = "minecraft:stained_glass:9", - [ 6 ] = "minecraft:stained_glass:9", - [ 7 ] = "minecraft:stained_glass:9", - }, - }, - [ "minecraft:ladder:0" ] = { - count = 3, - ingredients = { - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:stick:0", - [ 3 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:stick:0", - }, - }, - [ "minecraft:enchanting_table:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:obsidian:0", - [ 11 ] = "minecraft:obsidian:0", - [ 2 ] = "minecraft:book:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "minecraft:obsidian:0", - [ 7 ] = "minecraft:diamond:0", - [ 9 ] = "minecraft:obsidian:0", - }, - }, - [ "minecraft:torch:0" ] = { - ingredients = { - "minecraft:coal:1", - [ 5 ] = "minecraft:stick:0", - }, - count = 4, - }, - [ "minecraft:stick:0" ] = { - ingredients = { - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - }, - count = 4, - }, - [ "minecraft:acacia_fence:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:4", - "minecraft:stick:0", - "minecraft:planks:4", - [ 5 ] = "minecraft:planks:4", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:4", - }, - }, - [ "minecraft:stained_hardened_clay:12" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:3", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:spruce_door:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:1", - "minecraft:planks:1", - [ 9 ] = "minecraft:planks:1", - [ 10 ] = "minecraft:planks:1", - [ 5 ] = "minecraft:planks:1", - [ 6 ] = "minecraft:planks:1", - }, - }, - [ "minecraft:quartz_block:2" ] = { - count = 2, - ingredients = { - [ 2 ] = "minecraft:quartz_block:0", - [ 6 ] = "minecraft:quartz_block:0", - }, - }, - [ "minecraft:stone_slab:5" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:stonebrick:0", - [ 6 ] = "minecraft:stonebrick:0", - [ 7 ] = "minecraft:stonebrick:0", - }, - }, - [ "minecraft:bow:0" ] = { - count = 1, - ingredients = { - "minecraft:string:0", - "minecraft:stick:0", - [ 7 ] = "minecraft:stick:0", - [ 9 ] = "minecraft:string:0", - [ 10 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:string:0", - }, - }, - [ "minecraft:stained_glass_pane:3" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:3", - "minecraft:stained_glass:3", - "minecraft:stained_glass:3", - [ 5 ] = "minecraft:stained_glass:3", - [ 6 ] = "minecraft:stained_glass:3", - [ 7 ] = "minecraft:stained_glass:3", - }, - }, - [ "minecraft:dye:6" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye:2", - [ 6 ] = "minecraft:dye:4", - }, - }, - [ "minecraft:stained_glass_pane:7" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:7", - "minecraft:stained_glass:7", - "minecraft:stained_glass:7", - [ 5 ] = "minecraft:stained_glass:7", - [ 6 ] = "minecraft:stained_glass:7", - [ 7 ] = "minecraft:stained_glass:7", - }, - }, - [ "minecraft:trapped_chest:0" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:chest:0", - [ 6 ] = "minecraft:tripwire_hook:0", - }, - }, - [ "minecraft:crafting_table:0" ] = { - count = 1, - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:dye:10" ] = { - count = 2, - ingredients = { - "minecraft:dye:15", - "minecraft:dye:2", - }, - }, - [ "minecraft:gold_nugget:0" ] = { - count = 9, - ingredients = { - "minecraft:gold_ingot:0", - }, - }, - [ "minecraft:prismarine:2" ] = { - count = 1, - ingredients = { - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - [ 9 ] = "minecraft:prismarine_shard:0", - [ 10 ] = "minecraft:prismarine_shard:0", - [ 11 ] = "minecraft:prismarine_shard:0", - [ 5 ] = "minecraft:prismarine_shard:0", - [ 6 ] = "minecraft:dye:0", - [ 7 ] = "minecraft:prismarine_shard:0", - }, - }, - [ "minecraft:brewing_stand:0" ] = { - count = 1, - ingredients = { - [ 7 ] = "minecraft:cobblestone:0", - [ 2 ] = "minecraft:blaze_rod:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:cobblestone:0", - }, - }, - [ "minecraft:beacon:0" ] = { - count = 1, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:obsidian:0", - [ 10 ] = "minecraft:obsidian:0", - [ 11 ] = "minecraft:obsidian:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:nether_star:0", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:fence_gate:0" ] = { - count = 1, - ingredients = { - "minecraft:stick:0", - "minecraft:planks:0", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:stick:0", - }, - }, - [ "minecraft:lever:0" ] = { - count = 1, - ingredients = { - [ 2 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:cobblestone:0", - }, - }, - [ "minecraft:dispenser:0" ] = { - count = 1, - ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:bow:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - }, - [ "minecraft:jungle_fence:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:3", - "minecraft:stick:0", - "minecraft:planks:3", - [ 5 ] = "minecraft:planks:3", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:3", - }, - }, - [ "minecraft:redstone_lamp:0" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:redstone:0", - [ 2 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "minecraft:glowstone:0", - [ 7 ] = "minecraft:redstone:0", - }, - }, - [ "minecraft:stone:3" ] = { - count = 2, - ingredients = { - "minecraft:quartz:0", - "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:quartz:0", - }, - }, - [ "minecraft:sandstone:2" ] = { - count = 4, - ingredients = { - "minecraft:sandstone:0", - "minecraft:sandstone:0", - [ 5 ] = "minecraft:sandstone:0", - [ 6 ] = "minecraft:sandstone:0", - }, - }, - [ "minecraft:stone:6" ] = { - count = 4, - ingredients = { - "minecraft:stone:5", - "minecraft:stone:5", - [ 5 ] = "minecraft:stone:5", - [ 6 ] = "minecraft:stone:5", - }, - }, - [ "minecraft:carpet:3" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:3", - [ 6 ] = "minecraft:wool:3", - }, - }, - [ "minecraft:planks:4" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log2:0", - }, - }, - [ "minecraft:trapdoor:0" ] = { - count = 2, - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:light_weighted_pressure_plate:0" ] = { - count = 1, - ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", - }, - }, - [ "minecraft:nether_brick_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:nether_brick:0", - [ 9 ] = "minecraft:nether_brick:0", - [ 10 ] = "minecraft:nether_brick:0", - [ 11 ] = "minecraft:nether_brick:0", - [ 5 ] = "minecraft:nether_brick:0", - [ 6 ] = "minecraft:nether_brick:0", - }, - }, - [ "minecraft:sandstone_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:sandstone:0", - [ 9 ] = "minecraft:sandstone:0", - [ 10 ] = "minecraft:sandstone:0", - [ 11 ] = "minecraft:sandstone:0", - [ 5 ] = "minecraft:sandstone:0", - [ 6 ] = "minecraft:sandstone:0", - }, - }, - [ "minecraft:hay_block:0" ] = { - count = 1, - ingredients = { - "minecraft:wheat:0", - "minecraft:wheat:0", - "minecraft:wheat:0", - [ 9 ] = "minecraft:wheat:0", - [ 10 ] = "minecraft:wheat:0", - [ 11 ] = "minecraft:wheat:0", - [ 5 ] = "minecraft:wheat:0", - [ 6 ] = "minecraft:wheat:0", - [ 7 ] = "minecraft:wheat:0", - }, - }, - [ "minecraft:birch_fence:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:2", - "minecraft:stick:0", - "minecraft:planks:2", - [ 5 ] = "minecraft:planks:2", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:2", - }, - }, - [ "minecraft:dropper:0" ] = { - count = 1, - ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - }, - [ "minecraft:glowstone:0" ] = { - ingredients = { - "minecraft:glowstone_dust:0", - "minecraft:glowstone_dust:0", - [ 5 ] = "minecraft:glowstone_dust:0", - [ 6 ] = "minecraft:glowstone_dust:0", - }, - count = 1, - }, - [ "minecraft:ender_chest:0" ] = { - count = 1, - 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 ] = "minecraft:ender_eye:0", - [ 7 ] = "minecraft:obsidian:0", - }, - }, - [ "minecraft:stained_glass_pane:15" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:15", - "minecraft:stained_glass:15", - "minecraft:stained_glass:15", - [ 5 ] = "minecraft:stained_glass:15", - [ 6 ] = "minecraft:stained_glass:15", - [ 7 ] = "minecraft:stained_glass:15", - }, - }, - [ "minecraft:carpet:5" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:5", - [ 6 ] = "minecraft:wool:5", - }, - }, - [ "minecraft:stained_glass:4" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:11", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:stone:4" ] = { - count = 4, - ingredients = { - "minecraft:stone:3", - "minecraft:stone:3", - [ 5 ] = "minecraft:stone:3", - [ 6 ] = "minecraft:stone:3", - }, - }, - [ "minecraft:gold_block:0" ] = { - count = 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 ] = "minecraft:gold_ingot:0", - [ 7 ] = "minecraft:gold_ingot:0", - }, - }, - [ "minecraft:stained_hardened_clay:13" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:2", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:jungle_door:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:3", - "minecraft:planks:3", - [ 9 ] = "minecraft:planks:3", - [ 10 ] = "minecraft:planks:3", - [ 5 ] = "minecraft:planks:3", - [ 6 ] = "minecraft:planks:3", - }, - }, - [ "minecraft:sea_lantern:0" ] = { - count = 1, - ingredients = { - "minecraft:prismarine_shard:0", - "minecraft:prismarine_crystals:0", - "minecraft:prismarine_shard:0", - [ 9 ] = "minecraft:prismarine_shard:0", - [ 10 ] = "minecraft:prismarine_crystals:0", - [ 11 ] = "minecraft:prismarine_shard:0", - [ 5 ] = "minecraft:prismarine_crystals:0", - [ 6 ] = "minecraft:prismarine_crystals:0", - [ 7 ] = "minecraft:prismarine_crystals:0", - }, - }, - [ "minecraft:tnt:0" ] = { - count = 1, - ingredients = { - "minecraft:gunpowder:0", - "minecraft:sand:0", - "minecraft:gunpowder:0", - [ 9 ] = "minecraft:gunpowder:0", - [ 10 ] = "minecraft:sand:0", - [ 11 ] = "minecraft:gunpowder:0", - [ 5 ] = "minecraft:sand:0", - [ 6 ] = "minecraft:gunpowder:0", - [ 7 ] = "minecraft:sand:0", - }, - }, - [ "minecraft:oak_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:stained_hardened_clay:1" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:14", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:red_sandstone:2" ] = { - count = 4, - ingredients = { - "minecraft:red_sandstone:0", - "minecraft:red_sandstone:0", - [ 5 ] = "minecraft:red_sandstone:0", - [ 6 ] = "minecraft:red_sandstone:0", - }, - }, - [ "minecraft:stained_hardened_clay:0" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:15", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:spruce_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:planks:1", - [ 9 ] = "minecraft:planks:1", - [ 10 ] = "minecraft:planks:1", - [ 11 ] = "minecraft:planks:1", - [ 5 ] = "minecraft:planks:1", - [ 6 ] = "minecraft:planks:1", - }, - }, - [ "minecraft:piston:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - count = 1, - }, - [ "minecraft:acacia_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:planks:4", - [ 9 ] = "minecraft:planks:4", - [ 10 ] = "minecraft:planks:4", - [ 11 ] = "minecraft:planks:4", - [ 5 ] = "minecraft:planks:4", - [ 6 ] = "minecraft:planks:4", - }, - }, - [ "minecraft:bookshelf:0" ] = { - count = 1, - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:book:0", - [ 6 ] = "minecraft:book:0", - [ 7 ] = "minecraft:book:0", - }, - }, - [ "minecraft:birch_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:planks:2", - [ 9 ] = "minecraft:planks:2", - [ 10 ] = "minecraft:planks:2", - [ 11 ] = "minecraft:planks:2", - [ 5 ] = "minecraft:planks:2", - [ 6 ] = "minecraft:planks:2", - }, - }, - [ "minecraft:stone_slab:1" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:sandstone:0", - [ 6 ] = "minecraft:sandstone:0", - [ 7 ] = "minecraft:sandstone:0", - }, - }, - [ "minecraft:wool:13" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:2", - }, - }, - [ "minecraft:carpet:7" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:7", - [ 6 ] = "minecraft:wool:7", - }, - }, - [ "minecraft:sugar:0" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:reeds:0", - }, - }, - [ "minecraft:stained_glass_pane:13" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:13", - "minecraft:stained_glass:13", - "minecraft:stained_glass:13", - [ 5 ] = "minecraft:stained_glass:13", - [ 6 ] = "minecraft:stained_glass:13", - [ 7 ] = "minecraft:stained_glass:13", - }, - }, - [ "minecraft:emerald_block:0" ] = { - count = 1, - ingredients = { - "minecraft:emerald:0", - "minecraft:emerald:0", - "minecraft:emerald:0", - [ 9 ] = "minecraft:emerald:0", - [ 10 ] = "minecraft:emerald:0", - [ 11 ] = "minecraft:emerald:0", - [ 5 ] = "minecraft:emerald:0", - [ 6 ] = "minecraft:emerald:0", - [ 7 ] = "minecraft:emerald:0", - }, - }, - [ "minecraft:stained_glass:13" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:2", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:stone_slab:4" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:brick_block:0", - [ 6 ] = "minecraft:brick_block:0", - [ 7 ] = "minecraft:brick_block:0", - }, - }, - [ "minecraft:stained_glass_pane:8" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:8", - "minecraft:stained_glass:8", - "minecraft:stained_glass:8", - [ 5 ] = "minecraft:stained_glass:8", - [ 6 ] = "minecraft:stained_glass:8", - [ 7 ] = "minecraft:stained_glass:8", - }, - }, - [ "minecraft:stone_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:cobblestone:0", - }, - }, - [ "minecraft:stained_glass:2" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:13", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:stained_hardened_clay:14" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:1", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:stained_glass:14" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:1", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:dark_oak_fence_gate:0" ] = { - count = 1, - ingredients = { - "minecraft:stick:0", - "minecraft:planks:5", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:5", - [ 7 ] = "minecraft:stick:0", - }, - }, - [ "minecraft:quartz_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:quartz_block:0", - [ 9 ] = "minecraft:quartz_block:0", - [ 10 ] = "minecraft:quartz_block:0", - [ 11 ] = "minecraft:quartz_block:0", - [ 5 ] = "minecraft:quartz_block:0", - [ 6 ] = "minecraft:quartz_block:0", - }, - }, - [ "minecraft:dirt:1" ] = { - count = 4, - ingredients = { - "minecraft:dirt:0", - "minecraft:gravel:0", - [ 5 ] = "minecraft:gravel:0", - [ 6 ] = "minecraft:dirt:0", - }, - }, - [ "minecraft:stained_hardened_clay:5" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:10", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:wooden_slab:1" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks:1", - [ 6 ] = "minecraft:planks:1", - [ 7 ] = "minecraft:planks:1", - }, - }, - [ "minecraft:stained_glass:10" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:5", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:hopper:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 3 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "minecraft:nether_brick:0" ] = { - count = 1, - ingredients = { - "minecraft:netherbrick:0", - "minecraft:netherbrick:0", - [ 5 ] = "minecraft:netherbrick:0", - [ 6 ] = "minecraft:netherbrick:0", - }, - }, - [ "minecraft:lapis_block:0" ] = { - count = 1, - ingredients = { - "minecraft:dye:4", - "minecraft:dye:4", - "minecraft:dye:4", - [ 9 ] = "minecraft:dye:4", - [ 10 ] = "minecraft:dye:4", - [ 11 ] = "minecraft:dye:4", - [ 5 ] = "minecraft:dye:4", - [ 6 ] = "minecraft:dye:4", - [ 7 ] = "minecraft:dye:4", - }, - }, - [ "minecraft:carpet:6" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:6", - [ 6 ] = "minecraft:wool:6", - }, - }, - [ "minecraft:prismarine:0" ] = { - count = 1, - ingredients = { - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - [ 5 ] = "minecraft:prismarine_shard:0", - [ 6 ] = "minecraft:prismarine_shard:0", - }, - }, - [ "minecraft:snow:0" ] = { - count = 1, - ingredients = { - "minecraft:snowball:0", - "minecraft:snowball:0", - [ 5 ] = "minecraft:snowball:0", - [ 6 ] = "minecraft:snowball:0", - }, - }, - [ "minecraft:stained_glass:0" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:15", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:wool:7" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:8", - }, - }, - [ "minecraft:purpur_slab:0" ] = { - count = 6, - ingredients = { - "minecraft:purpur_block:0", - "minecraft:purpur_block:0", - "minecraft:purpur_block:0", - }, - }, - [ "minecraft:stone_slab:7" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:quartz_block:0", - [ 6 ] = "minecraft:quartz_block:0", - [ 7 ] = "minecraft:quartz_block:0", - }, - }, - [ "minecraft:iron_block:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "minecraft:dark_oak_fence:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:5", - "minecraft:stick:0", - "minecraft:planks:5", - [ 5 ] = "minecraft:planks:5", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:5", - }, - }, - [ "minecraft:wool:0" ] = { - ingredients = { - "minecraft:string:0", - "minecraft:string:0", - [ 5 ] = "minecraft:string:0", - [ 6 ] = "minecraft:string:0", - }, - count = 1, - }, - [ "minecraft:stained_hardened_clay:4" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:11", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:cobblestone_wall:0" ] = { - count = 6, - ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", - }, - }, - [ "minecraft:wool:6" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:9", - }, - }, - [ "minecraft:carpet:10" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:10", - [ 6 ] = "minecraft:wool:10", - }, - }, - [ "minecraft:dark_oak_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:planks:5", - [ 9 ] = "minecraft:planks:5", - [ 10 ] = "minecraft:planks:5", - [ 11 ] = "minecraft:planks:5", - [ 5 ] = "minecraft:planks:5", - [ 6 ] = "minecraft:planks:5", - }, - }, - [ "minecraft:ender_eye:0" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:blaze_powder:0", - [ 6 ] = "minecraft:ender_pearl:0", - }, - }, - [ "minecraft:carpet:11" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:11", - [ 6 ] = "minecraft:wool:11", - }, - }, - [ "minecraft:iron_door:0" ] = { - count = 3, - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - }, - }, - [ "minecraft:stained_hardened_clay:11" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:4", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:planks:3" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log:3", - }, - }, - [ "minecraft:stonebrick:3" ] = { - count = 1, - ingredients = { - [ 2 ] = "minecraft:stone_slab:5", - [ 6 ] = "minecraft:stone_slab:5", - }, - }, - [ "minecraft:planks:2" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log:2", - }, - }, - [ "minecraft:wooden_door:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:dye:14" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye:1", - [ 6 ] = "minecraft:dye:11", - }, - }, - [ "minecraft:carpet:4" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:4", - [ 6 ] = "minecraft:wool:4", - }, - }, - [ "minecraft:diamond_pickaxe:0" ] = { - count = 1, - ingredients = { - "minecraft:diamond:0", - "minecraft:diamond:0", - "minecraft:diamond:0", - [ 6 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", - }, - maxCount = 1, - }, - [ "minecraft:stained_hardened_clay:7" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:8", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:heavy_weighted_pressure_plate:0" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - }, - }, - [ "minecraft:stone_button:0" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:stone:0", - }, - }, - [ "minecraft:dye:5" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye:1", - [ 6 ] = "minecraft:dye:4", - }, - }, - [ "minecraft:stained_glass_pane:1" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:1", - "minecraft:stained_glass:1", - "minecraft:stained_glass:1", - [ 5 ] = "minecraft:stained_glass:1", - [ 6 ] = "minecraft:stained_glass:1", - [ 7 ] = "minecraft:stained_glass:1", - }, - }, - [ "minecraft:chest:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - }, - count = 1, - }, - [ "minecraft:iron_pickaxe:0" ] = { - count = 1, - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", - }, - maxCount = 1, - }, - [ "minecraft:iron_trapdoor:0" ] = { - count = 1, - ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - }, - }, - [ "minecraft:stained_glass:15" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:0", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:wool:4" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye:11", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:wool:14" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:1", - }, - }, - [ "minecraft:wool:11" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:4", - }, - }, - [ "minecraft:pumpkin_seeds:0" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:pumpkin:0", - }, - }, - [ "minecraft:stained_glass:12" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:3", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:sticky_piston:0" ] = { - ingredients = { - "minecraft:slime_ball:0", - [ 5 ] = "minecraft:piston:0", - }, - count = 1, - }, - [ "minecraft:spruce_fence:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:1", - "minecraft:stick:0", - "minecraft:planks:1", - [ 5 ] = "minecraft:planks:1", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:1", - }, - }, - [ "minecraft:red_sandstone:0" ] = { - count = 1, - ingredients = { - "minecraft:sand:1", - "minecraft:sand:1", - [ 5 ] = "minecraft:sand:1", - [ 6 ] = "minecraft:sand:1", - }, - }, - [ "minecraft:dye:12" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye:4", - [ 6 ] = "minecraft:dye:15", - }, - }, - [ "minecraft:stone_brick_stairs:0" ] = { - count = 8, - ingredients = { - "minecraft:stonebrick:0", - [ 9 ] = "minecraft:stonebrick:0", - [ 10 ] = "minecraft:stonebrick:0", - [ 11 ] = "minecraft:stonebrick:0", - [ 5 ] = "minecraft:stonebrick:0", - [ 6 ] = "minecraft:stonebrick:0", - }, - }, - [ "minecraft:bone_block:0" ] = { - count = 1, - ingredients = { - "minecraft:dye:15", - "minecraft:dye:15", - "minecraft:dye:15", - [ 9 ] = "minecraft:dye:15", - [ 10 ] = "minecraft:dye:15", - [ 11 ] = "minecraft:dye:15", - [ 5 ] = "minecraft:dye:15", - [ 6 ] = "minecraft:dye:15", - [ 7 ] = "minecraft:dye:15", - }, - }, - [ "minecraft:stone_pressure_plate:0" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:stone:0", - }, - }, - [ "minecraft:wool:5" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:10", - }, - }, - [ "minecraft:dye:1" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:red_flower:0", - }, - }, - [ "minecraft:spruce_fence_gate:0" ] = { - count = 1, - ingredients = { - "minecraft:stick:0", - "minecraft:planks:1", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:1", - [ 7 ] = "minecraft:stick:0", - }, - }, - [ "minecraft:stained_hardened_clay:15" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:0", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:jungle_fence_gate:0" ] = { - count = 1, - ingredients = { - "minecraft:stick:0", - "minecraft:planks:3", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:3", - [ 7 ] = "minecraft:stick:0", - }, - }, - [ "minecraft:wool:8" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:7", - }, - }, - [ "minecraft:carpet:12" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:12", - [ 6 ] = "minecraft:wool:12", - }, - }, - [ "minecraft:diamond_block:0" ] = { - count = 1, - ingredients = { - "minecraft:diamond:0", - "minecraft:diamond:0", - "minecraft:diamond:0", - [ 9 ] = "minecraft:diamond:0", - [ 10 ] = "minecraft:diamond:0", - [ 11 ] = "minecraft:diamond:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "minecraft:diamond:0", - [ 7 ] = "minecraft:diamond:0", - }, - }, - [ "minecraft:dye:11" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:yellow_flower:0", - }, - }, - [ "minecraft:acacia_door:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:4", - "minecraft:planks:4", - [ 9 ] = "minecraft:planks:4", - [ 10 ] = "minecraft:planks:4", - [ 5 ] = "minecraft:planks:4", - [ 6 ] = "minecraft:planks:4", - }, - }, - [ "minecraft:planks:5" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log2:1", - }, - }, - [ "minecraft:stained_glass_pane:11" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:11", - "minecraft:stained_glass:11", - "minecraft:stained_glass:11", - [ 5 ] = "minecraft:stained_glass:11", - [ 6 ] = "minecraft:stained_glass:11", - [ 7 ] = "minecraft:stained_glass:11", - }, - }, - [ "minecraft:stained_glass_pane:14" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:14", - "minecraft:stained_glass:14", - "minecraft:stained_glass:14", - [ 5 ] = "minecraft:stained_glass:14", - [ 6 ] = "minecraft:stained_glass:14", - [ 7 ] = "minecraft:stained_glass:14", - }, - }, - [ "minecraft:planks:0" ] = { - ingredients = { - "minecraft:log:0", - }, - count = 4, - }, - [ "minecraft:tripwire_hook:0" ] = { - count = 2, - ingredients = { - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:stick:0", - }, - }, - [ "minecraft:stained_hardened_clay:3" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:12", - [ 7 ] = "minecraft:hardened_clay:0", - }, - }, - [ "minecraft:stained_glass_pane:5" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:5", - "minecraft:stained_glass:5", - "minecraft:stained_glass:5", - [ 5 ] = "minecraft:stained_glass:5", - [ 6 ] = "minecraft:stained_glass:5", - [ 7 ] = "minecraft:stained_glass:5", - }, - }, - [ "minecraft:cauldron:0" ] = { - ingredients = { - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 3 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "minecraft:wool:3" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye:12", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:purpur_block:0" ] = { - count = 4, - ingredients = { - "minecraft:chorus_fruit_popped:0", - "minecraft:chorus_fruit_popped:0", - [ 5 ] = "minecraft:chorus_fruit_popped:0", - [ 6 ] = "minecraft:chorus_fruit_popped:0", - }, - }, - [ "minecraft:redstone_block:0" ] = { - count = 1, - ingredients = { - "minecraft:redstone:0", - "minecraft:redstone:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:redstone:0", - }, - }, - [ "minecraft:sandstone:0" ] = { - count = 1, - ingredients = { - "minecraft:sand:0", - "minecraft:sand:0", - [ 5 ] = "minecraft:sand:0", - [ 6 ] = "minecraft:sand:0", - }, - }, - [ "minecraft:wool:2" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye:13", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:stone:1" ] = { - count = 1, - ingredients = { - "minecraft:stone:3", - "minecraft:quartz:0", - }, - }, - [ "minecraft:stone_slab:6" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:nether_brick:0", - [ 6 ] = "minecraft:nether_brick:0", - [ 7 ] = "minecraft:nether_brick:0", - }, - }, - [ "minecraft:dye:8" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye:15", - [ 6 ] = "minecraft:dye:0", - }, - }, - [ "minecraft:dark_oak_door:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:5", - "minecraft:planks:5", - [ 9 ] = "minecraft:planks:5", - [ 10 ] = "minecraft:planks:5", - [ 5 ] = "minecraft:planks:5", - [ 6 ] = "minecraft:planks:5", - }, - }, - [ "minecraft:carpet:1" ] = { - count = 3, - ingredients = { - "minecraft:wool:1", - "minecraft:wool:1", - }, - }, - [ "minecraft:bed:0" ] = { - count = 1, - ingredients = { - "minecraft:wool:0", - "minecraft:wool:0", - "minecraft:wool:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:redstone_torch:0" ] = { - ingredients = { - "minecraft:redstone:0", - [ 5 ] = "minecraft:stick:0", - }, - count = 1, - }, - [ "minecraft:fence:0" ] = { - count = 3, - ingredients = { - "minecraft:planks:0", - "minecraft:stick:0", - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:0", - }, - }, - [ "minecraft:stone:5" ] = { - count = 2, - ingredients = { - "minecraft:stone:3", - "minecraft:cobblestone:0", - }, - }, - [ "minecraft:stone:2" ] = { - count = 4, - ingredients = { - "minecraft:stone:1", - "minecraft:stone:1", - [ 5 ] = "minecraft:stone:1", - [ 6 ] = "minecraft:stone:1", - }, - }, - [ "minecraft:anvil:0" ] = { - ingredients = { - "minecraft:iron_block:0", - "minecraft:iron_block:0", - "minecraft:iron_block:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - }, - count = 1, - }, - [ "minecraft:stained_glass_pane:10" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:10", - "minecraft:stained_glass:10", - "minecraft:stained_glass:10", - [ 5 ] = "minecraft:stained_glass:10", - [ 6 ] = "minecraft:stained_glass:10", - [ 7 ] = "minecraft:stained_glass:10", - }, - }, - [ "minecraft:dye:13" ] = { - count = 3, - ingredients = { - "minecraft:dye:4", - "minecraft:dye:1", - [ 5 ] = "minecraft:dye:9", - }, - }, - [ "minecraft:stained_glass_pane:12" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:12", - "minecraft:stained_glass:12", - "minecraft:stained_glass:12", - [ 5 ] = "minecraft:stained_glass:12", - [ 6 ] = "minecraft:stained_glass:12", - [ 7 ] = "minecraft:stained_glass:12", - }, - }, - [ "minecraft:stained_glass:8" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:7", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:stained_glass_pane:2" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:2", - "minecraft:stained_glass:2", - "minecraft:stained_glass:2", - [ 5 ] = "minecraft:stained_glass:2", - [ 6 ] = "minecraft:stained_glass:2", - [ 7 ] = "minecraft:stained_glass:2", - }, - }, - [ "minecraft:banner:0" ] = { - count = 1, - ingredients = { - "minecraft:wool:15", - "minecraft:wool:15", - "minecraft:wool:15", - [ 7 ] = "minecraft:wool:15", - [ 10 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:wool:15", - [ 6 ] = "minecraft:wool:15", - }, - }, - [ "minecraft:stained_glass:6" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:9", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:planks:1" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log:1", - }, - }, - [ "minecraft:quartz_block:1" ] = { - count = 1, - ingredients = { - [ 2 ] = "minecraft:stone_slab:7", - [ 6 ] = "minecraft:stone_slab:7", - }, - }, - [ "minecraft:stone_slab:3" ] = { - ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - }, - count = 6, - }, - [ "minecraft:carpet:13" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool:13", - [ 6 ] = "minecraft:wool:13", - }, - }, - [ "minecraft:nether_brick_fence:0" ] = { - count = 6, - ingredients = { - "minecraft:nether_brick:0", - "minecraft:nether_brick:0", - "minecraft:nether_brick:0", - [ 5 ] = "minecraft:nether_brick:0", - [ 6 ] = "minecraft:nether_brick:0", - [ 7 ] = "minecraft:nether_brick:0", - }, - }, - [ "minecraft:wool:9" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye:6", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:wool:1" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye:14", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:wooden_slab:0" ] = { - ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - }, - count = 6, - }, - [ "minecraft:flower_pot:0" ] = { - count = 1, - ingredients = { - "minecraft:brick:0", - [ 6 ] = "minecraft:brick:0", - [ 3 ] = "minecraft:brick:0", - }, - }, - [ "minecraft:wool:12" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye:3", - [ 6 ] = "minecraft:wool:0", - }, - }, - [ "minecraft:mossy_cobblestone:0" ] = { - count = 1, - ingredients = { - "minecraft:cobblestone:0", - "minecraft:vine:0", - }, - }, - [ "minecraft:stonebrick:0" ] = { - count = 4, - ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:stone:0", - }, - }, - [ "minecraft:blaze_powder:0" ] = { - count = 2, - ingredients = { - "minecraft:blaze_rod:0", - }, - }, - [ "minecraft:end_rod:0" ] = { - count = 4, - ingredients = { - [ 2 ] = "minecraft:blaze_rod:0", - [ 6 ] = "minecraft:chorus_fruit_popped:0", - }, - }, - [ "minecraft:stained_glass:9" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:6", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:stained_glass:7" ] = { - count = 8, - ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:8", - [ 7 ] = "minecraft:glass:0", - }, - }, - [ "minecraft:brick_block:0" ] = { - count = 1, - ingredients = { - "minecraft:brick:0", - "minecraft:brick:0", - [ 5 ] = "minecraft:brick:0", - [ 6 ] = "minecraft:brick:0", - }, - }, - [ "minecraft:repeater:0" ] = { - count = 1, - ingredients = { - "minecraft:redstone_torch:0", - "minecraft:redstone:0", - "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:stone:0", - [ 7 ] = "minecraft:stone:0", - }, - }, - [ "minecraft:quartz_block:0" ] = { - count = 1, - ingredients = { - "minecraft:quartz:0", - "minecraft:quartz:0", - [ 5 ] = "minecraft:quartz:0", - [ 6 ] = "minecraft:quartz:0", - }, - }, - [ "minecraft:stained_glass_pane:0" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass:0", - "minecraft:stained_glass:0", - "minecraft:stained_glass:0", - [ 5 ] = "minecraft:stained_glass:0", - [ 6 ] = "minecraft:stained_glass:0", - [ 7 ] = "minecraft:stained_glass:0", - }, - }, - [ "minecraft:wooden_slab:5" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks:5", - [ 6 ] = "minecraft:planks:5", - [ 7 ] = "minecraft:planks:5", - }, - }, - }, -} \ No newline at end of file -- 2.49.1 From bf8f9c5f0dd61c0d524e2c1df0a57a1b4eab9b7d Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Thu, 29 Dec 2022 09:12:41 +0400 Subject: [PATCH 04/26] Revert "hopefully this works 9removed damage values)" This reverts commit 13aa4631be34f9b70816b33574bb0116f2fafd36. --- recipeBook/etc/recipes/minecraft.db | 2330 +++++++++++++++++++++++++++ 1 file changed, 2330 insertions(+) diff --git a/recipeBook/etc/recipes/minecraft.db b/recipeBook/etc/recipes/minecraft.db index e69de29..14dac3f 100644 --- a/recipeBook/etc/recipes/minecraft.db +++ b/recipeBook/etc/recipes/minecraft.db @@ -0,0 +1,2330 @@ +{ + name = "Minecraft", + version = "", + recipes = { + [ "minecraft:jukebox:0" ] = { + count = 1, + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 7 ] = "minecraft:planks:0", + [ 9 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:planks:0", + [ 11 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:diamond:0", + }, + }, + [ "minecraft:flint_and_steel:0" ] = { + count = 1, + ingredients = { + "minecraft:flint:0", + "minecraft:iron_ingot:0", + }, + maxCount = 1, + }, + [ "minecraft:glass_bottle:0" ] = { + ingredients = { + "minecraft:glass:0", + [ 6 ] = "minecraft:glass:0", + [ 3 ] = "minecraft:glass:0", + }, + count = 3, + }, + [ "minecraft:writable_book:0" ] = { + ingredients = { + "minecraft:book:0", + "minecraft:dye:0", + "minecraft:feather:0", + }, + count = 1, + }, + [ "minecraft:carpet:8" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:8", + [ 6 ] = "minecraft:wool:8", + }, + }, + [ "minecraft:wooden_slab:4" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:planks:4", + [ 6 ] = "minecraft:planks:4", + [ 7 ] = "minecraft:planks:4", + }, + }, + [ "minecraft:iron_bars:0" ] = { + ingredients = { + "minecraft:iron_ingot:0", + "minecraft:iron_ingot:0", + "minecraft:iron_ingot:0", + [ 5 ] = "minecraft:iron_ingot:0", + [ 6 ] = "minecraft:iron_ingot:0", + [ 7 ] = "minecraft:iron_ingot:0", + }, + count = 16, + }, + [ "minecraft:glass_pane:0" ] = { + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:glass:0", + [ 7 ] = "minecraft:glass:0", + }, + count = 16, + }, + [ "minecraft:stained_glass:5" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:10", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:carpet:9" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:9", + [ 6 ] = "minecraft:wool:9", + }, + }, + [ "minecraft:brick_stairs:0" ] = { + count = 4, + ingredients = { + "minecraft:brick_block:0", + [ 9 ] = "minecraft:brick_block:0", + [ 10 ] = "minecraft:brick_block:0", + [ 11 ] = "minecraft:brick_block:0", + [ 5 ] = "minecraft:brick_block:0", + [ 6 ] = "minecraft:brick_block:0", + }, + }, + [ "minecraft:birch_fence_gate:0" ] = { + count = 1, + ingredients = { + "minecraft:stick:0", + "minecraft:planks:2", + "minecraft:stick:0", + [ 5 ] = "minecraft:stick:0", + [ 6 ] = "minecraft:planks:2", + [ 7 ] = "minecraft:stick:0", + }, + }, + [ "minecraft:stone_slab:0" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:stone:0", + [ 6 ] = "minecraft:stone:0", + [ 7 ] = "minecraft:stone:0", + }, + }, + [ "minecraft:wool:10" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:dye:5", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:carpet:15" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:15", + [ 6 ] = "minecraft:wool:15", + }, + }, + [ "minecraft:stained_glass_pane:6" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:6", + "minecraft:stained_glass:6", + "minecraft:stained_glass:6", + [ 5 ] = "minecraft:stained_glass:6", + [ 6 ] = "minecraft:stained_glass:6", + [ 7 ] = "minecraft:stained_glass:6", + }, + }, + [ "minecraft:wooden_button:0" ] = { + count = 1, + ingredients = { + [ 6 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:jungle_stairs:0" ] = { + count = 4, + ingredients = { + "minecraft:planks:3", + [ 9 ] = "minecraft:planks:3", + [ 10 ] = "minecraft:planks:3", + [ 11 ] = "minecraft:planks:3", + [ 5 ] = "minecraft:planks:3", + [ 6 ] = "minecraft:planks:3", + }, + }, + [ "minecraft:dye:9" ] = { + count = 2, + ingredients = { + [ 5 ] = "minecraft:dye:1", + [ 6 ] = "minecraft:dye:15", + }, + }, + [ "minecraft:end_bricks:0" ] = { + count = 4, + ingredients = { + "minecraft:end_stone:0", + "minecraft:end_stone:0", + [ 5 ] = "minecraft:end_stone:0", + [ 6 ] = "minecraft:end_stone:0", + }, + }, + [ "minecraft:stained_hardened_clay:9" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:6", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:sign:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 7 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:stick:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:wool:15" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:dye:0", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:stained_hardened_clay:8" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:7", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:dye:7" ] = { + count = 3, + ingredients = { + "minecraft:dye:15", + "minecraft:dye:15", + [ 5 ] = "minecraft:dye:0", + }, + }, + [ "minecraft:snow_layer:0" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:snow:0", + [ 6 ] = "minecraft:snow:0", + [ 7 ] = "minecraft:snow:0", + }, + }, + [ "minecraft:furnace:0" ] = { + count = 1, + ingredients = { + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + [ 9 ] = "minecraft:cobblestone:0", + [ 10 ] = "minecraft:cobblestone:0", + [ 11 ] = "minecraft:cobblestone:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 7 ] = "minecraft:cobblestone:0", + }, + }, + [ "minecraft:carpet:0" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:0", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:stained_glass:1" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:14", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:carpet:14" ] = { + count = 3, + ingredients = { + "minecraft:wool:14", + "minecraft:wool:14", + }, + }, + [ "minecraft:wooden_slab:2" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:planks:2", + [ 6 ] = "minecraft:planks:2", + [ 7 ] = "minecraft:planks:2", + }, + }, + [ "minecraft:carpet:2" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:2", + [ 6 ] = "minecraft:wool:2", + }, + }, + [ "minecraft:prismarine:1" ] = { + count = 1, + ingredients = { + "minecraft:prismarine_shard:0", + "minecraft:prismarine_shard:0", + "minecraft:prismarine_shard:0", + [ 9 ] = "minecraft:prismarine_shard:0", + [ 10 ] = "minecraft:prismarine_shard:0", + [ 11 ] = "minecraft:prismarine_shard:0", + [ 5 ] = "minecraft:prismarine_shard:0", + [ 6 ] = "minecraft:prismarine_shard:0", + [ 7 ] = "minecraft:prismarine_shard:0", + }, + }, + [ "minecraft:birch_door:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:2", + "minecraft:planks:2", + [ 9 ] = "minecraft:planks:2", + [ 10 ] = "minecraft:planks:2", + [ 5 ] = "minecraft:planks:2", + [ 6 ] = "minecraft:planks:2", + }, + }, + [ "minecraft:comparator:0" ] = { + count = 1, + ingredients = { + [ 10 ] = "minecraft:stone:0", + [ 11 ] = "minecraft:stone:0", + [ 2 ] = "minecraft:redstone_torch:0", + [ 5 ] = "minecraft:redstone_torch:0", + [ 6 ] = "minecraft:quartz:0", + [ 7 ] = "minecraft:redstone_torch:0", + [ 9 ] = "minecraft:stone:0", + }, + }, + [ "minecraft:wooden_slab:3" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:planks:3", + [ 6 ] = "minecraft:planks:3", + [ 7 ] = "minecraft:planks:3", + }, + }, + [ "minecraft:sandstone:1" ] = { + count = 1, + ingredients = { + [ 2 ] = "minecraft:stone_slab:1", + [ 6 ] = "minecraft:stone_slab:1", + }, + }, + [ "minecraft:noteblock:0" ] = { + count = 1, + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 9 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:planks:0", + [ 11 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:redstone:0", + [ 7 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:coal_block:0" ] = { + count = 1, + ingredients = { + "minecraft:coal:0", + "minecraft:coal:0", + "minecraft:coal:0", + [ 9 ] = "minecraft:coal:0", + [ 10 ] = "minecraft:coal:0", + [ 11 ] = "minecraft:coal:0", + [ 5 ] = "minecraft:coal:0", + [ 6 ] = "minecraft:coal:0", + [ 7 ] = "minecraft:coal:0", + }, + }, + [ "minecraft:stained_glass_pane:4" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:4", + "minecraft:stained_glass:4", + "minecraft:stained_glass:4", + [ 5 ] = "minecraft:stained_glass:4", + [ 6 ] = "minecraft:stained_glass:4", + [ 7 ] = "minecraft:stained_glass:4", + }, + }, + [ "minecraft:stained_glass:11" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:4", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:clock:0" ] = { + count = 1, + ingredients = { + [ 10 ] = "minecraft:gold_ingot:0", + [ 2 ] = "minecraft:gold_ingot:0", + [ 5 ] = "minecraft:gold_ingot:0", + [ 6 ] = "minecraft:redstone:0", + [ 7 ] = "minecraft:gold_ingot:0", + }, + }, + [ "minecraft:stained_glass:3" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:12", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:acacia_fence_gate:0" ] = { + count = 1, + ingredients = { + "minecraft:stick:0", + "minecraft:planks:4", + "minecraft:stick:0", + [ 5 ] = "minecraft:stick:0", + [ 6 ] = "minecraft:planks:4", + [ 7 ] = "minecraft:stick:0", + }, + }, + [ "minecraft:wooden_pressure_plate:0" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:stained_glass_pane:9" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:9", + "minecraft:stained_glass:9", + "minecraft:stained_glass:9", + [ 5 ] = "minecraft:stained_glass:9", + [ 6 ] = "minecraft:stained_glass:9", + [ 7 ] = "minecraft:stained_glass:9", + }, + }, + [ "minecraft:ladder:0" ] = { + count = 3, + ingredients = { + "minecraft:stick:0", + [ 9 ] = "minecraft:stick:0", + [ 11 ] = "minecraft:stick:0", + [ 3 ] = "minecraft:stick:0", + [ 5 ] = "minecraft:stick:0", + [ 6 ] = "minecraft:stick:0", + [ 7 ] = "minecraft:stick:0", + }, + }, + [ "minecraft:enchanting_table:0" ] = { + count = 1, + ingredients = { + [ 10 ] = "minecraft:obsidian:0", + [ 11 ] = "minecraft:obsidian:0", + [ 2 ] = "minecraft:book:0", + [ 5 ] = "minecraft:diamond:0", + [ 6 ] = "minecraft:obsidian:0", + [ 7 ] = "minecraft:diamond:0", + [ 9 ] = "minecraft:obsidian:0", + }, + }, + [ "minecraft:torch:0" ] = { + ingredients = { + "minecraft:coal:1", + [ 5 ] = "minecraft:stick:0", + }, + count = 4, + }, + [ "minecraft:stick:0" ] = { + ingredients = { + "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + }, + count = 4, + }, + [ "minecraft:acacia_fence:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:4", + "minecraft:stick:0", + "minecraft:planks:4", + [ 5 ] = "minecraft:planks:4", + [ 6 ] = "minecraft:stick:0", + [ 7 ] = "minecraft:planks:4", + }, + }, + [ "minecraft:stained_hardened_clay:12" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:3", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:spruce_door:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:1", + "minecraft:planks:1", + [ 9 ] = "minecraft:planks:1", + [ 10 ] = "minecraft:planks:1", + [ 5 ] = "minecraft:planks:1", + [ 6 ] = "minecraft:planks:1", + }, + }, + [ "minecraft:quartz_block:2" ] = { + count = 2, + ingredients = { + [ 2 ] = "minecraft:quartz_block:0", + [ 6 ] = "minecraft:quartz_block:0", + }, + }, + [ "minecraft:stone_slab:5" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:stonebrick:0", + [ 6 ] = "minecraft:stonebrick:0", + [ 7 ] = "minecraft:stonebrick:0", + }, + }, + [ "minecraft:bow:0" ] = { + count = 1, + ingredients = { + "minecraft:string:0", + "minecraft:stick:0", + [ 7 ] = "minecraft:stick:0", + [ 9 ] = "minecraft:string:0", + [ 10 ] = "minecraft:stick:0", + [ 5 ] = "minecraft:string:0", + }, + }, + [ "minecraft:stained_glass_pane:3" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:3", + "minecraft:stained_glass:3", + "minecraft:stained_glass:3", + [ 5 ] = "minecraft:stained_glass:3", + [ 6 ] = "minecraft:stained_glass:3", + [ 7 ] = "minecraft:stained_glass:3", + }, + }, + [ "minecraft:dye:6" ] = { + count = 2, + ingredients = { + [ 5 ] = "minecraft:dye:2", + [ 6 ] = "minecraft:dye:4", + }, + }, + [ "minecraft:stained_glass_pane:7" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:7", + "minecraft:stained_glass:7", + "minecraft:stained_glass:7", + [ 5 ] = "minecraft:stained_glass:7", + [ 6 ] = "minecraft:stained_glass:7", + [ 7 ] = "minecraft:stained_glass:7", + }, + }, + [ "minecraft:trapped_chest:0" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:chest:0", + [ 6 ] = "minecraft:tripwire_hook:0", + }, + }, + [ "minecraft:crafting_table:0" ] = { + count = 1, + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:dye:10" ] = { + count = 2, + ingredients = { + "minecraft:dye:15", + "minecraft:dye:2", + }, + }, + [ "minecraft:gold_nugget:0" ] = { + count = 9, + ingredients = { + "minecraft:gold_ingot:0", + }, + }, + [ "minecraft:prismarine:2" ] = { + count = 1, + ingredients = { + "minecraft:prismarine_shard:0", + "minecraft:prismarine_shard:0", + "minecraft:prismarine_shard:0", + [ 9 ] = "minecraft:prismarine_shard:0", + [ 10 ] = "minecraft:prismarine_shard:0", + [ 11 ] = "minecraft:prismarine_shard:0", + [ 5 ] = "minecraft:prismarine_shard:0", + [ 6 ] = "minecraft:dye:0", + [ 7 ] = "minecraft:prismarine_shard:0", + }, + }, + [ "minecraft:brewing_stand:0" ] = { + count = 1, + ingredients = { + [ 7 ] = "minecraft:cobblestone:0", + [ 2 ] = "minecraft:blaze_rod:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 6 ] = "minecraft:cobblestone:0", + }, + }, + [ "minecraft:beacon:0" ] = { + count = 1, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:obsidian:0", + [ 10 ] = "minecraft:obsidian:0", + [ 11 ] = "minecraft:obsidian:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:nether_star:0", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:fence_gate:0" ] = { + count = 1, + ingredients = { + "minecraft:stick:0", + "minecraft:planks:0", + "minecraft:stick:0", + [ 5 ] = "minecraft:stick:0", + [ 6 ] = "minecraft:planks:0", + [ 7 ] = "minecraft:stick:0", + }, + }, + [ "minecraft:lever:0" ] = { + count = 1, + ingredients = { + [ 2 ] = "minecraft:stick:0", + [ 6 ] = "minecraft:cobblestone:0", + }, + }, + [ "minecraft:dispenser:0" ] = { + count = 1, + ingredients = { + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + [ 9 ] = "minecraft:cobblestone:0", + [ 10 ] = "minecraft:redstone:0", + [ 11 ] = "minecraft:cobblestone:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 6 ] = "minecraft:bow:0", + [ 7 ] = "minecraft:cobblestone:0", + }, + }, + [ "minecraft:jungle_fence:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:3", + "minecraft:stick:0", + "minecraft:planks:3", + [ 5 ] = "minecraft:planks:3", + [ 6 ] = "minecraft:stick:0", + [ 7 ] = "minecraft:planks:3", + }, + }, + [ "minecraft:redstone_lamp:0" ] = { + count = 1, + ingredients = { + [ 10 ] = "minecraft:redstone:0", + [ 2 ] = "minecraft:redstone:0", + [ 5 ] = "minecraft:redstone:0", + [ 6 ] = "minecraft:glowstone:0", + [ 7 ] = "minecraft:redstone:0", + }, + }, + [ "minecraft:stone:3" ] = { + count = 2, + ingredients = { + "minecraft:quartz:0", + "minecraft:cobblestone:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 6 ] = "minecraft:quartz:0", + }, + }, + [ "minecraft:sandstone:2" ] = { + count = 4, + ingredients = { + "minecraft:sandstone:0", + "minecraft:sandstone:0", + [ 5 ] = "minecraft:sandstone:0", + [ 6 ] = "minecraft:sandstone:0", + }, + }, + [ "minecraft:stone:6" ] = { + count = 4, + ingredients = { + "minecraft:stone:5", + "minecraft:stone:5", + [ 5 ] = "minecraft:stone:5", + [ 6 ] = "minecraft:stone:5", + }, + }, + [ "minecraft:carpet:3" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:3", + [ 6 ] = "minecraft:wool:3", + }, + }, + [ "minecraft:planks:4" ] = { + count = 4, + ingredients = { + [ 6 ] = "minecraft:log2:0", + }, + }, + [ "minecraft:trapdoor:0" ] = { + count = 2, + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:planks:0", + [ 7 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:light_weighted_pressure_plate:0" ] = { + count = 1, + ingredients = { + "minecraft:gold_ingot:0", + "minecraft:gold_ingot:0", + }, + }, + [ "minecraft:nether_brick_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:nether_brick:0", + [ 9 ] = "minecraft:nether_brick:0", + [ 10 ] = "minecraft:nether_brick:0", + [ 11 ] = "minecraft:nether_brick:0", + [ 5 ] = "minecraft:nether_brick:0", + [ 6 ] = "minecraft:nether_brick:0", + }, + }, + [ "minecraft:sandstone_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:sandstone:0", + [ 9 ] = "minecraft:sandstone:0", + [ 10 ] = "minecraft:sandstone:0", + [ 11 ] = "minecraft:sandstone:0", + [ 5 ] = "minecraft:sandstone:0", + [ 6 ] = "minecraft:sandstone:0", + }, + }, + [ "minecraft:hay_block:0" ] = { + count = 1, + ingredients = { + "minecraft:wheat:0", + "minecraft:wheat:0", + "minecraft:wheat:0", + [ 9 ] = "minecraft:wheat:0", + [ 10 ] = "minecraft:wheat:0", + [ 11 ] = "minecraft:wheat:0", + [ 5 ] = "minecraft:wheat:0", + [ 6 ] = "minecraft:wheat:0", + [ 7 ] = "minecraft:wheat:0", + }, + }, + [ "minecraft:birch_fence:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:2", + "minecraft:stick:0", + "minecraft:planks:2", + [ 5 ] = "minecraft:planks:2", + [ 6 ] = "minecraft:stick:0", + [ 7 ] = "minecraft:planks:2", + }, + }, + [ "minecraft:dropper:0" ] = { + count = 1, + ingredients = { + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + [ 9 ] = "minecraft:cobblestone:0", + [ 10 ] = "minecraft:redstone:0", + [ 11 ] = "minecraft:cobblestone:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 7 ] = "minecraft:cobblestone:0", + }, + }, + [ "minecraft:glowstone:0" ] = { + ingredients = { + "minecraft:glowstone_dust:0", + "minecraft:glowstone_dust:0", + [ 5 ] = "minecraft:glowstone_dust:0", + [ 6 ] = "minecraft:glowstone_dust:0", + }, + count = 1, + }, + [ "minecraft:ender_chest:0" ] = { + count = 1, + 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 ] = "minecraft:ender_eye:0", + [ 7 ] = "minecraft:obsidian:0", + }, + }, + [ "minecraft:stained_glass_pane:15" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:15", + "minecraft:stained_glass:15", + "minecraft:stained_glass:15", + [ 5 ] = "minecraft:stained_glass:15", + [ 6 ] = "minecraft:stained_glass:15", + [ 7 ] = "minecraft:stained_glass:15", + }, + }, + [ "minecraft:carpet:5" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:5", + [ 6 ] = "minecraft:wool:5", + }, + }, + [ "minecraft:stained_glass:4" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:11", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:stone:4" ] = { + count = 4, + ingredients = { + "minecraft:stone:3", + "minecraft:stone:3", + [ 5 ] = "minecraft:stone:3", + [ 6 ] = "minecraft:stone:3", + }, + }, + [ "minecraft:gold_block:0" ] = { + count = 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 ] = "minecraft:gold_ingot:0", + [ 7 ] = "minecraft:gold_ingot:0", + }, + }, + [ "minecraft:stained_hardened_clay:13" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:2", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:jungle_door:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:3", + "minecraft:planks:3", + [ 9 ] = "minecraft:planks:3", + [ 10 ] = "minecraft:planks:3", + [ 5 ] = "minecraft:planks:3", + [ 6 ] = "minecraft:planks:3", + }, + }, + [ "minecraft:sea_lantern:0" ] = { + count = 1, + ingredients = { + "minecraft:prismarine_shard:0", + "minecraft:prismarine_crystals:0", + "minecraft:prismarine_shard:0", + [ 9 ] = "minecraft:prismarine_shard:0", + [ 10 ] = "minecraft:prismarine_crystals:0", + [ 11 ] = "minecraft:prismarine_shard:0", + [ 5 ] = "minecraft:prismarine_crystals:0", + [ 6 ] = "minecraft:prismarine_crystals:0", + [ 7 ] = "minecraft:prismarine_crystals:0", + }, + }, + [ "minecraft:tnt:0" ] = { + count = 1, + ingredients = { + "minecraft:gunpowder:0", + "minecraft:sand:0", + "minecraft:gunpowder:0", + [ 9 ] = "minecraft:gunpowder:0", + [ 10 ] = "minecraft:sand:0", + [ 11 ] = "minecraft:gunpowder:0", + [ 5 ] = "minecraft:sand:0", + [ 6 ] = "minecraft:gunpowder:0", + [ 7 ] = "minecraft:sand:0", + }, + }, + [ "minecraft:oak_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:planks:0", + [ 9 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:planks:0", + [ 11 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:stained_hardened_clay:1" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:14", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:red_sandstone:2" ] = { + count = 4, + ingredients = { + "minecraft:red_sandstone:0", + "minecraft:red_sandstone:0", + [ 5 ] = "minecraft:red_sandstone:0", + [ 6 ] = "minecraft:red_sandstone:0", + }, + }, + [ "minecraft:stained_hardened_clay:0" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:15", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:spruce_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:planks:1", + [ 9 ] = "minecraft:planks:1", + [ 10 ] = "minecraft:planks:1", + [ 11 ] = "minecraft:planks:1", + [ 5 ] = "minecraft:planks:1", + [ 6 ] = "minecraft:planks:1", + }, + }, + [ "minecraft:piston:0" ] = { + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 9 ] = "minecraft:cobblestone:0", + [ 10 ] = "minecraft:redstone:0", + [ 11 ] = "minecraft:cobblestone:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 6 ] = "minecraft:iron_ingot:0", + [ 7 ] = "minecraft:cobblestone:0", + }, + count = 1, + }, + [ "minecraft:acacia_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:planks:4", + [ 9 ] = "minecraft:planks:4", + [ 10 ] = "minecraft:planks:4", + [ 11 ] = "minecraft:planks:4", + [ 5 ] = "minecraft:planks:4", + [ 6 ] = "minecraft:planks:4", + }, + }, + [ "minecraft:bookshelf:0" ] = { + count = 1, + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 9 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:planks:0", + [ 11 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:book:0", + [ 6 ] = "minecraft:book:0", + [ 7 ] = "minecraft:book:0", + }, + }, + [ "minecraft:birch_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:planks:2", + [ 9 ] = "minecraft:planks:2", + [ 10 ] = "minecraft:planks:2", + [ 11 ] = "minecraft:planks:2", + [ 5 ] = "minecraft:planks:2", + [ 6 ] = "minecraft:planks:2", + }, + }, + [ "minecraft:stone_slab:1" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:sandstone:0", + [ 6 ] = "minecraft:sandstone:0", + [ 7 ] = "minecraft:sandstone:0", + }, + }, + [ "minecraft:wool:13" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:wool:0", + [ 6 ] = "minecraft:dye:2", + }, + }, + [ "minecraft:carpet:7" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:7", + [ 6 ] = "minecraft:wool:7", + }, + }, + [ "minecraft:sugar:0" ] = { + count = 1, + ingredients = { + [ 6 ] = "minecraft:reeds:0", + }, + }, + [ "minecraft:stained_glass_pane:13" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:13", + "minecraft:stained_glass:13", + "minecraft:stained_glass:13", + [ 5 ] = "minecraft:stained_glass:13", + [ 6 ] = "minecraft:stained_glass:13", + [ 7 ] = "minecraft:stained_glass:13", + }, + }, + [ "minecraft:emerald_block:0" ] = { + count = 1, + ingredients = { + "minecraft:emerald:0", + "minecraft:emerald:0", + "minecraft:emerald:0", + [ 9 ] = "minecraft:emerald:0", + [ 10 ] = "minecraft:emerald:0", + [ 11 ] = "minecraft:emerald:0", + [ 5 ] = "minecraft:emerald:0", + [ 6 ] = "minecraft:emerald:0", + [ 7 ] = "minecraft:emerald:0", + }, + }, + [ "minecraft:stained_glass:13" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:2", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:stone_slab:4" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:brick_block:0", + [ 6 ] = "minecraft:brick_block:0", + [ 7 ] = "minecraft:brick_block:0", + }, + }, + [ "minecraft:stained_glass_pane:8" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:8", + "minecraft:stained_glass:8", + "minecraft:stained_glass:8", + [ 5 ] = "minecraft:stained_glass:8", + [ 6 ] = "minecraft:stained_glass:8", + [ 7 ] = "minecraft:stained_glass:8", + }, + }, + [ "minecraft:stone_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:cobblestone:0", + [ 9 ] = "minecraft:cobblestone:0", + [ 10 ] = "minecraft:cobblestone:0", + [ 11 ] = "minecraft:cobblestone:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 6 ] = "minecraft:cobblestone:0", + }, + }, + [ "minecraft:stained_glass:2" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:13", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:stained_hardened_clay:14" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:1", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:stained_glass:14" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:1", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:dark_oak_fence_gate:0" ] = { + count = 1, + ingredients = { + "minecraft:stick:0", + "minecraft:planks:5", + "minecraft:stick:0", + [ 5 ] = "minecraft:stick:0", + [ 6 ] = "minecraft:planks:5", + [ 7 ] = "minecraft:stick:0", + }, + }, + [ "minecraft:quartz_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:quartz_block:0", + [ 9 ] = "minecraft:quartz_block:0", + [ 10 ] = "minecraft:quartz_block:0", + [ 11 ] = "minecraft:quartz_block:0", + [ 5 ] = "minecraft:quartz_block:0", + [ 6 ] = "minecraft:quartz_block:0", + }, + }, + [ "minecraft:dirt:1" ] = { + count = 4, + ingredients = { + "minecraft:dirt:0", + "minecraft:gravel:0", + [ 5 ] = "minecraft:gravel:0", + [ 6 ] = "minecraft:dirt:0", + }, + }, + [ "minecraft:stained_hardened_clay:5" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:10", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:wooden_slab:1" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:planks:1", + [ 6 ] = "minecraft:planks:1", + [ 7 ] = "minecraft:planks:1", + }, + }, + [ "minecraft:stained_glass:10" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:5", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:hopper:0" ] = { + ingredients = { + "minecraft:iron_ingot:0", + [ 10 ] = "minecraft:iron_ingot:0", + [ 3 ] = "minecraft:iron_ingot:0", + [ 5 ] = "minecraft:iron_ingot:0", + [ 6 ] = "minecraft:chest:0", + [ 7 ] = "minecraft:iron_ingot:0", + }, + count = 1, + }, + [ "minecraft:nether_brick:0" ] = { + count = 1, + ingredients = { + "minecraft:netherbrick:0", + "minecraft:netherbrick:0", + [ 5 ] = "minecraft:netherbrick:0", + [ 6 ] = "minecraft:netherbrick:0", + }, + }, + [ "minecraft:lapis_block:0" ] = { + count = 1, + ingredients = { + "minecraft:dye:4", + "minecraft:dye:4", + "minecraft:dye:4", + [ 9 ] = "minecraft:dye:4", + [ 10 ] = "minecraft:dye:4", + [ 11 ] = "minecraft:dye:4", + [ 5 ] = "minecraft:dye:4", + [ 6 ] = "minecraft:dye:4", + [ 7 ] = "minecraft:dye:4", + }, + }, + [ "minecraft:carpet:6" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:6", + [ 6 ] = "minecraft:wool:6", + }, + }, + [ "minecraft:prismarine:0" ] = { + count = 1, + ingredients = { + "minecraft:prismarine_shard:0", + "minecraft:prismarine_shard:0", + [ 5 ] = "minecraft:prismarine_shard:0", + [ 6 ] = "minecraft:prismarine_shard:0", + }, + }, + [ "minecraft:snow:0" ] = { + count = 1, + ingredients = { + "minecraft:snowball:0", + "minecraft:snowball:0", + [ 5 ] = "minecraft:snowball:0", + [ 6 ] = "minecraft:snowball:0", + }, + }, + [ "minecraft:stained_glass:0" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:15", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:wool:7" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:wool:0", + [ 6 ] = "minecraft:dye:8", + }, + }, + [ "minecraft:purpur_slab:0" ] = { + count = 6, + ingredients = { + "minecraft:purpur_block:0", + "minecraft:purpur_block:0", + "minecraft:purpur_block:0", + }, + }, + [ "minecraft:stone_slab:7" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:quartz_block:0", + [ 6 ] = "minecraft:quartz_block:0", + [ 7 ] = "minecraft:quartz_block:0", + }, + }, + [ "minecraft:iron_block:0" ] = { + ingredients = { + "minecraft:iron_ingot:0", + "minecraft:iron_ingot:0", + "minecraft:iron_ingot:0", + [ 9 ] = "minecraft:iron_ingot:0", + [ 10 ] = "minecraft:iron_ingot:0", + [ 11 ] = "minecraft:iron_ingot:0", + [ 5 ] = "minecraft:iron_ingot:0", + [ 6 ] = "minecraft:iron_ingot:0", + [ 7 ] = "minecraft:iron_ingot:0", + }, + count = 1, + }, + [ "minecraft:dark_oak_fence:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:5", + "minecraft:stick:0", + "minecraft:planks:5", + [ 5 ] = "minecraft:planks:5", + [ 6 ] = "minecraft:stick:0", + [ 7 ] = "minecraft:planks:5", + }, + }, + [ "minecraft:wool:0" ] = { + ingredients = { + "minecraft:string:0", + "minecraft:string:0", + [ 5 ] = "minecraft:string:0", + [ 6 ] = "minecraft:string:0", + }, + count = 1, + }, + [ "minecraft:stained_hardened_clay:4" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:11", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:cobblestone_wall:0" ] = { + count = 6, + ingredients = { + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + [ 5 ] = "minecraft:cobblestone:0", + [ 6 ] = "minecraft:cobblestone:0", + [ 7 ] = "minecraft:cobblestone:0", + }, + }, + [ "minecraft:wool:6" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:wool:0", + [ 6 ] = "minecraft:dye:9", + }, + }, + [ "minecraft:carpet:10" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:10", + [ 6 ] = "minecraft:wool:10", + }, + }, + [ "minecraft:dark_oak_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:planks:5", + [ 9 ] = "minecraft:planks:5", + [ 10 ] = "minecraft:planks:5", + [ 11 ] = "minecraft:planks:5", + [ 5 ] = "minecraft:planks:5", + [ 6 ] = "minecraft:planks:5", + }, + }, + [ "minecraft:ender_eye:0" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:blaze_powder:0", + [ 6 ] = "minecraft:ender_pearl:0", + }, + }, + [ "minecraft:carpet:11" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:11", + [ 6 ] = "minecraft:wool:11", + }, + }, + [ "minecraft:iron_door:0" ] = { + count = 3, + ingredients = { + "minecraft:iron_ingot:0", + "minecraft:iron_ingot:0", + [ 9 ] = "minecraft:iron_ingot:0", + [ 10 ] = "minecraft:iron_ingot:0", + [ 5 ] = "minecraft:iron_ingot:0", + [ 6 ] = "minecraft:iron_ingot:0", + }, + }, + [ "minecraft:stained_hardened_clay:11" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:4", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:planks:3" ] = { + count = 4, + ingredients = { + [ 6 ] = "minecraft:log:3", + }, + }, + [ "minecraft:stonebrick:3" ] = { + count = 1, + ingredients = { + [ 2 ] = "minecraft:stone_slab:5", + [ 6 ] = "minecraft:stone_slab:5", + }, + }, + [ "minecraft:planks:2" ] = { + count = 4, + ingredients = { + [ 6 ] = "minecraft:log:2", + }, + }, + [ "minecraft:wooden_door:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + [ 9 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:dye:14" ] = { + count = 2, + ingredients = { + [ 5 ] = "minecraft:dye:1", + [ 6 ] = "minecraft:dye:11", + }, + }, + [ "minecraft:carpet:4" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:4", + [ 6 ] = "minecraft:wool:4", + }, + }, + [ "minecraft:diamond_pickaxe:0" ] = { + count = 1, + ingredients = { + "minecraft:diamond:0", + "minecraft:diamond:0", + "minecraft:diamond:0", + [ 6 ] = "minecraft:stick:0", + [ 10 ] = "minecraft:stick:0", + }, + maxCount = 1, + }, + [ "minecraft:stained_hardened_clay:7" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:8", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:heavy_weighted_pressure_plate:0" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:iron_ingot:0", + [ 6 ] = "minecraft:iron_ingot:0", + }, + }, + [ "minecraft:stone_button:0" ] = { + count = 1, + ingredients = { + [ 6 ] = "minecraft:stone:0", + }, + }, + [ "minecraft:dye:5" ] = { + count = 2, + ingredients = { + [ 5 ] = "minecraft:dye:1", + [ 6 ] = "minecraft:dye:4", + }, + }, + [ "minecraft:stained_glass_pane:1" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:1", + "minecraft:stained_glass:1", + "minecraft:stained_glass:1", + [ 5 ] = "minecraft:stained_glass:1", + [ 6 ] = "minecraft:stained_glass:1", + [ 7 ] = "minecraft:stained_glass:1", + }, + }, + [ "minecraft:chest:0" ] = { + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + [ 9 ] = "minecraft:planks:0", + [ 10 ] = "minecraft:planks:0", + [ 11 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 7 ] = "minecraft:planks:0", + }, + count = 1, + }, + [ "minecraft:iron_pickaxe:0" ] = { + count = 1, + ingredients = { + "minecraft:iron_ingot:0", + "minecraft:iron_ingot:0", + "minecraft:iron_ingot:0", + [ 6 ] = "minecraft:stick:0", + [ 10 ] = "minecraft:stick:0", + }, + maxCount = 1, + }, + [ "minecraft:iron_trapdoor:0" ] = { + count = 1, + ingredients = { + "minecraft:iron_ingot:0", + "minecraft:iron_ingot:0", + [ 5 ] = "minecraft:iron_ingot:0", + [ 6 ] = "minecraft:iron_ingot:0", + }, + }, + [ "minecraft:stained_glass:15" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:0", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:wool:4" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:dye:11", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:wool:14" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:wool:0", + [ 6 ] = "minecraft:dye:1", + }, + }, + [ "minecraft:wool:11" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:wool:0", + [ 6 ] = "minecraft:dye:4", + }, + }, + [ "minecraft:pumpkin_seeds:0" ] = { + count = 4, + ingredients = { + [ 6 ] = "minecraft:pumpkin:0", + }, + }, + [ "minecraft:stained_glass:12" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:3", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:sticky_piston:0" ] = { + ingredients = { + "minecraft:slime_ball:0", + [ 5 ] = "minecraft:piston:0", + }, + count = 1, + }, + [ "minecraft:spruce_fence:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:1", + "minecraft:stick:0", + "minecraft:planks:1", + [ 5 ] = "minecraft:planks:1", + [ 6 ] = "minecraft:stick:0", + [ 7 ] = "minecraft:planks:1", + }, + }, + [ "minecraft:red_sandstone:0" ] = { + count = 1, + ingredients = { + "minecraft:sand:1", + "minecraft:sand:1", + [ 5 ] = "minecraft:sand:1", + [ 6 ] = "minecraft:sand:1", + }, + }, + [ "minecraft:dye:12" ] = { + count = 2, + ingredients = { + [ 5 ] = "minecraft:dye:4", + [ 6 ] = "minecraft:dye:15", + }, + }, + [ "minecraft:stone_brick_stairs:0" ] = { + count = 8, + ingredients = { + "minecraft:stonebrick:0", + [ 9 ] = "minecraft:stonebrick:0", + [ 10 ] = "minecraft:stonebrick:0", + [ 11 ] = "minecraft:stonebrick:0", + [ 5 ] = "minecraft:stonebrick:0", + [ 6 ] = "minecraft:stonebrick:0", + }, + }, + [ "minecraft:bone_block:0" ] = { + count = 1, + ingredients = { + "minecraft:dye:15", + "minecraft:dye:15", + "minecraft:dye:15", + [ 9 ] = "minecraft:dye:15", + [ 10 ] = "minecraft:dye:15", + [ 11 ] = "minecraft:dye:15", + [ 5 ] = "minecraft:dye:15", + [ 6 ] = "minecraft:dye:15", + [ 7 ] = "minecraft:dye:15", + }, + }, + [ "minecraft:stone_pressure_plate:0" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:stone:0", + [ 6 ] = "minecraft:stone:0", + }, + }, + [ "minecraft:wool:5" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:wool:0", + [ 6 ] = "minecraft:dye:10", + }, + }, + [ "minecraft:dye:1" ] = { + count = 1, + ingredients = { + [ 6 ] = "minecraft:red_flower:0", + }, + }, + [ "minecraft:spruce_fence_gate:0" ] = { + count = 1, + ingredients = { + "minecraft:stick:0", + "minecraft:planks:1", + "minecraft:stick:0", + [ 5 ] = "minecraft:stick:0", + [ 6 ] = "minecraft:planks:1", + [ 7 ] = "minecraft:stick:0", + }, + }, + [ "minecraft:stained_hardened_clay:15" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:0", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:jungle_fence_gate:0" ] = { + count = 1, + ingredients = { + "minecraft:stick:0", + "minecraft:planks:3", + "minecraft:stick:0", + [ 5 ] = "minecraft:stick:0", + [ 6 ] = "minecraft:planks:3", + [ 7 ] = "minecraft:stick:0", + }, + }, + [ "minecraft:wool:8" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:wool:0", + [ 6 ] = "minecraft:dye:7", + }, + }, + [ "minecraft:carpet:12" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:12", + [ 6 ] = "minecraft:wool:12", + }, + }, + [ "minecraft:diamond_block:0" ] = { + count = 1, + ingredients = { + "minecraft:diamond:0", + "minecraft:diamond:0", + "minecraft:diamond:0", + [ 9 ] = "minecraft:diamond:0", + [ 10 ] = "minecraft:diamond:0", + [ 11 ] = "minecraft:diamond:0", + [ 5 ] = "minecraft:diamond:0", + [ 6 ] = "minecraft:diamond:0", + [ 7 ] = "minecraft:diamond:0", + }, + }, + [ "minecraft:dye:11" ] = { + count = 1, + ingredients = { + [ 6 ] = "minecraft:yellow_flower:0", + }, + }, + [ "minecraft:acacia_door:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:4", + "minecraft:planks:4", + [ 9 ] = "minecraft:planks:4", + [ 10 ] = "minecraft:planks:4", + [ 5 ] = "minecraft:planks:4", + [ 6 ] = "minecraft:planks:4", + }, + }, + [ "minecraft:planks:5" ] = { + count = 4, + ingredients = { + [ 6 ] = "minecraft:log2:1", + }, + }, + [ "minecraft:stained_glass_pane:11" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:11", + "minecraft:stained_glass:11", + "minecraft:stained_glass:11", + [ 5 ] = "minecraft:stained_glass:11", + [ 6 ] = "minecraft:stained_glass:11", + [ 7 ] = "minecraft:stained_glass:11", + }, + }, + [ "minecraft:stained_glass_pane:14" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:14", + "minecraft:stained_glass:14", + "minecraft:stained_glass:14", + [ 5 ] = "minecraft:stained_glass:14", + [ 6 ] = "minecraft:stained_glass:14", + [ 7 ] = "minecraft:stained_glass:14", + }, + }, + [ "minecraft:planks:0" ] = { + ingredients = { + "minecraft:log:0", + }, + count = 4, + }, + [ "minecraft:tripwire_hook:0" ] = { + count = 2, + ingredients = { + "minecraft:iron_ingot:0", + [ 9 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:stick:0", + }, + }, + [ "minecraft:stained_hardened_clay:3" ] = { + count = 8, + ingredients = { + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + "minecraft:hardened_clay:0", + [ 9 ] = "minecraft:hardened_clay:0", + [ 10 ] = "minecraft:hardened_clay:0", + [ 11 ] = "minecraft:hardened_clay:0", + [ 5 ] = "minecraft:hardened_clay:0", + [ 6 ] = "minecraft:dye:12", + [ 7 ] = "minecraft:hardened_clay:0", + }, + }, + [ "minecraft:stained_glass_pane:5" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:5", + "minecraft:stained_glass:5", + "minecraft:stained_glass:5", + [ 5 ] = "minecraft:stained_glass:5", + [ 6 ] = "minecraft:stained_glass:5", + [ 7 ] = "minecraft:stained_glass:5", + }, + }, + [ "minecraft:cauldron:0" ] = { + ingredients = { + "minecraft:iron_ingot:0", + [ 9 ] = "minecraft:iron_ingot:0", + [ 10 ] = "minecraft:iron_ingot:0", + [ 11 ] = "minecraft:iron_ingot:0", + [ 3 ] = "minecraft:iron_ingot:0", + [ 5 ] = "minecraft:iron_ingot:0", + [ 7 ] = "minecraft:iron_ingot:0", + }, + count = 1, + }, + [ "minecraft:wool:3" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:dye:12", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:purpur_block:0" ] = { + count = 4, + ingredients = { + "minecraft:chorus_fruit_popped:0", + "minecraft:chorus_fruit_popped:0", + [ 5 ] = "minecraft:chorus_fruit_popped:0", + [ 6 ] = "minecraft:chorus_fruit_popped:0", + }, + }, + [ "minecraft:redstone_block:0" ] = { + count = 1, + ingredients = { + "minecraft:redstone:0", + "minecraft:redstone:0", + "minecraft:redstone:0", + [ 9 ] = "minecraft:redstone:0", + [ 10 ] = "minecraft:redstone:0", + [ 11 ] = "minecraft:redstone:0", + [ 5 ] = "minecraft:redstone:0", + [ 6 ] = "minecraft:redstone:0", + [ 7 ] = "minecraft:redstone:0", + }, + }, + [ "minecraft:sandstone:0" ] = { + count = 1, + ingredients = { + "minecraft:sand:0", + "minecraft:sand:0", + [ 5 ] = "minecraft:sand:0", + [ 6 ] = "minecraft:sand:0", + }, + }, + [ "minecraft:wool:2" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:dye:13", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:stone:1" ] = { + count = 1, + ingredients = { + "minecraft:stone:3", + "minecraft:quartz:0", + }, + }, + [ "minecraft:stone_slab:6" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:nether_brick:0", + [ 6 ] = "minecraft:nether_brick:0", + [ 7 ] = "minecraft:nether_brick:0", + }, + }, + [ "minecraft:dye:8" ] = { + count = 2, + ingredients = { + [ 5 ] = "minecraft:dye:15", + [ 6 ] = "minecraft:dye:0", + }, + }, + [ "minecraft:dark_oak_door:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:5", + "minecraft:planks:5", + [ 9 ] = "minecraft:planks:5", + [ 10 ] = "minecraft:planks:5", + [ 5 ] = "minecraft:planks:5", + [ 6 ] = "minecraft:planks:5", + }, + }, + [ "minecraft:carpet:1" ] = { + count = 3, + ingredients = { + "minecraft:wool:1", + "minecraft:wool:1", + }, + }, + [ "minecraft:bed:0" ] = { + count = 1, + ingredients = { + "minecraft:wool:0", + "minecraft:wool:0", + "minecraft:wool:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:planks:0", + [ 7 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:redstone_torch:0" ] = { + ingredients = { + "minecraft:redstone:0", + [ 5 ] = "minecraft:stick:0", + }, + count = 1, + }, + [ "minecraft:fence:0" ] = { + count = 3, + ingredients = { + "minecraft:planks:0", + "minecraft:stick:0", + "minecraft:planks:0", + [ 5 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:stick:0", + [ 7 ] = "minecraft:planks:0", + }, + }, + [ "minecraft:stone:5" ] = { + count = 2, + ingredients = { + "minecraft:stone:3", + "minecraft:cobblestone:0", + }, + }, + [ "minecraft:stone:2" ] = { + count = 4, + ingredients = { + "minecraft:stone:1", + "minecraft:stone:1", + [ 5 ] = "minecraft:stone:1", + [ 6 ] = "minecraft:stone:1", + }, + }, + [ "minecraft:anvil:0" ] = { + ingredients = { + "minecraft:iron_block:0", + "minecraft:iron_block:0", + "minecraft:iron_block:0", + [ 9 ] = "minecraft:iron_ingot:0", + [ 10 ] = "minecraft:iron_ingot:0", + [ 11 ] = "minecraft:iron_ingot:0", + [ 6 ] = "minecraft:iron_ingot:0", + }, + count = 1, + }, + [ "minecraft:stained_glass_pane:10" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:10", + "minecraft:stained_glass:10", + "minecraft:stained_glass:10", + [ 5 ] = "minecraft:stained_glass:10", + [ 6 ] = "minecraft:stained_glass:10", + [ 7 ] = "minecraft:stained_glass:10", + }, + }, + [ "minecraft:dye:13" ] = { + count = 3, + ingredients = { + "minecraft:dye:4", + "minecraft:dye:1", + [ 5 ] = "minecraft:dye:9", + }, + }, + [ "minecraft:stained_glass_pane:12" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:12", + "minecraft:stained_glass:12", + "minecraft:stained_glass:12", + [ 5 ] = "minecraft:stained_glass:12", + [ 6 ] = "minecraft:stained_glass:12", + [ 7 ] = "minecraft:stained_glass:12", + }, + }, + [ "minecraft:stained_glass:8" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:7", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:stained_glass_pane:2" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:2", + "minecraft:stained_glass:2", + "minecraft:stained_glass:2", + [ 5 ] = "minecraft:stained_glass:2", + [ 6 ] = "minecraft:stained_glass:2", + [ 7 ] = "minecraft:stained_glass:2", + }, + }, + [ "minecraft:banner:0" ] = { + count = 1, + ingredients = { + "minecraft:wool:15", + "minecraft:wool:15", + "minecraft:wool:15", + [ 7 ] = "minecraft:wool:15", + [ 10 ] = "minecraft:stick:0", + [ 5 ] = "minecraft:wool:15", + [ 6 ] = "minecraft:wool:15", + }, + }, + [ "minecraft:stained_glass:6" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:9", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:planks:1" ] = { + count = 4, + ingredients = { + [ 6 ] = "minecraft:log:1", + }, + }, + [ "minecraft:quartz_block:1" ] = { + count = 1, + ingredients = { + [ 2 ] = "minecraft:stone_slab:7", + [ 6 ] = "minecraft:stone_slab:7", + }, + }, + [ "minecraft:stone_slab:3" ] = { + ingredients = { + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + "minecraft:cobblestone:0", + }, + count = 6, + }, + [ "minecraft:carpet:13" ] = { + count = 3, + ingredients = { + [ 5 ] = "minecraft:wool:13", + [ 6 ] = "minecraft:wool:13", + }, + }, + [ "minecraft:nether_brick_fence:0" ] = { + count = 6, + ingredients = { + "minecraft:nether_brick:0", + "minecraft:nether_brick:0", + "minecraft:nether_brick:0", + [ 5 ] = "minecraft:nether_brick:0", + [ 6 ] = "minecraft:nether_brick:0", + [ 7 ] = "minecraft:nether_brick:0", + }, + }, + [ "minecraft:wool:9" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:dye:6", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:wool:1" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:dye:14", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:wooden_slab:0" ] = { + ingredients = { + "minecraft:planks:0", + "minecraft:planks:0", + "minecraft:planks:0", + }, + count = 6, + }, + [ "minecraft:flower_pot:0" ] = { + count = 1, + ingredients = { + "minecraft:brick:0", + [ 6 ] = "minecraft:brick:0", + [ 3 ] = "minecraft:brick:0", + }, + }, + [ "minecraft:wool:12" ] = { + count = 1, + ingredients = { + [ 5 ] = "minecraft:dye:3", + [ 6 ] = "minecraft:wool:0", + }, + }, + [ "minecraft:mossy_cobblestone:0" ] = { + count = 1, + ingredients = { + "minecraft:cobblestone:0", + "minecraft:vine:0", + }, + }, + [ "minecraft:stonebrick:0" ] = { + count = 4, + ingredients = { + "minecraft:stone:0", + "minecraft:stone:0", + [ 5 ] = "minecraft:stone:0", + [ 6 ] = "minecraft:stone:0", + }, + }, + [ "minecraft:blaze_powder:0" ] = { + count = 2, + ingredients = { + "minecraft:blaze_rod:0", + }, + }, + [ "minecraft:end_rod:0" ] = { + count = 4, + ingredients = { + [ 2 ] = "minecraft:blaze_rod:0", + [ 6 ] = "minecraft:chorus_fruit_popped:0", + }, + }, + [ "minecraft:stained_glass:9" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:6", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:stained_glass:7" ] = { + count = 8, + ingredients = { + "minecraft:glass:0", + "minecraft:glass:0", + "minecraft:glass:0", + [ 9 ] = "minecraft:glass:0", + [ 10 ] = "minecraft:glass:0", + [ 11 ] = "minecraft:glass:0", + [ 5 ] = "minecraft:glass:0", + [ 6 ] = "minecraft:dye:8", + [ 7 ] = "minecraft:glass:0", + }, + }, + [ "minecraft:brick_block:0" ] = { + count = 1, + ingredients = { + "minecraft:brick:0", + "minecraft:brick:0", + [ 5 ] = "minecraft:brick:0", + [ 6 ] = "minecraft:brick:0", + }, + }, + [ "minecraft:repeater:0" ] = { + count = 1, + ingredients = { + "minecraft:redstone_torch:0", + "minecraft:redstone:0", + "minecraft:redstone_torch:0", + [ 5 ] = "minecraft:stone:0", + [ 6 ] = "minecraft:stone:0", + [ 7 ] = "minecraft:stone:0", + }, + }, + [ "minecraft:quartz_block:0" ] = { + count = 1, + ingredients = { + "minecraft:quartz:0", + "minecraft:quartz:0", + [ 5 ] = "minecraft:quartz:0", + [ 6 ] = "minecraft:quartz:0", + }, + }, + [ "minecraft:stained_glass_pane:0" ] = { + count = 16, + ingredients = { + "minecraft:stained_glass:0", + "minecraft:stained_glass:0", + "minecraft:stained_glass:0", + [ 5 ] = "minecraft:stained_glass:0", + [ 6 ] = "minecraft:stained_glass:0", + [ 7 ] = "minecraft:stained_glass:0", + }, + }, + [ "minecraft:wooden_slab:5" ] = { + count = 6, + ingredients = { + [ 5 ] = "minecraft:planks:5", + [ 6 ] = "minecraft:planks:5", + [ 7 ] = "minecraft:planks:5", + }, + }, + }, +} \ No newline at end of file -- 2.49.1 From 36abdd5d0c305d83b94e2348e139ab59accfd9c7 Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Thu, 29 Dec 2022 09:13:09 +0400 Subject: [PATCH 05/26] second try --- recipeBook/etc/recipes/minecraft.db | 2770 +++++++++++++-------------- 1 file changed, 1385 insertions(+), 1385 deletions(-) diff --git a/recipeBook/etc/recipes/minecraft.db b/recipeBook/etc/recipes/minecraft.db index 14dac3f..68b1cd9 100644 --- a/recipeBook/etc/recipes/minecraft.db +++ b/recipeBook/etc/recipes/minecraft.db @@ -2,2328 +2,2328 @@ name = "Minecraft", version = "", recipes = { - [ "minecraft:jukebox:0" ] = { + [ "minecraft:jukebox" ] = { count = 1, ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:diamond:0", + "minecraft:planks", + "minecraft:planks", + "minecraft:planks", + [ 7 ] = "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:diamond", }, }, - [ "minecraft:flint_and_steel:0" ] = { + [ "minecraft:flint_and_steel" ] = { count = 1, ingredients = { - "minecraft:flint:0", - "minecraft:iron_ingot:0", + "minecraft:flint", + "minecraft:iron_ingot", }, maxCount = 1, }, - [ "minecraft:glass_bottle:0" ] = { + [ "minecraft:glass_bottle" ] = { ingredients = { - "minecraft:glass:0", - [ 6 ] = "minecraft:glass:0", - [ 3 ] = "minecraft:glass:0", + "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", }, count = 3, }, - [ "minecraft:writable_book:0" ] = { + [ "minecraft:writable_book" ] = { ingredients = { - "minecraft:book:0", - "minecraft:dye:0", - "minecraft:feather:0", + "minecraft:book", + "minecraft:dye", + "minecraft:feather", }, count = 1, }, - [ "minecraft:carpet:8" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:8", - [ 6 ] = "minecraft:wool:8", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:wooden_slab:4" ] = { + [ "minecraft:wooden_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:planks:4", - [ 6 ] = "minecraft:planks:4", - [ 7 ] = "minecraft:planks:4", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:iron_bars:0" ] = { + [ "minecraft:iron_bars" ] = { ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", + "minecraft:iron_ingot", + "minecraft:iron_ingot", + "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", }, count = 16, }, - [ "minecraft:glass_pane:0" ] = { + [ "minecraft:glass_pane" ] = { ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:glass:0", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", }, count = 16, }, - [ "minecraft:stained_glass:5" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:10", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:carpet:9" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:9", - [ 6 ] = "minecraft:wool:9", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:brick_stairs:0" ] = { + [ "minecraft:brick_stairs" ] = { count = 4, ingredients = { - "minecraft:brick_block:0", - [ 9 ] = "minecraft:brick_block:0", - [ 10 ] = "minecraft:brick_block:0", - [ 11 ] = "minecraft:brick_block:0", - [ 5 ] = "minecraft:brick_block:0", - [ 6 ] = "minecraft:brick_block:0", + "minecraft:brick_block", + [ 9 ] = "minecraft:brick_block", + [ 10 ] = "minecraft:brick_block", + [ 11 ] = "minecraft:brick_block", + [ 5 ] = "minecraft:brick_block", + [ 6 ] = "minecraft:brick_block", }, }, - [ "minecraft:birch_fence_gate:0" ] = { + [ "minecraft:birch_fence_gate" ] = { count = 1, ingredients = { - "minecraft:stick:0", - "minecraft:planks:2", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:2", - [ 7 ] = "minecraft:stick:0", + "minecraft:stick", + "minecraft:planks", + "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:stick", }, }, - [ "minecraft:stone_slab:0" ] = { + [ "minecraft:stone_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:stone:0", - [ 7 ] = "minecraft:stone:0", + [ 5 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", + [ 7 ] = "minecraft:stone", }, }, - [ "minecraft:wool:10" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:dye:5", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:carpet:15" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:15", - [ 6 ] = "minecraft:wool:15", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:stained_glass_pane:6" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:6", - "minecraft:stained_glass:6", - "minecraft:stained_glass:6", - [ 5 ] = "minecraft:stained_glass:6", - [ 6 ] = "minecraft:stained_glass:6", - [ 7 ] = "minecraft:stained_glass:6", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:wooden_button:0" ] = { + [ "minecraft:wooden_button" ] = { count = 1, ingredients = { - [ 6 ] = "minecraft:planks:0", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:jungle_stairs:0" ] = { + [ "minecraft:jungle_stairs" ] = { count = 4, ingredients = { - "minecraft:planks:3", - [ 9 ] = "minecraft:planks:3", - [ 10 ] = "minecraft:planks:3", - [ 11 ] = "minecraft:planks:3", - [ 5 ] = "minecraft:planks:3", - [ 6 ] = "minecraft:planks:3", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:dye:9" ] = { + [ "minecraft:dye" ] = { count = 2, ingredients = { - [ 5 ] = "minecraft:dye:1", - [ 6 ] = "minecraft:dye:15", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:end_bricks:0" ] = { + [ "minecraft:end_bricks" ] = { count = 4, ingredients = { - "minecraft:end_stone:0", - "minecraft:end_stone:0", - [ 5 ] = "minecraft:end_stone:0", - [ 6 ] = "minecraft:end_stone:0", + "minecraft:end_stone", + "minecraft:end_stone", + [ 5 ] = "minecraft:end_stone", + [ 6 ] = "minecraft:end_stone", }, }, - [ "minecraft:stained_hardened_clay:9" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:6", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:sign:0" ] = { + [ "minecraft:sign" ] = { count = 3, ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", + "minecraft:planks", + "minecraft:planks", + "minecraft:planks", + [ 7 ] = "minecraft:planks", + [ 10 ] = "minecraft:stick", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:wool:15" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:dye:0", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:stained_hardened_clay:8" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:7", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:dye:7" ] = { + [ "minecraft:dye" ] = { count = 3, ingredients = { - "minecraft:dye:15", - "minecraft:dye:15", - [ 5 ] = "minecraft:dye:0", + "minecraft:dye", + "minecraft:dye", + [ 5 ] = "minecraft:dye", }, }, - [ "minecraft:snow_layer:0" ] = { + [ "minecraft:snow_layer" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:snow:0", - [ 6 ] = "minecraft:snow:0", - [ 7 ] = "minecraft:snow:0", + [ 5 ] = "minecraft:snow", + [ 6 ] = "minecraft:snow", + [ 7 ] = "minecraft:snow", }, }, - [ "minecraft:furnace:0" ] = { + [ "minecraft:furnace" ] = { count = 1, ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", + "minecraft:cobblestone", + "minecraft:cobblestone", + "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:cobblestone", + [ 11 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", }, }, - [ "minecraft:carpet:0" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:stained_glass:1" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:14", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:carpet:14" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - "minecraft:wool:14", - "minecraft:wool:14", + "minecraft:wool", + "minecraft:wool", }, }, - [ "minecraft:wooden_slab:2" ] = { + [ "minecraft:wooden_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:planks:2", - [ 6 ] = "minecraft:planks:2", - [ 7 ] = "minecraft:planks:2", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:carpet:2" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:2", - [ 6 ] = "minecraft:wool:2", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:prismarine:1" ] = { + [ "minecraft:prismarine" ] = { count = 1, ingredients = { - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - [ 9 ] = "minecraft:prismarine_shard:0", - [ 10 ] = "minecraft:prismarine_shard:0", - [ 11 ] = "minecraft:prismarine_shard:0", - [ 5 ] = "minecraft:prismarine_shard:0", - [ 6 ] = "minecraft:prismarine_shard:0", - [ 7 ] = "minecraft:prismarine_shard:0", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + [ 9 ] = "minecraft:prismarine_shard", + [ 10 ] = "minecraft:prismarine_shard", + [ 11 ] = "minecraft:prismarine_shard", + [ 5 ] = "minecraft:prismarine_shard", + [ 6 ] = "minecraft:prismarine_shard", + [ 7 ] = "minecraft:prismarine_shard", }, }, - [ "minecraft:birch_door:0" ] = { + [ "minecraft:birch_door" ] = { count = 3, ingredients = { - "minecraft:planks:2", - "minecraft:planks:2", - [ 9 ] = "minecraft:planks:2", - [ 10 ] = "minecraft:planks:2", - [ 5 ] = "minecraft:planks:2", - [ 6 ] = "minecraft:planks:2", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:comparator:0" ] = { + [ "minecraft:comparator" ] = { count = 1, ingredients = { - [ 10 ] = "minecraft:stone:0", - [ 11 ] = "minecraft:stone:0", - [ 2 ] = "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:redstone_torch:0", - [ 6 ] = "minecraft:quartz:0", - [ 7 ] = "minecraft:redstone_torch:0", - [ 9 ] = "minecraft:stone:0", + [ 10 ] = "minecraft:stone", + [ 11 ] = "minecraft:stone", + [ 2 ] = "minecraft:redstone_torch", + [ 5 ] = "minecraft:redstone_torch", + [ 6 ] = "minecraft:quartz", + [ 7 ] = "minecraft:redstone_torch", + [ 9 ] = "minecraft:stone", }, }, - [ "minecraft:wooden_slab:3" ] = { + [ "minecraft:wooden_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:planks:3", - [ 6 ] = "minecraft:planks:3", - [ 7 ] = "minecraft:planks:3", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:sandstone:1" ] = { + [ "minecraft:sandstone" ] = { count = 1, ingredients = { - [ 2 ] = "minecraft:stone_slab:1", - [ 6 ] = "minecraft:stone_slab:1", + [ 2 ] = "minecraft:stone_slab", + [ 6 ] = "minecraft:stone_slab", }, }, - [ "minecraft:noteblock:0" ] = { + [ "minecraft:noteblock" ] = { count = 1, ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:planks:0", + "minecraft:planks", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:redstone", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:coal_block:0" ] = { + [ "minecraft:coal_block" ] = { count = 1, ingredients = { - "minecraft:coal:0", - "minecraft:coal:0", - "minecraft:coal:0", - [ 9 ] = "minecraft:coal:0", - [ 10 ] = "minecraft:coal:0", - [ 11 ] = "minecraft:coal:0", - [ 5 ] = "minecraft:coal:0", - [ 6 ] = "minecraft:coal:0", - [ 7 ] = "minecraft:coal:0", + "minecraft:coal", + "minecraft:coal", + "minecraft:coal", + [ 9 ] = "minecraft:coal", + [ 10 ] = "minecraft:coal", + [ 11 ] = "minecraft:coal", + [ 5 ] = "minecraft:coal", + [ 6 ] = "minecraft:coal", + [ 7 ] = "minecraft:coal", }, }, - [ "minecraft:stained_glass_pane:4" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:4", - "minecraft:stained_glass:4", - "minecraft:stained_glass:4", - [ 5 ] = "minecraft:stained_glass:4", - [ 6 ] = "minecraft:stained_glass:4", - [ 7 ] = "minecraft:stained_glass:4", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:stained_glass:11" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:4", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:clock:0" ] = { + [ "minecraft:clock" ] = { count = 1, ingredients = { - [ 10 ] = "minecraft:gold_ingot:0", - [ 2 ] = "minecraft:gold_ingot:0", - [ 5 ] = "minecraft:gold_ingot:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:gold_ingot:0", + [ 10 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:redstone", + [ 7 ] = "minecraft:gold_ingot", }, }, - [ "minecraft:stained_glass:3" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:12", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:acacia_fence_gate:0" ] = { + [ "minecraft:acacia_fence_gate" ] = { count = 1, ingredients = { - "minecraft:stick:0", - "minecraft:planks:4", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:4", - [ 7 ] = "minecraft:stick:0", + "minecraft:stick", + "minecraft:planks", + "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:stick", }, }, - [ "minecraft:wooden_pressure_plate:0" ] = { + [ "minecraft:wooden_pressure_plate" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:stained_glass_pane:9" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:9", - "minecraft:stained_glass:9", - "minecraft:stained_glass:9", - [ 5 ] = "minecraft:stained_glass:9", - [ 6 ] = "minecraft:stained_glass:9", - [ 7 ] = "minecraft:stained_glass:9", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:ladder:0" ] = { + [ "minecraft:ladder" ] = { count = 3, ingredients = { - "minecraft:stick:0", - [ 9 ] = "minecraft:stick:0", - [ 11 ] = "minecraft:stick:0", - [ 3 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:stick:0", + "minecraft:stick", + [ 9 ] = "minecraft:stick", + [ 11 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", }, }, - [ "minecraft:enchanting_table:0" ] = { + [ "minecraft:enchanting_table" ] = { count = 1, ingredients = { - [ 10 ] = "minecraft:obsidian:0", - [ 11 ] = "minecraft:obsidian:0", - [ 2 ] = "minecraft:book:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "minecraft:obsidian:0", - [ 7 ] = "minecraft:diamond:0", - [ 9 ] = "minecraft:obsidian:0", + [ 10 ] = "minecraft:obsidian", + [ 11 ] = "minecraft:obsidian", + [ 2 ] = "minecraft:book", + [ 5 ] = "minecraft:diamond", + [ 6 ] = "minecraft:obsidian", + [ 7 ] = "minecraft:diamond", + [ 9 ] = "minecraft:obsidian", }, }, - [ "minecraft:torch:0" ] = { + [ "minecraft:torch" ] = { ingredients = { - "minecraft:coal:1", - [ 5 ] = "minecraft:stick:0", + "minecraft:coal", + [ 5 ] = "minecraft:stick", }, count = 4, }, - [ "minecraft:stick:0" ] = { + [ "minecraft:stick" ] = { ingredients = { - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", + "minecraft:planks", + [ 5 ] = "minecraft:planks", }, count = 4, }, - [ "minecraft:acacia_fence:0" ] = { + [ "minecraft:acacia_fence" ] = { count = 3, ingredients = { - "minecraft:planks:4", - "minecraft:stick:0", - "minecraft:planks:4", - [ 5 ] = "minecraft:planks:4", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:4", + "minecraft:planks", + "minecraft:stick", + "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:stick", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:stained_hardened_clay:12" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:3", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:spruce_door:0" ] = { + [ "minecraft:spruce_door" ] = { count = 3, ingredients = { - "minecraft:planks:1", - "minecraft:planks:1", - [ 9 ] = "minecraft:planks:1", - [ 10 ] = "minecraft:planks:1", - [ 5 ] = "minecraft:planks:1", - [ 6 ] = "minecraft:planks:1", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:quartz_block:2" ] = { + [ "minecraft:quartz_block" ] = { count = 2, ingredients = { - [ 2 ] = "minecraft:quartz_block:0", - [ 6 ] = "minecraft:quartz_block:0", + [ 2 ] = "minecraft:quartz_block", + [ 6 ] = "minecraft:quartz_block", }, }, - [ "minecraft:stone_slab:5" ] = { + [ "minecraft:stone_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:stonebrick:0", - [ 6 ] = "minecraft:stonebrick:0", - [ 7 ] = "minecraft:stonebrick:0", + [ 5 ] = "minecraft:stonebrick", + [ 6 ] = "minecraft:stonebrick", + [ 7 ] = "minecraft:stonebrick", }, }, - [ "minecraft:bow:0" ] = { + [ "minecraft:bow" ] = { count = 1, ingredients = { - "minecraft:string:0", - "minecraft:stick:0", - [ 7 ] = "minecraft:stick:0", - [ 9 ] = "minecraft:string:0", - [ 10 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:string:0", + "minecraft:string", + "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 9 ] = "minecraft:string", + [ 10 ] = "minecraft:stick", + [ 5 ] = "minecraft:string", }, }, - [ "minecraft:stained_glass_pane:3" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:3", - "minecraft:stained_glass:3", - "minecraft:stained_glass:3", - [ 5 ] = "minecraft:stained_glass:3", - [ 6 ] = "minecraft:stained_glass:3", - [ 7 ] = "minecraft:stained_glass:3", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:dye:6" ] = { + [ "minecraft:dye" ] = { count = 2, ingredients = { - [ 5 ] = "minecraft:dye:2", - [ 6 ] = "minecraft:dye:4", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:stained_glass_pane:7" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:7", - "minecraft:stained_glass:7", - "minecraft:stained_glass:7", - [ 5 ] = "minecraft:stained_glass:7", - [ 6 ] = "minecraft:stained_glass:7", - [ 7 ] = "minecraft:stained_glass:7", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:trapped_chest:0" ] = { + [ "minecraft:trapped_chest" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:chest:0", - [ 6 ] = "minecraft:tripwire_hook:0", + [ 5 ] = "minecraft:chest", + [ 6 ] = "minecraft:tripwire_hook", }, }, - [ "minecraft:crafting_table:0" ] = { + [ "minecraft:crafting_table" ] = { count = 1, ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", + "minecraft:planks", + "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:dye:10" ] = { + [ "minecraft:dye" ] = { count = 2, ingredients = { - "minecraft:dye:15", - "minecraft:dye:2", + "minecraft:dye", + "minecraft:dye", }, }, - [ "minecraft:gold_nugget:0" ] = { + [ "minecraft:gold_nugget" ] = { count = 9, ingredients = { - "minecraft:gold_ingot:0", + "minecraft:gold_ingot", }, }, - [ "minecraft:prismarine:2" ] = { + [ "minecraft:prismarine" ] = { count = 1, ingredients = { - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - [ 9 ] = "minecraft:prismarine_shard:0", - [ 10 ] = "minecraft:prismarine_shard:0", - [ 11 ] = "minecraft:prismarine_shard:0", - [ 5 ] = "minecraft:prismarine_shard:0", - [ 6 ] = "minecraft:dye:0", - [ 7 ] = "minecraft:prismarine_shard:0", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + [ 9 ] = "minecraft:prismarine_shard", + [ 10 ] = "minecraft:prismarine_shard", + [ 11 ] = "minecraft:prismarine_shard", + [ 5 ] = "minecraft:prismarine_shard", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:prismarine_shard", }, }, - [ "minecraft:brewing_stand:0" ] = { + [ "minecraft:brewing_stand" ] = { count = 1, ingredients = { - [ 7 ] = "minecraft:cobblestone:0", - [ 2 ] = "minecraft:blaze_rod:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:cobblestone:0", + [ 7 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:blaze_rod", + [ 5 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", }, }, - [ "minecraft:beacon:0" ] = { + [ "minecraft:beacon" ] = { count = 1, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:obsidian:0", - [ 10 ] = "minecraft:obsidian:0", - [ 11 ] = "minecraft:obsidian:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:nether_star:0", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:obsidian", + [ 10 ] = "minecraft:obsidian", + [ 11 ] = "minecraft:obsidian", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:nether_star", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:fence_gate:0" ] = { + [ "minecraft:fence_gate" ] = { count = 1, ingredients = { - "minecraft:stick:0", - "minecraft:planks:0", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:stick:0", + "minecraft:stick", + "minecraft:planks", + "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:stick", }, }, - [ "minecraft:lever:0" ] = { + [ "minecraft:lever" ] = { count = 1, ingredients = { - [ 2 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:cobblestone:0", + [ 2 ] = "minecraft:stick", + [ 6 ] = "minecraft:cobblestone", }, }, - [ "minecraft:dispenser:0" ] = { + [ "minecraft:dispenser" ] = { count = 1, ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:bow:0", - [ 7 ] = "minecraft:cobblestone:0", + "minecraft:cobblestone", + "minecraft:cobblestone", + "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:redstone", + [ 11 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:bow", + [ 7 ] = "minecraft:cobblestone", }, }, - [ "minecraft:jungle_fence:0" ] = { + [ "minecraft:jungle_fence" ] = { count = 3, ingredients = { - "minecraft:planks:3", - "minecraft:stick:0", - "minecraft:planks:3", - [ 5 ] = "minecraft:planks:3", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:3", + "minecraft:planks", + "minecraft:stick", + "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:stick", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:redstone_lamp:0" ] = { + [ "minecraft:redstone_lamp" ] = { count = 1, ingredients = { - [ 10 ] = "minecraft:redstone:0", - [ 2 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "minecraft:glowstone:0", - [ 7 ] = "minecraft:redstone:0", + [ 10 ] = "minecraft:redstone", + [ 2 ] = "minecraft:redstone", + [ 5 ] = "minecraft:redstone", + [ 6 ] = "minecraft:glowstone", + [ 7 ] = "minecraft:redstone", }, }, - [ "minecraft:stone:3" ] = { + [ "minecraft:stone" ] = { count = 2, ingredients = { - "minecraft:quartz:0", - "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:quartz:0", + "minecraft:quartz", + "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:quartz", }, }, - [ "minecraft:sandstone:2" ] = { + [ "minecraft:sandstone" ] = { count = 4, ingredients = { - "minecraft:sandstone:0", - "minecraft:sandstone:0", - [ 5 ] = "minecraft:sandstone:0", - [ 6 ] = "minecraft:sandstone:0", + "minecraft:sandstone", + "minecraft:sandstone", + [ 5 ] = "minecraft:sandstone", + [ 6 ] = "minecraft:sandstone", }, }, - [ "minecraft:stone:6" ] = { + [ "minecraft:stone" ] = { count = 4, ingredients = { - "minecraft:stone:5", - "minecraft:stone:5", - [ 5 ] = "minecraft:stone:5", - [ 6 ] = "minecraft:stone:5", + "minecraft:stone", + "minecraft:stone", + [ 5 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", }, }, - [ "minecraft:carpet:3" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:3", - [ 6 ] = "minecraft:wool:3", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:planks:4" ] = { + [ "minecraft:planks" ] = { count = 4, ingredients = { - [ 6 ] = "minecraft:log2:0", + [ 6 ] = "minecraft:log2", }, }, - [ "minecraft:trapdoor:0" ] = { + [ "minecraft:trapdoor" ] = { count = 2, ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", + "minecraft:planks", + "minecraft:planks", + "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:light_weighted_pressure_plate:0" ] = { + [ "minecraft:light_weighted_pressure_plate" ] = { count = 1, ingredients = { - "minecraft:gold_ingot:0", - "minecraft:gold_ingot:0", + "minecraft:gold_ingot", + "minecraft:gold_ingot", }, }, - [ "minecraft:nether_brick_stairs:0" ] = { + [ "minecraft:nether_brick_stairs" ] = { count = 8, ingredients = { - "minecraft:nether_brick:0", - [ 9 ] = "minecraft:nether_brick:0", - [ 10 ] = "minecraft:nether_brick:0", - [ 11 ] = "minecraft:nether_brick:0", - [ 5 ] = "minecraft:nether_brick:0", - [ 6 ] = "minecraft:nether_brick:0", + "minecraft:nether_brick", + [ 9 ] = "minecraft:nether_brick", + [ 10 ] = "minecraft:nether_brick", + [ 11 ] = "minecraft:nether_brick", + [ 5 ] = "minecraft:nether_brick", + [ 6 ] = "minecraft:nether_brick", }, }, - [ "minecraft:sandstone_stairs:0" ] = { + [ "minecraft:sandstone_stairs" ] = { count = 8, ingredients = { - "minecraft:sandstone:0", - [ 9 ] = "minecraft:sandstone:0", - [ 10 ] = "minecraft:sandstone:0", - [ 11 ] = "minecraft:sandstone:0", - [ 5 ] = "minecraft:sandstone:0", - [ 6 ] = "minecraft:sandstone:0", + "minecraft:sandstone", + [ 9 ] = "minecraft:sandstone", + [ 10 ] = "minecraft:sandstone", + [ 11 ] = "minecraft:sandstone", + [ 5 ] = "minecraft:sandstone", + [ 6 ] = "minecraft:sandstone", }, }, - [ "minecraft:hay_block:0" ] = { + [ "minecraft:hay_block" ] = { count = 1, ingredients = { - "minecraft:wheat:0", - "minecraft:wheat:0", - "minecraft:wheat:0", - [ 9 ] = "minecraft:wheat:0", - [ 10 ] = "minecraft:wheat:0", - [ 11 ] = "minecraft:wheat:0", - [ 5 ] = "minecraft:wheat:0", - [ 6 ] = "minecraft:wheat:0", - [ 7 ] = "minecraft:wheat:0", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + [ 9 ] = "minecraft:wheat", + [ 10 ] = "minecraft:wheat", + [ 11 ] = "minecraft:wheat", + [ 5 ] = "minecraft:wheat", + [ 6 ] = "minecraft:wheat", + [ 7 ] = "minecraft:wheat", }, }, - [ "minecraft:birch_fence:0" ] = { + [ "minecraft:birch_fence" ] = { count = 3, ingredients = { - "minecraft:planks:2", - "minecraft:stick:0", - "minecraft:planks:2", - [ 5 ] = "minecraft:planks:2", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:2", + "minecraft:planks", + "minecraft:stick", + "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:stick", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:dropper:0" ] = { + [ "minecraft:dropper" ] = { count = 1, ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", + "minecraft:cobblestone", + "minecraft:cobblestone", + "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:redstone", + [ 11 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", }, }, - [ "minecraft:glowstone:0" ] = { + [ "minecraft:glowstone" ] = { ingredients = { - "minecraft:glowstone_dust:0", - "minecraft:glowstone_dust:0", - [ 5 ] = "minecraft:glowstone_dust:0", - [ 6 ] = "minecraft:glowstone_dust:0", + "minecraft:glowstone_dust", + "minecraft:glowstone_dust", + [ 5 ] = "minecraft:glowstone_dust", + [ 6 ] = "minecraft:glowstone_dust", }, count = 1, }, - [ "minecraft:ender_chest:0" ] = { + [ "minecraft:ender_chest" ] = { count = 1, 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 ] = "minecraft:ender_eye:0", - [ 7 ] = "minecraft:obsidian:0", + "minecraft:obsidian", + "minecraft:obsidian", + "minecraft:obsidian", + [ 9 ] = "minecraft:obsidian", + [ 10 ] = "minecraft:obsidian", + [ 11 ] = "minecraft:obsidian", + [ 5 ] = "minecraft:obsidian", + [ 6 ] = "minecraft:ender_eye", + [ 7 ] = "minecraft:obsidian", }, }, - [ "minecraft:stained_glass_pane:15" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:15", - "minecraft:stained_glass:15", - "minecraft:stained_glass:15", - [ 5 ] = "minecraft:stained_glass:15", - [ 6 ] = "minecraft:stained_glass:15", - [ 7 ] = "minecraft:stained_glass:15", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:carpet:5" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:5", - [ 6 ] = "minecraft:wool:5", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:stained_glass:4" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:11", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:stone:4" ] = { + [ "minecraft:stone" ] = { count = 4, ingredients = { - "minecraft:stone:3", - "minecraft:stone:3", - [ 5 ] = "minecraft:stone:3", - [ 6 ] = "minecraft:stone:3", + "minecraft:stone", + "minecraft:stone", + [ 5 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", }, }, - [ "minecraft:gold_block:0" ] = { + [ "minecraft:gold_block" ] = { count = 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 ] = "minecraft:gold_ingot:0", - [ 7 ] = "minecraft:gold_ingot:0", + "minecraft:gold_ingot", + "minecraft:gold_ingot", + "minecraft:gold_ingot", + [ 9 ] = "minecraft:gold_ingot", + [ 10 ] = "minecraft:gold_ingot", + [ 11 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", }, }, - [ "minecraft:stained_hardened_clay:13" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:2", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:jungle_door:0" ] = { + [ "minecraft:jungle_door" ] = { count = 3, ingredients = { - "minecraft:planks:3", - "minecraft:planks:3", - [ 9 ] = "minecraft:planks:3", - [ 10 ] = "minecraft:planks:3", - [ 5 ] = "minecraft:planks:3", - [ 6 ] = "minecraft:planks:3", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:sea_lantern:0" ] = { + [ "minecraft:sea_lantern" ] = { count = 1, ingredients = { - "minecraft:prismarine_shard:0", - "minecraft:prismarine_crystals:0", - "minecraft:prismarine_shard:0", - [ 9 ] = "minecraft:prismarine_shard:0", - [ 10 ] = "minecraft:prismarine_crystals:0", - [ 11 ] = "minecraft:prismarine_shard:0", - [ 5 ] = "minecraft:prismarine_crystals:0", - [ 6 ] = "minecraft:prismarine_crystals:0", - [ 7 ] = "minecraft:prismarine_crystals:0", + "minecraft:prismarine_shard", + "minecraft:prismarine_crystals", + "minecraft:prismarine_shard", + [ 9 ] = "minecraft:prismarine_shard", + [ 10 ] = "minecraft:prismarine_crystals", + [ 11 ] = "minecraft:prismarine_shard", + [ 5 ] = "minecraft:prismarine_crystals", + [ 6 ] = "minecraft:prismarine_crystals", + [ 7 ] = "minecraft:prismarine_crystals", }, }, - [ "minecraft:tnt:0" ] = { + [ "minecraft:tnt" ] = { count = 1, ingredients = { - "minecraft:gunpowder:0", - "minecraft:sand:0", - "minecraft:gunpowder:0", - [ 9 ] = "minecraft:gunpowder:0", - [ 10 ] = "minecraft:sand:0", - [ 11 ] = "minecraft:gunpowder:0", - [ 5 ] = "minecraft:sand:0", - [ 6 ] = "minecraft:gunpowder:0", - [ 7 ] = "minecraft:sand:0", + "minecraft:gunpowder", + "minecraft:sand", + "minecraft:gunpowder", + [ 9 ] = "minecraft:gunpowder", + [ 10 ] = "minecraft:sand", + [ 11 ] = "minecraft:gunpowder", + [ 5 ] = "minecraft:sand", + [ 6 ] = "minecraft:gunpowder", + [ 7 ] = "minecraft:sand", }, }, - [ "minecraft:oak_stairs:0" ] = { + [ "minecraft:oak_stairs" ] = { count = 8, ingredients = { - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:stained_hardened_clay:1" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:14", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:red_sandstone:2" ] = { + [ "minecraft:red_sandstone" ] = { count = 4, ingredients = { - "minecraft:red_sandstone:0", - "minecraft:red_sandstone:0", - [ 5 ] = "minecraft:red_sandstone:0", - [ 6 ] = "minecraft:red_sandstone:0", + "minecraft:red_sandstone", + "minecraft:red_sandstone", + [ 5 ] = "minecraft:red_sandstone", + [ 6 ] = "minecraft:red_sandstone", }, }, - [ "minecraft:stained_hardened_clay:0" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:15", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:spruce_stairs:0" ] = { + [ "minecraft:spruce_stairs" ] = { count = 8, ingredients = { - "minecraft:planks:1", - [ 9 ] = "minecraft:planks:1", - [ 10 ] = "minecraft:planks:1", - [ 11 ] = "minecraft:planks:1", - [ 5 ] = "minecraft:planks:1", - [ 6 ] = "minecraft:planks:1", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:piston:0" ] = { + [ "minecraft:piston" ] = { ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:cobblestone:0", + "minecraft:planks", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:redstone", + [ 11 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:cobblestone", }, count = 1, }, - [ "minecraft:acacia_stairs:0" ] = { + [ "minecraft:acacia_stairs" ] = { count = 8, ingredients = { - "minecraft:planks:4", - [ 9 ] = "minecraft:planks:4", - [ 10 ] = "minecraft:planks:4", - [ 11 ] = "minecraft:planks:4", - [ 5 ] = "minecraft:planks:4", - [ 6 ] = "minecraft:planks:4", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:bookshelf:0" ] = { + [ "minecraft:bookshelf" ] = { count = 1, ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:book:0", - [ 6 ] = "minecraft:book:0", - [ 7 ] = "minecraft:book:0", + "minecraft:planks", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:book", + [ 6 ] = "minecraft:book", + [ 7 ] = "minecraft:book", }, }, - [ "minecraft:birch_stairs:0" ] = { + [ "minecraft:birch_stairs" ] = { count = 8, ingredients = { - "minecraft:planks:2", - [ 9 ] = "minecraft:planks:2", - [ 10 ] = "minecraft:planks:2", - [ 11 ] = "minecraft:planks:2", - [ 5 ] = "minecraft:planks:2", - [ 6 ] = "minecraft:planks:2", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:stone_slab:1" ] = { + [ "minecraft:stone_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:sandstone:0", - [ 6 ] = "minecraft:sandstone:0", - [ 7 ] = "minecraft:sandstone:0", + [ 5 ] = "minecraft:sandstone", + [ 6 ] = "minecraft:sandstone", + [ 7 ] = "minecraft:sandstone", }, }, - [ "minecraft:wool:13" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:2", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:carpet:7" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:7", - [ 6 ] = "minecraft:wool:7", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:sugar:0" ] = { + [ "minecraft:sugar" ] = { count = 1, ingredients = { - [ 6 ] = "minecraft:reeds:0", + [ 6 ] = "minecraft:reeds", }, }, - [ "minecraft:stained_glass_pane:13" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:13", - "minecraft:stained_glass:13", - "minecraft:stained_glass:13", - [ 5 ] = "minecraft:stained_glass:13", - [ 6 ] = "minecraft:stained_glass:13", - [ 7 ] = "minecraft:stained_glass:13", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:emerald_block:0" ] = { + [ "minecraft:emerald_block" ] = { count = 1, ingredients = { - "minecraft:emerald:0", - "minecraft:emerald:0", - "minecraft:emerald:0", - [ 9 ] = "minecraft:emerald:0", - [ 10 ] = "minecraft:emerald:0", - [ 11 ] = "minecraft:emerald:0", - [ 5 ] = "minecraft:emerald:0", - [ 6 ] = "minecraft:emerald:0", - [ 7 ] = "minecraft:emerald:0", + "minecraft:emerald", + "minecraft:emerald", + "minecraft:emerald", + [ 9 ] = "minecraft:emerald", + [ 10 ] = "minecraft:emerald", + [ 11 ] = "minecraft:emerald", + [ 5 ] = "minecraft:emerald", + [ 6 ] = "minecraft:emerald", + [ 7 ] = "minecraft:emerald", }, }, - [ "minecraft:stained_glass:13" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:2", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:stone_slab:4" ] = { + [ "minecraft:stone_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:brick_block:0", - [ 6 ] = "minecraft:brick_block:0", - [ 7 ] = "minecraft:brick_block:0", + [ 5 ] = "minecraft:brick_block", + [ 6 ] = "minecraft:brick_block", + [ 7 ] = "minecraft:brick_block", }, }, - [ "minecraft:stained_glass_pane:8" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:8", - "minecraft:stained_glass:8", - "minecraft:stained_glass:8", - [ 5 ] = "minecraft:stained_glass:8", - [ 6 ] = "minecraft:stained_glass:8", - [ 7 ] = "minecraft:stained_glass:8", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:stone_stairs:0" ] = { + [ "minecraft:stone_stairs" ] = { count = 8, ingredients = { - "minecraft:cobblestone:0", - [ 9 ] = "minecraft:cobblestone:0", - [ 10 ] = "minecraft:cobblestone:0", - [ 11 ] = "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:cobblestone:0", + "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:cobblestone", + [ 11 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", }, }, - [ "minecraft:stained_glass:2" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:13", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:stained_hardened_clay:14" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:1", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:stained_glass:14" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:1", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:dark_oak_fence_gate:0" ] = { + [ "minecraft:dark_oak_fence_gate" ] = { count = 1, ingredients = { - "minecraft:stick:0", - "minecraft:planks:5", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:5", - [ 7 ] = "minecraft:stick:0", + "minecraft:stick", + "minecraft:planks", + "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:stick", }, }, - [ "minecraft:quartz_stairs:0" ] = { + [ "minecraft:quartz_stairs" ] = { count = 8, ingredients = { - "minecraft:quartz_block:0", - [ 9 ] = "minecraft:quartz_block:0", - [ 10 ] = "minecraft:quartz_block:0", - [ 11 ] = "minecraft:quartz_block:0", - [ 5 ] = "minecraft:quartz_block:0", - [ 6 ] = "minecraft:quartz_block:0", + "minecraft:quartz_block", + [ 9 ] = "minecraft:quartz_block", + [ 10 ] = "minecraft:quartz_block", + [ 11 ] = "minecraft:quartz_block", + [ 5 ] = "minecraft:quartz_block", + [ 6 ] = "minecraft:quartz_block", }, }, - [ "minecraft:dirt:1" ] = { + [ "minecraft:dirt" ] = { count = 4, ingredients = { - "minecraft:dirt:0", - "minecraft:gravel:0", - [ 5 ] = "minecraft:gravel:0", - [ 6 ] = "minecraft:dirt:0", + "minecraft:dirt", + "minecraft:gravel", + [ 5 ] = "minecraft:gravel", + [ 6 ] = "minecraft:dirt", }, }, - [ "minecraft:stained_hardened_clay:5" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:10", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:wooden_slab:1" ] = { + [ "minecraft:wooden_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:planks:1", - [ 6 ] = "minecraft:planks:1", - [ 7 ] = "minecraft:planks:1", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:stained_glass:10" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:5", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:hopper:0" ] = { + [ "minecraft:hopper" ] = { ingredients = { - "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 3 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:chest:0", - [ 7 ] = "minecraft:iron_ingot:0", + "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:chest", + [ 7 ] = "minecraft:iron_ingot", }, count = 1, }, - [ "minecraft:nether_brick:0" ] = { + [ "minecraft:nether_brick" ] = { count = 1, ingredients = { - "minecraft:netherbrick:0", - "minecraft:netherbrick:0", - [ 5 ] = "minecraft:netherbrick:0", - [ 6 ] = "minecraft:netherbrick:0", + "minecraft:netherbrick", + "minecraft:netherbrick", + [ 5 ] = "minecraft:netherbrick", + [ 6 ] = "minecraft:netherbrick", }, }, - [ "minecraft:lapis_block:0" ] = { + [ "minecraft:lapis_block" ] = { count = 1, ingredients = { - "minecraft:dye:4", - "minecraft:dye:4", - "minecraft:dye:4", - [ 9 ] = "minecraft:dye:4", - [ 10 ] = "minecraft:dye:4", - [ 11 ] = "minecraft:dye:4", - [ 5 ] = "minecraft:dye:4", - [ 6 ] = "minecraft:dye:4", - [ 7 ] = "minecraft:dye:4", + "minecraft:dye", + "minecraft:dye", + "minecraft:dye", + [ 9 ] = "minecraft:dye", + [ 10 ] = "minecraft:dye", + [ 11 ] = "minecraft:dye", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:dye", }, }, - [ "minecraft:carpet:6" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:6", - [ 6 ] = "minecraft:wool:6", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:prismarine:0" ] = { + [ "minecraft:prismarine" ] = { count = 1, ingredients = { - "minecraft:prismarine_shard:0", - "minecraft:prismarine_shard:0", - [ 5 ] = "minecraft:prismarine_shard:0", - [ 6 ] = "minecraft:prismarine_shard:0", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + [ 5 ] = "minecraft:prismarine_shard", + [ 6 ] = "minecraft:prismarine_shard", }, }, - [ "minecraft:snow:0" ] = { + [ "minecraft:snow" ] = { count = 1, ingredients = { - "minecraft:snowball:0", - "minecraft:snowball:0", - [ 5 ] = "minecraft:snowball:0", - [ 6 ] = "minecraft:snowball:0", + "minecraft:snowball", + "minecraft:snowball", + [ 5 ] = "minecraft:snowball", + [ 6 ] = "minecraft:snowball", }, }, - [ "minecraft:stained_glass:0" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:15", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:wool:7" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:8", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:purpur_slab:0" ] = { + [ "minecraft:purpur_slab" ] = { count = 6, ingredients = { - "minecraft:purpur_block:0", - "minecraft:purpur_block:0", - "minecraft:purpur_block:0", + "minecraft:purpur_block", + "minecraft:purpur_block", + "minecraft:purpur_block", }, }, - [ "minecraft:stone_slab:7" ] = { + [ "minecraft:stone_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:quartz_block:0", - [ 6 ] = "minecraft:quartz_block:0", - [ 7 ] = "minecraft:quartz_block:0", + [ 5 ] = "minecraft:quartz_block", + [ 6 ] = "minecraft:quartz_block", + [ 7 ] = "minecraft:quartz_block", }, }, - [ "minecraft:iron_block:0" ] = { + [ "minecraft:iron_block" ] = { ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", + "minecraft:iron_ingot", + "minecraft:iron_ingot", + "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", }, count = 1, }, - [ "minecraft:dark_oak_fence:0" ] = { + [ "minecraft:dark_oak_fence" ] = { count = 3, ingredients = { - "minecraft:planks:5", - "minecraft:stick:0", - "minecraft:planks:5", - [ 5 ] = "minecraft:planks:5", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:5", + "minecraft:planks", + "minecraft:stick", + "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:stick", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:wool:0" ] = { + [ "minecraft:wool" ] = { ingredients = { - "minecraft:string:0", - "minecraft:string:0", - [ 5 ] = "minecraft:string:0", - [ 6 ] = "minecraft:string:0", + "minecraft:string", + "minecraft:string", + [ 5 ] = "minecraft:string", + [ 6 ] = "minecraft:string", }, count = 1, }, - [ "minecraft:stained_hardened_clay:4" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:11", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:cobblestone_wall:0" ] = { + [ "minecraft:cobblestone_wall" ] = { count = 6, ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - [ 5 ] = "minecraft:cobblestone:0", - [ 6 ] = "minecraft:cobblestone:0", - [ 7 ] = "minecraft:cobblestone:0", + "minecraft:cobblestone", + "minecraft:cobblestone", + "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", }, }, - [ "minecraft:wool:6" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:9", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:carpet:10" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:10", - [ 6 ] = "minecraft:wool:10", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:dark_oak_stairs:0" ] = { + [ "minecraft:dark_oak_stairs" ] = { count = 8, ingredients = { - "minecraft:planks:5", - [ 9 ] = "minecraft:planks:5", - [ 10 ] = "minecraft:planks:5", - [ 11 ] = "minecraft:planks:5", - [ 5 ] = "minecraft:planks:5", - [ 6 ] = "minecraft:planks:5", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:ender_eye:0" ] = { + [ "minecraft:ender_eye" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:blaze_powder:0", - [ 6 ] = "minecraft:ender_pearl:0", + [ 5 ] = "minecraft:blaze_powder", + [ 6 ] = "minecraft:ender_pearl", }, }, - [ "minecraft:carpet:11" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:11", - [ 6 ] = "minecraft:wool:11", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:iron_door:0" ] = { + [ "minecraft:iron_door" ] = { count = 3, ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", + "minecraft:iron_ingot", + "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", }, }, - [ "minecraft:stained_hardened_clay:11" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:4", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:planks:3" ] = { + [ "minecraft:planks" ] = { count = 4, ingredients = { - [ 6 ] = "minecraft:log:3", + [ 6 ] = "minecraft:log", }, }, - [ "minecraft:stonebrick:3" ] = { + [ "minecraft:stonebrick" ] = { count = 1, ingredients = { - [ 2 ] = "minecraft:stone_slab:5", - [ 6 ] = "minecraft:stone_slab:5", + [ 2 ] = "minecraft:stone_slab", + [ 6 ] = "minecraft:stone_slab", }, }, - [ "minecraft:planks:2" ] = { + [ "minecraft:planks" ] = { count = 4, ingredients = { - [ 6 ] = "minecraft:log:2", + [ 6 ] = "minecraft:log", }, }, - [ "minecraft:wooden_door:0" ] = { + [ "minecraft:wooden_door" ] = { count = 3, ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:dye:14" ] = { + [ "minecraft:dye" ] = { count = 2, ingredients = { - [ 5 ] = "minecraft:dye:1", - [ 6 ] = "minecraft:dye:11", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:carpet:4" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:4", - [ 6 ] = "minecraft:wool:4", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:diamond_pickaxe:0" ] = { + [ "minecraft:diamond_pickaxe" ] = { count = 1, ingredients = { - "minecraft:diamond:0", - "minecraft:diamond:0", - "minecraft:diamond:0", - [ 6 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", + "minecraft:diamond", + "minecraft:diamond", + "minecraft:diamond", + [ 6 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", }, maxCount = 1, }, - [ "minecraft:stained_hardened_clay:7" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:8", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:heavy_weighted_pressure_plate:0" ] = { + [ "minecraft:heavy_weighted_pressure_plate" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", + [ 5 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", }, }, - [ "minecraft:stone_button:0" ] = { + [ "minecraft:stone_button" ] = { count = 1, ingredients = { - [ 6 ] = "minecraft:stone:0", + [ 6 ] = "minecraft:stone", }, }, - [ "minecraft:dye:5" ] = { + [ "minecraft:dye" ] = { count = 2, ingredients = { - [ 5 ] = "minecraft:dye:1", - [ 6 ] = "minecraft:dye:4", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:stained_glass_pane:1" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:1", - "minecraft:stained_glass:1", - "minecraft:stained_glass:1", - [ 5 ] = "minecraft:stained_glass:1", - [ 6 ] = "minecraft:stained_glass:1", - [ 7 ] = "minecraft:stained_glass:1", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:chest:0" ] = { + [ "minecraft:chest" ] = { ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", - [ 9 ] = "minecraft:planks:0", - [ 10 ] = "minecraft:planks:0", - [ 11 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", + "minecraft:planks", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 11 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 7 ] = "minecraft:planks", }, count = 1, }, - [ "minecraft:iron_pickaxe:0" ] = { + [ "minecraft:iron_pickaxe" ] = { count = 1, ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:stick:0", - [ 10 ] = "minecraft:stick:0", + "minecraft:iron_ingot", + "minecraft:iron_ingot", + "minecraft:iron_ingot", + [ 6 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", }, maxCount = 1, }, - [ "minecraft:iron_trapdoor:0" ] = { + [ "minecraft:iron_trapdoor" ] = { count = 1, ingredients = { - "minecraft:iron_ingot:0", - "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", + "minecraft:iron_ingot", + "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", }, }, - [ "minecraft:stained_glass:15" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:0", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:wool:4" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:dye:11", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:wool:14" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:1", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:wool:11" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:4", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:pumpkin_seeds:0" ] = { + [ "minecraft:pumpkin_seeds" ] = { count = 4, ingredients = { - [ 6 ] = "minecraft:pumpkin:0", + [ 6 ] = "minecraft:pumpkin", }, }, - [ "minecraft:stained_glass:12" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:3", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:sticky_piston:0" ] = { + [ "minecraft:sticky_piston" ] = { ingredients = { - "minecraft:slime_ball:0", - [ 5 ] = "minecraft:piston:0", + "minecraft:slime_ball", + [ 5 ] = "minecraft:piston", }, count = 1, }, - [ "minecraft:spruce_fence:0" ] = { + [ "minecraft:spruce_fence" ] = { count = 3, ingredients = { - "minecraft:planks:1", - "minecraft:stick:0", - "minecraft:planks:1", - [ 5 ] = "minecraft:planks:1", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:1", + "minecraft:planks", + "minecraft:stick", + "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:stick", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:red_sandstone:0" ] = { + [ "minecraft:red_sandstone" ] = { count = 1, ingredients = { - "minecraft:sand:1", - "minecraft:sand:1", - [ 5 ] = "minecraft:sand:1", - [ 6 ] = "minecraft:sand:1", + "minecraft:sand", + "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 6 ] = "minecraft:sand", }, }, - [ "minecraft:dye:12" ] = { + [ "minecraft:dye" ] = { count = 2, ingredients = { - [ 5 ] = "minecraft:dye:4", - [ 6 ] = "minecraft:dye:15", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:stone_brick_stairs:0" ] = { + [ "minecraft:stone_brick_stairs" ] = { count = 8, ingredients = { - "minecraft:stonebrick:0", - [ 9 ] = "minecraft:stonebrick:0", - [ 10 ] = "minecraft:stonebrick:0", - [ 11 ] = "minecraft:stonebrick:0", - [ 5 ] = "minecraft:stonebrick:0", - [ 6 ] = "minecraft:stonebrick:0", + "minecraft:stonebrick", + [ 9 ] = "minecraft:stonebrick", + [ 10 ] = "minecraft:stonebrick", + [ 11 ] = "minecraft:stonebrick", + [ 5 ] = "minecraft:stonebrick", + [ 6 ] = "minecraft:stonebrick", }, }, - [ "minecraft:bone_block:0" ] = { + [ "minecraft:bone_block" ] = { count = 1, ingredients = { - "minecraft:dye:15", - "minecraft:dye:15", - "minecraft:dye:15", - [ 9 ] = "minecraft:dye:15", - [ 10 ] = "minecraft:dye:15", - [ 11 ] = "minecraft:dye:15", - [ 5 ] = "minecraft:dye:15", - [ 6 ] = "minecraft:dye:15", - [ 7 ] = "minecraft:dye:15", + "minecraft:dye", + "minecraft:dye", + "minecraft:dye", + [ 9 ] = "minecraft:dye", + [ 10 ] = "minecraft:dye", + [ 11 ] = "minecraft:dye", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:dye", }, }, - [ "minecraft:stone_pressure_plate:0" ] = { + [ "minecraft:stone_pressure_plate" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:stone:0", + [ 5 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", }, }, - [ "minecraft:wool:5" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:10", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:dye:1" ] = { + [ "minecraft:dye" ] = { count = 1, ingredients = { - [ 6 ] = "minecraft:red_flower:0", + [ 6 ] = "minecraft:red_flower", }, }, - [ "minecraft:spruce_fence_gate:0" ] = { + [ "minecraft:spruce_fence_gate" ] = { count = 1, ingredients = { - "minecraft:stick:0", - "minecraft:planks:1", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:1", - [ 7 ] = "minecraft:stick:0", + "minecraft:stick", + "minecraft:planks", + "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:stick", }, }, - [ "minecraft:stained_hardened_clay:15" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:0", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:jungle_fence_gate:0" ] = { + [ "minecraft:jungle_fence_gate" ] = { count = 1, ingredients = { - "minecraft:stick:0", - "minecraft:planks:3", - "minecraft:stick:0", - [ 5 ] = "minecraft:stick:0", - [ 6 ] = "minecraft:planks:3", - [ 7 ] = "minecraft:stick:0", + "minecraft:stick", + "minecraft:planks", + "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:stick", }, }, - [ "minecraft:wool:8" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:wool:0", - [ 6 ] = "minecraft:dye:7", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:carpet:12" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:12", - [ 6 ] = "minecraft:wool:12", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:diamond_block:0" ] = { + [ "minecraft:diamond_block" ] = { count = 1, ingredients = { - "minecraft:diamond:0", - "minecraft:diamond:0", - "minecraft:diamond:0", - [ 9 ] = "minecraft:diamond:0", - [ 10 ] = "minecraft:diamond:0", - [ 11 ] = "minecraft:diamond:0", - [ 5 ] = "minecraft:diamond:0", - [ 6 ] = "minecraft:diamond:0", - [ 7 ] = "minecraft:diamond:0", + "minecraft:diamond", + "minecraft:diamond", + "minecraft:diamond", + [ 9 ] = "minecraft:diamond", + [ 10 ] = "minecraft:diamond", + [ 11 ] = "minecraft:diamond", + [ 5 ] = "minecraft:diamond", + [ 6 ] = "minecraft:diamond", + [ 7 ] = "minecraft:diamond", }, }, - [ "minecraft:dye:11" ] = { + [ "minecraft:dye" ] = { count = 1, ingredients = { - [ 6 ] = "minecraft:yellow_flower:0", + [ 6 ] = "minecraft:yellow_flower", }, }, - [ "minecraft:acacia_door:0" ] = { + [ "minecraft:acacia_door" ] = { count = 3, ingredients = { - "minecraft:planks:4", - "minecraft:planks:4", - [ 9 ] = "minecraft:planks:4", - [ 10 ] = "minecraft:planks:4", - [ 5 ] = "minecraft:planks:4", - [ 6 ] = "minecraft:planks:4", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:planks:5" ] = { + [ "minecraft:planks" ] = { count = 4, ingredients = { - [ 6 ] = "minecraft:log2:1", + [ 6 ] = "minecraft:log2", }, }, - [ "minecraft:stained_glass_pane:11" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:11", - "minecraft:stained_glass:11", - "minecraft:stained_glass:11", - [ 5 ] = "minecraft:stained_glass:11", - [ 6 ] = "minecraft:stained_glass:11", - [ 7 ] = "minecraft:stained_glass:11", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:stained_glass_pane:14" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:14", - "minecraft:stained_glass:14", - "minecraft:stained_glass:14", - [ 5 ] = "minecraft:stained_glass:14", - [ 6 ] = "minecraft:stained_glass:14", - [ 7 ] = "minecraft:stained_glass:14", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:planks:0" ] = { + [ "minecraft:planks" ] = { ingredients = { - "minecraft:log:0", + "minecraft:log", }, count = 4, }, - [ "minecraft:tripwire_hook:0" ] = { + [ "minecraft:tripwire_hook" ] = { count = 2, ingredients = { - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:planks:0", - [ 5 ] = "minecraft:stick:0", + "minecraft:iron_ingot", + [ 9 ] = "minecraft:planks", + [ 5 ] = "minecraft:stick", }, }, - [ "minecraft:stained_hardened_clay:3" ] = { + [ "minecraft:stained_hardened_clay" ] = { count = 8, ingredients = { - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - "minecraft:hardened_clay:0", - [ 9 ] = "minecraft:hardened_clay:0", - [ 10 ] = "minecraft:hardened_clay:0", - [ 11 ] = "minecraft:hardened_clay:0", - [ 5 ] = "minecraft:hardened_clay:0", - [ 6 ] = "minecraft:dye:12", - [ 7 ] = "minecraft:hardened_clay:0", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + "minecraft:hardened_clay", + [ 9 ] = "minecraft:hardened_clay", + [ 10 ] = "minecraft:hardened_clay", + [ 11 ] = "minecraft:hardened_clay", + [ 5 ] = "minecraft:hardened_clay", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:hardened_clay", }, }, - [ "minecraft:stained_glass_pane:5" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:5", - "minecraft:stained_glass:5", - "minecraft:stained_glass:5", - [ 5 ] = "minecraft:stained_glass:5", - [ 6 ] = "minecraft:stained_glass:5", - [ 7 ] = "minecraft:stained_glass:5", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:cauldron:0" ] = { + [ "minecraft:cauldron" ] = { ingredients = { - "minecraft:iron_ingot:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 3 ] = "minecraft:iron_ingot:0", - [ 5 ] = "minecraft:iron_ingot:0", - [ 7 ] = "minecraft:iron_ingot:0", + "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", }, count = 1, }, - [ "minecraft:wool:3" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:dye:12", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:purpur_block:0" ] = { + [ "minecraft:purpur_block" ] = { count = 4, ingredients = { - "minecraft:chorus_fruit_popped:0", - "minecraft:chorus_fruit_popped:0", - [ 5 ] = "minecraft:chorus_fruit_popped:0", - [ 6 ] = "minecraft:chorus_fruit_popped:0", + "minecraft:chorus_fruit_popped", + "minecraft:chorus_fruit_popped", + [ 5 ] = "minecraft:chorus_fruit_popped", + [ 6 ] = "minecraft:chorus_fruit_popped", }, }, - [ "minecraft:redstone_block:0" ] = { + [ "minecraft:redstone_block" ] = { count = 1, ingredients = { - "minecraft:redstone:0", - "minecraft:redstone:0", - "minecraft:redstone:0", - [ 9 ] = "minecraft:redstone:0", - [ 10 ] = "minecraft:redstone:0", - [ 11 ] = "minecraft:redstone:0", - [ 5 ] = "minecraft:redstone:0", - [ 6 ] = "minecraft:redstone:0", - [ 7 ] = "minecraft:redstone:0", + "minecraft:redstone", + "minecraft:redstone", + "minecraft:redstone", + [ 9 ] = "minecraft:redstone", + [ 10 ] = "minecraft:redstone", + [ 11 ] = "minecraft:redstone", + [ 5 ] = "minecraft:redstone", + [ 6 ] = "minecraft:redstone", + [ 7 ] = "minecraft:redstone", }, }, - [ "minecraft:sandstone:0" ] = { + [ "minecraft:sandstone" ] = { count = 1, ingredients = { - "minecraft:sand:0", - "minecraft:sand:0", - [ 5 ] = "minecraft:sand:0", - [ 6 ] = "minecraft:sand:0", + "minecraft:sand", + "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 6 ] = "minecraft:sand", }, }, - [ "minecraft:wool:2" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:dye:13", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:stone:1" ] = { + [ "minecraft:stone" ] = { count = 1, ingredients = { - "minecraft:stone:3", - "minecraft:quartz:0", + "minecraft:stone", + "minecraft:quartz", }, }, - [ "minecraft:stone_slab:6" ] = { + [ "minecraft:stone_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:nether_brick:0", - [ 6 ] = "minecraft:nether_brick:0", - [ 7 ] = "minecraft:nether_brick:0", + [ 5 ] = "minecraft:nether_brick", + [ 6 ] = "minecraft:nether_brick", + [ 7 ] = "minecraft:nether_brick", }, }, - [ "minecraft:dye:8" ] = { + [ "minecraft:dye" ] = { count = 2, ingredients = { - [ 5 ] = "minecraft:dye:15", - [ 6 ] = "minecraft:dye:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:dye", }, }, - [ "minecraft:dark_oak_door:0" ] = { + [ "minecraft:dark_oak_door" ] = { count = 3, ingredients = { - "minecraft:planks:5", - "minecraft:planks:5", - [ 9 ] = "minecraft:planks:5", - [ 10 ] = "minecraft:planks:5", - [ 5 ] = "minecraft:planks:5", - [ 6 ] = "minecraft:planks:5", + "minecraft:planks", + "minecraft:planks", + [ 9 ] = "minecraft:planks", + [ 10 ] = "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", }, }, - [ "minecraft:carpet:1" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - "minecraft:wool:1", - "minecraft:wool:1", + "minecraft:wool", + "minecraft:wool", }, }, - [ "minecraft:bed:0" ] = { + [ "minecraft:bed" ] = { count = 1, ingredients = { - "minecraft:wool:0", - "minecraft:wool:0", - "minecraft:wool:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:planks:0", - [ 7 ] = "minecraft:planks:0", + "minecraft:wool", + "minecraft:wool", + "minecraft:wool", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:redstone_torch:0" ] = { + [ "minecraft:redstone_torch" ] = { ingredients = { - "minecraft:redstone:0", - [ 5 ] = "minecraft:stick:0", + "minecraft:redstone", + [ 5 ] = "minecraft:stick", }, count = 1, }, - [ "minecraft:fence:0" ] = { + [ "minecraft:fence" ] = { count = 3, ingredients = { - "minecraft:planks:0", - "minecraft:stick:0", - "minecraft:planks:0", - [ 5 ] = "minecraft:planks:0", - [ 6 ] = "minecraft:stick:0", - [ 7 ] = "minecraft:planks:0", + "minecraft:planks", + "minecraft:stick", + "minecraft:planks", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:stick", + [ 7 ] = "minecraft:planks", }, }, - [ "minecraft:stone:5" ] = { + [ "minecraft:stone" ] = { count = 2, ingredients = { - "minecraft:stone:3", - "minecraft:cobblestone:0", + "minecraft:stone", + "minecraft:cobblestone", }, }, - [ "minecraft:stone:2" ] = { + [ "minecraft:stone" ] = { count = 4, ingredients = { - "minecraft:stone:1", - "minecraft:stone:1", - [ 5 ] = "minecraft:stone:1", - [ 6 ] = "minecraft:stone:1", + "minecraft:stone", + "minecraft:stone", + [ 5 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", }, }, - [ "minecraft:anvil:0" ] = { + [ "minecraft:anvil" ] = { ingredients = { - "minecraft:iron_block:0", - "minecraft:iron_block:0", - "minecraft:iron_block:0", - [ 9 ] = "minecraft:iron_ingot:0", - [ 10 ] = "minecraft:iron_ingot:0", - [ 11 ] = "minecraft:iron_ingot:0", - [ 6 ] = "minecraft:iron_ingot:0", + "minecraft:iron_block", + "minecraft:iron_block", + "minecraft:iron_block", + [ 9 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", }, count = 1, }, - [ "minecraft:stained_glass_pane:10" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:10", - "minecraft:stained_glass:10", - "minecraft:stained_glass:10", - [ 5 ] = "minecraft:stained_glass:10", - [ 6 ] = "minecraft:stained_glass:10", - [ 7 ] = "minecraft:stained_glass:10", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:dye:13" ] = { + [ "minecraft:dye" ] = { count = 3, ingredients = { - "minecraft:dye:4", - "minecraft:dye:1", - [ 5 ] = "minecraft:dye:9", + "minecraft:dye", + "minecraft:dye", + [ 5 ] = "minecraft:dye", }, }, - [ "minecraft:stained_glass_pane:12" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:12", - "minecraft:stained_glass:12", - "minecraft:stained_glass:12", - [ 5 ] = "minecraft:stained_glass:12", - [ 6 ] = "minecraft:stained_glass:12", - [ 7 ] = "minecraft:stained_glass:12", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:stained_glass:8" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:7", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:stained_glass_pane:2" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:2", - "minecraft:stained_glass:2", - "minecraft:stained_glass:2", - [ 5 ] = "minecraft:stained_glass:2", - [ 6 ] = "minecraft:stained_glass:2", - [ 7 ] = "minecraft:stained_glass:2", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:banner:0" ] = { + [ "minecraft:banner" ] = { count = 1, ingredients = { - "minecraft:wool:15", - "minecraft:wool:15", - "minecraft:wool:15", - [ 7 ] = "minecraft:wool:15", - [ 10 ] = "minecraft:stick:0", - [ 5 ] = "minecraft:wool:15", - [ 6 ] = "minecraft:wool:15", + "minecraft:wool", + "minecraft:wool", + "minecraft:wool", + [ 7 ] = "minecraft:wool", + [ 10 ] = "minecraft:stick", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:stained_glass:6" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:9", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:planks:1" ] = { + [ "minecraft:planks" ] = { count = 4, ingredients = { - [ 6 ] = "minecraft:log:1", + [ 6 ] = "minecraft:log", }, }, - [ "minecraft:quartz_block:1" ] = { + [ "minecraft:quartz_block" ] = { count = 1, ingredients = { - [ 2 ] = "minecraft:stone_slab:7", - [ 6 ] = "minecraft:stone_slab:7", + [ 2 ] = "minecraft:stone_slab", + [ 6 ] = "minecraft:stone_slab", }, }, - [ "minecraft:stone_slab:3" ] = { + [ "minecraft:stone_slab" ] = { ingredients = { - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", - "minecraft:cobblestone:0", + "minecraft:cobblestone", + "minecraft:cobblestone", + "minecraft:cobblestone", }, count = 6, }, - [ "minecraft:carpet:13" ] = { + [ "minecraft:carpet" ] = { count = 3, ingredients = { - [ 5 ] = "minecraft:wool:13", - [ 6 ] = "minecraft:wool:13", + [ 5 ] = "minecraft:wool", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:nether_brick_fence:0" ] = { + [ "minecraft:nether_brick_fence" ] = { count = 6, ingredients = { - "minecraft:nether_brick:0", - "minecraft:nether_brick:0", - "minecraft:nether_brick:0", - [ 5 ] = "minecraft:nether_brick:0", - [ 6 ] = "minecraft:nether_brick:0", - [ 7 ] = "minecraft:nether_brick:0", + "minecraft:nether_brick", + "minecraft:nether_brick", + "minecraft:nether_brick", + [ 5 ] = "minecraft:nether_brick", + [ 6 ] = "minecraft:nether_brick", + [ 7 ] = "minecraft:nether_brick", }, }, - [ "minecraft:wool:9" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:dye:6", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:wool:1" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:dye:14", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:wooden_slab:0" ] = { + [ "minecraft:wooden_slab" ] = { ingredients = { - "minecraft:planks:0", - "minecraft:planks:0", - "minecraft:planks:0", + "minecraft:planks", + "minecraft:planks", + "minecraft:planks", }, count = 6, }, - [ "minecraft:flower_pot:0" ] = { + [ "minecraft:flower_pot" ] = { count = 1, ingredients = { - "minecraft:brick:0", - [ 6 ] = "minecraft:brick:0", - [ 3 ] = "minecraft:brick:0", + "minecraft:brick", + [ 6 ] = "minecraft:brick", + [ 3 ] = "minecraft:brick", }, }, - [ "minecraft:wool:12" ] = { + [ "minecraft:wool" ] = { count = 1, ingredients = { - [ 5 ] = "minecraft:dye:3", - [ 6 ] = "minecraft:wool:0", + [ 5 ] = "minecraft:dye", + [ 6 ] = "minecraft:wool", }, }, - [ "minecraft:mossy_cobblestone:0" ] = { + [ "minecraft:mossy_cobblestone" ] = { count = 1, ingredients = { - "minecraft:cobblestone:0", - "minecraft:vine:0", + "minecraft:cobblestone", + "minecraft:vine", }, }, - [ "minecraft:stonebrick:0" ] = { + [ "minecraft:stonebrick" ] = { count = 4, ingredients = { - "minecraft:stone:0", - "minecraft:stone:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:stone:0", + "minecraft:stone", + "minecraft:stone", + [ 5 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", }, }, - [ "minecraft:blaze_powder:0" ] = { + [ "minecraft:blaze_powder" ] = { count = 2, ingredients = { - "minecraft:blaze_rod:0", + "minecraft:blaze_rod", }, }, - [ "minecraft:end_rod:0" ] = { + [ "minecraft:end_rod" ] = { count = 4, ingredients = { - [ 2 ] = "minecraft:blaze_rod:0", - [ 6 ] = "minecraft:chorus_fruit_popped:0", + [ 2 ] = "minecraft:blaze_rod", + [ 6 ] = "minecraft:chorus_fruit_popped", }, }, - [ "minecraft:stained_glass:9" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:6", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:stained_glass:7" ] = { + [ "minecraft:stained_glass" ] = { count = 8, ingredients = { - "minecraft:glass:0", - "minecraft:glass:0", - "minecraft:glass:0", - [ 9 ] = "minecraft:glass:0", - [ 10 ] = "minecraft:glass:0", - [ 11 ] = "minecraft:glass:0", - [ 5 ] = "minecraft:glass:0", - [ 6 ] = "minecraft:dye:8", - [ 7 ] = "minecraft:glass:0", + "minecraft:glass", + "minecraft:glass", + "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:dye", + [ 7 ] = "minecraft:glass", }, }, - [ "minecraft:brick_block:0" ] = { + [ "minecraft:brick_block" ] = { count = 1, ingredients = { - "minecraft:brick:0", - "minecraft:brick:0", - [ 5 ] = "minecraft:brick:0", - [ 6 ] = "minecraft:brick:0", + "minecraft:brick", + "minecraft:brick", + [ 5 ] = "minecraft:brick", + [ 6 ] = "minecraft:brick", }, }, - [ "minecraft:repeater:0" ] = { + [ "minecraft:repeater" ] = { count = 1, ingredients = { - "minecraft:redstone_torch:0", - "minecraft:redstone:0", - "minecraft:redstone_torch:0", - [ 5 ] = "minecraft:stone:0", - [ 6 ] = "minecraft:stone:0", - [ 7 ] = "minecraft:stone:0", + "minecraft:redstone_torch", + "minecraft:redstone", + "minecraft:redstone_torch", + [ 5 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", + [ 7 ] = "minecraft:stone", }, }, - [ "minecraft:quartz_block:0" ] = { + [ "minecraft:quartz_block" ] = { count = 1, ingredients = { - "minecraft:quartz:0", - "minecraft:quartz:0", - [ 5 ] = "minecraft:quartz:0", - [ 6 ] = "minecraft:quartz:0", + "minecraft:quartz", + "minecraft:quartz", + [ 5 ] = "minecraft:quartz", + [ 6 ] = "minecraft:quartz", }, }, - [ "minecraft:stained_glass_pane:0" ] = { + [ "minecraft:stained_glass_pane" ] = { count = 16, ingredients = { - "minecraft:stained_glass:0", - "minecraft:stained_glass:0", - "minecraft:stained_glass:0", - [ 5 ] = "minecraft:stained_glass:0", - [ 6 ] = "minecraft:stained_glass:0", - [ 7 ] = "minecraft:stained_glass:0", + "minecraft:stained_glass", + "minecraft:stained_glass", + "minecraft:stained_glass", + [ 5 ] = "minecraft:stained_glass", + [ 6 ] = "minecraft:stained_glass", + [ 7 ] = "minecraft:stained_glass", }, }, - [ "minecraft:wooden_slab:5" ] = { + [ "minecraft:wooden_slab" ] = { count = 6, ingredients = { - [ 5 ] = "minecraft:planks:5", - [ 6 ] = "minecraft:planks:5", - [ 7 ] = "minecraft:planks:5", + [ 5 ] = "minecraft:planks", + [ 6 ] = "minecraft:planks", + [ 7 ] = "minecraft:planks", }, }, }, -- 2.49.1 From 693abd4ec61c4f9291b86f2431db6a883afee955 Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Fri, 17 Mar 2023 12:26:30 -0400 Subject: [PATCH 06/26] FIX THE WEIRD NBT ITEM ISSUES WITH THIS ONE WEIRD TRICK --- core/apis/itemDB.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/apis/itemDB.lua b/core/apis/itemDB.lua index 790ce0b..708ab4f 100644 --- a/core/apis/itemDB.lua +++ b/core/apis/itemDB.lua @@ -43,6 +43,7 @@ function itemDB:splitKey(key, item) if t[3] then item.nbt = t[3] + t[3] = nil end item.name = table.concat(t, ':') @@ -244,4 +245,4 @@ end itemDB:load() -return itemDB \ No newline at end of file +return itemDB -- 2.49.1 From fceb99af0bd573a260ad785c309f7a036752c012 Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Sun, 16 Apr 2023 14:45:45 -0400 Subject: [PATCH 07/26] speed up imports by 100x --- milo/apis/storage.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/milo/apis/storage.lua b/milo/apis/storage.lua index 20b4acd..7ae8edf 100644 --- a/milo/apis/storage.lua +++ b/milo/apis/storage.lua @@ -670,6 +670,8 @@ function Storage:import(source, slot, count, item) item = entry local function insert(adapter) + if adapter.__used and adapter.__size and adapter.__used == adapter.__size then return 0 end + local amount = rawInsert(adapter, source.adapter, slot, count) if amount > 0 then -- 2.49.1 From 2e81cdf1f580a820a90e20aa35ea2f8b7da8ee95 Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Fri, 26 May 2023 13:20:06 -0400 Subject: [PATCH 08/26] Update itemDB.lua --- core/apis/itemDB.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/apis/itemDB.lua b/core/apis/itemDB.lua index 708ab4f..3a18a09 100644 --- a/core/apis/itemDB.lua +++ b/core/apis/itemDB.lua @@ -83,9 +83,8 @@ function itemDB:_get(key) for k,item in pairs(self.data) do if key.name == item.name and - key.nbt == key.nbt then + key.nbt == item.nbt then item = Util.shallowCopy(item) - item.nbt = key.nbt return item end end -- 2.49.1 From 62477844fce94e96aca8703c818b3c66ffdbc99b Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Tue, 4 Jul 2023 13:27:53 -0400 Subject: [PATCH 09/26] Update miniAdapter.lua --- milo/apis/miniAdapter.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/milo/apis/miniAdapter.lua b/milo/apis/miniAdapter.lua index cb348b4..430ea1a 100644 --- a/milo/apis/miniAdapter.lua +++ b/milo/apis/miniAdapter.lua @@ -19,7 +19,9 @@ function Adapter:listItems(throttle) local cache = { } throttle = throttle or Util.throttle() - for k,v in pairs(self.list()) do + local list = self.list() + + for k,v in pairs(list) do if v.count > 0 then local key = table.concat({ v.name, v.nbt }, ':') @@ -37,6 +39,10 @@ function Adapter:listItems(throttle) -- useful for when inserting into chests -- ie. insert only if chest does not have item and has free slots + -- bodge to make statsView not delay + -- todo: handle this better properly + self.__used = Util.size(list) + self.cache = cache end -- 2.49.1 From 761f388f12e8e8c23be0afd8b00f4a28bb7a1d7f Mon Sep 17 00:00:00 2001 From: iuzx0 <121732808+iuzx0@users.noreply.github.com> Date: Fri, 6 Jan 2023 15:33:30 +0100 Subject: [PATCH 10/26] Attempt to fix remote --- milo/apis/storage.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/milo/apis/storage.lua b/milo/apis/storage.lua index 7ae8edf..8c9030d 100644 --- a/milo/apis/storage.lua +++ b/milo/apis/storage.lua @@ -489,6 +489,9 @@ function Storage:_sn(name) end local function isValidTransfer(adapter, target) + if string.find(target,":inventory") then + return false + end -- lazily cache transfer locations --[[if not adapter.transferLocations then adapter.transferLocations = adapter.getTransferLocations() -- 2.49.1 From 34dab3ccf0d3b1a57f35471a08d77a3814fdec16 Mon Sep 17 00:00:00 2001 From: iuzx0 <121732808+iuzx0@users.noreply.github.com> Date: Fri, 6 Jan 2023 15:34:19 +0100 Subject: [PATCH 11/26] Attempt to fix milo remote --- milo/MiloRemote.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/milo/MiloRemote.lua b/milo/MiloRemote.lua index 9a18708..2fc2229 100644 --- a/milo/MiloRemote.lua +++ b/milo/MiloRemote.lua @@ -298,6 +298,7 @@ function page:expandList(list) item.count = tonumber(item.count) or 0 item.lname = item.displayName:lower() item.has_recipe = item.has_recipe == '1' + item.name = k t[k] = item end return t -- 2.49.1 From e683e834d8426b20a3acf084a6b61c7a717ffd54 Mon Sep 17 00:00:00 2001 From: iuzx0 <121732808+iuzx0@users.noreply.github.com> Date: Fri, 6 Jan 2023 15:43:56 +0100 Subject: [PATCH 12/26] fixing remote --- milo/MiloRemote.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milo/MiloRemote.lua b/milo/MiloRemote.lua index 2fc2229..7280c56 100644 --- a/milo/MiloRemote.lua +++ b/milo/MiloRemote.lua @@ -283,7 +283,7 @@ local function splitKey(key) local t = Util.split(key, '(.-):') local item = { } if #t[#t] > 8 then - item.nbt = table.remove(t) + --item.nbt = table.remove(t) end item.damage = tonumber(table.remove(t)) item.name = table.concat(t, ':') -- 2.49.1 From 0bbe3a1b06eb4d83dcb49a68f1128fc8b4465f0d Mon Sep 17 00:00:00 2001 From: rspx Date: Sat, 7 Jan 2023 18:17:12 +0100 Subject: [PATCH 13/26] Hopefully final fixes for remote --- milo/MiloRemote.lua | 7 ++++--- milo/apis/storage.lua | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/milo/MiloRemote.lua b/milo/MiloRemote.lua index 7280c56..196476d 100644 --- a/milo/MiloRemote.lua +++ b/milo/MiloRemote.lua @@ -281,11 +281,12 @@ end local function splitKey(key) local t = Util.split(key, '(.-):') + local item = { } - if #t[#t] > 8 then - --item.nbt = table.remove(t) + if t[3] then + item.nbt = t[3] end - item.damage = tonumber(table.remove(t)) + t[3] = nil item.name = table.concat(t, ':') return item end diff --git a/milo/apis/storage.lua b/milo/apis/storage.lua index 8c9030d..2bd73be 100644 --- a/milo/apis/storage.lua +++ b/milo/apis/storage.lua @@ -489,8 +489,8 @@ function Storage:_sn(name) end local function isValidTransfer(adapter, target) - if string.find(target,":inventory") then - return false + if string.find(target,":inventory") or string.find(target,":equipment") then + return false end -- lazily cache transfer locations --[[if not adapter.transferLocations then -- 2.49.1 From f73da8a3da8d291d7e7ebe30bb495024cce175b7 Mon Sep 17 00:00:00 2001 From: rspx Date: Sun, 8 Jan 2023 14:37:54 +0100 Subject: [PATCH 14/26] Updated recipes for 1.19.3 --- recipeBook/etc/recipes/minecraft.db | 9032 ++++++++++++++++++++------- 1 file changed, 6704 insertions(+), 2328 deletions(-) diff --git a/recipeBook/etc/recipes/minecraft.db b/recipeBook/etc/recipes/minecraft.db index 68b1cd9..6563a3b 100644 --- a/recipeBook/etc/recipes/minecraft.db +++ b/recipeBook/etc/recipes/minecraft.db @@ -1,2330 +1,6706 @@ { - name = "Minecraft", - version = "", - recipes = { - [ "minecraft:jukebox" ] = { - count = 1, - ingredients = { - "minecraft:planks", - "minecraft:planks", - "minecraft:planks", - [ 7 ] = "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:diamond", - }, - }, - [ "minecraft:flint_and_steel" ] = { - count = 1, - ingredients = { - "minecraft:flint", - "minecraft:iron_ingot", - }, - maxCount = 1, - }, - [ "minecraft:glass_bottle" ] = { - ingredients = { - "minecraft:glass", - [ 6 ] = "minecraft:glass", - [ 3 ] = "minecraft:glass", - }, - count = 3, - }, - [ "minecraft:writable_book" ] = { - ingredients = { - "minecraft:book", - "minecraft:dye", - "minecraft:feather", - }, - count = 1, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:wooden_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:iron_bars" ] = { - ingredients = { - "minecraft:iron_ingot", - "minecraft:iron_ingot", - "minecraft:iron_ingot", - [ 5 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", - [ 7 ] = "minecraft:iron_ingot", - }, - count = 16, - }, - [ "minecraft:glass_pane" ] = { - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", - [ 7 ] = "minecraft:glass", - }, - count = 16, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:brick_stairs" ] = { - count = 4, - ingredients = { - "minecraft:brick_block", - [ 9 ] = "minecraft:brick_block", - [ 10 ] = "minecraft:brick_block", - [ 11 ] = "minecraft:brick_block", - [ 5 ] = "minecraft:brick_block", - [ 6 ] = "minecraft:brick_block", - }, - }, - [ "minecraft:birch_fence_gate" ] = { - count = 1, - ingredients = { - "minecraft:stick", - "minecraft:planks", - "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:stick", - }, - }, - [ "minecraft:stone_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:stone", - [ 6 ] = "minecraft:stone", - [ 7 ] = "minecraft:stone", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:wooden_button" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:jungle_stairs" ] = { - count = 4, - ingredients = { - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:dye" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:end_bricks" ] = { - count = 4, - ingredients = { - "minecraft:end_stone", - "minecraft:end_stone", - [ 5 ] = "minecraft:end_stone", - [ 6 ] = "minecraft:end_stone", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:sign" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:planks", - "minecraft:planks", - [ 7 ] = "minecraft:planks", - [ 10 ] = "minecraft:stick", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:dye" ] = { - count = 3, - ingredients = { - "minecraft:dye", - "minecraft:dye", - [ 5 ] = "minecraft:dye", - }, - }, - [ "minecraft:snow_layer" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:snow", - [ 6 ] = "minecraft:snow", - [ 7 ] = "minecraft:snow", - }, - }, - [ "minecraft:furnace" ] = { - count = 1, - ingredients = { - "minecraft:cobblestone", - "minecraft:cobblestone", - "minecraft:cobblestone", - [ 9 ] = "minecraft:cobblestone", - [ 10 ] = "minecraft:cobblestone", - [ 11 ] = "minecraft:cobblestone", - [ 5 ] = "minecraft:cobblestone", - [ 7 ] = "minecraft:cobblestone", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - "minecraft:wool", - "minecraft:wool", - }, - }, - [ "minecraft:wooden_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:prismarine" ] = { - count = 1, - ingredients = { - "minecraft:prismarine_shard", - "minecraft:prismarine_shard", - "minecraft:prismarine_shard", - [ 9 ] = "minecraft:prismarine_shard", - [ 10 ] = "minecraft:prismarine_shard", - [ 11 ] = "minecraft:prismarine_shard", - [ 5 ] = "minecraft:prismarine_shard", - [ 6 ] = "minecraft:prismarine_shard", - [ 7 ] = "minecraft:prismarine_shard", - }, - }, - [ "minecraft:birch_door" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:comparator" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:stone", - [ 11 ] = "minecraft:stone", - [ 2 ] = "minecraft:redstone_torch", - [ 5 ] = "minecraft:redstone_torch", - [ 6 ] = "minecraft:quartz", - [ 7 ] = "minecraft:redstone_torch", - [ 9 ] = "minecraft:stone", - }, - }, - [ "minecraft:wooden_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:sandstone" ] = { - count = 1, - ingredients = { - [ 2 ] = "minecraft:stone_slab", - [ 6 ] = "minecraft:stone_slab", - }, - }, - [ "minecraft:noteblock" ] = { - count = 1, - ingredients = { - "minecraft:planks", - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:redstone", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:coal_block" ] = { - count = 1, - ingredients = { - "minecraft:coal", - "minecraft:coal", - "minecraft:coal", - [ 9 ] = "minecraft:coal", - [ 10 ] = "minecraft:coal", - [ 11 ] = "minecraft:coal", - [ 5 ] = "minecraft:coal", - [ 6 ] = "minecraft:coal", - [ 7 ] = "minecraft:coal", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:clock" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:gold_ingot", - [ 2 ] = "minecraft:gold_ingot", - [ 5 ] = "minecraft:gold_ingot", - [ 6 ] = "minecraft:redstone", - [ 7 ] = "minecraft:gold_ingot", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:acacia_fence_gate" ] = { - count = 1, - ingredients = { - "minecraft:stick", - "minecraft:planks", - "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:stick", - }, - }, - [ "minecraft:wooden_pressure_plate" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:ladder" ] = { - count = 3, - ingredients = { - "minecraft:stick", - [ 9 ] = "minecraft:stick", - [ 11 ] = "minecraft:stick", - [ 3 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", - [ 7 ] = "minecraft:stick", - }, - }, - [ "minecraft:enchanting_table" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:obsidian", - [ 11 ] = "minecraft:obsidian", - [ 2 ] = "minecraft:book", - [ 5 ] = "minecraft:diamond", - [ 6 ] = "minecraft:obsidian", - [ 7 ] = "minecraft:diamond", - [ 9 ] = "minecraft:obsidian", - }, - }, - [ "minecraft:torch" ] = { - ingredients = { - "minecraft:coal", - [ 5 ] = "minecraft:stick", - }, - count = 4, - }, - [ "minecraft:stick" ] = { - ingredients = { - "minecraft:planks", - [ 5 ] = "minecraft:planks", - }, - count = 4, - }, - [ "minecraft:acacia_fence" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:stick", - "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:stick", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:spruce_door" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:quartz_block" ] = { - count = 2, - ingredients = { - [ 2 ] = "minecraft:quartz_block", - [ 6 ] = "minecraft:quartz_block", - }, - }, - [ "minecraft:stone_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:stonebrick", - [ 6 ] = "minecraft:stonebrick", - [ 7 ] = "minecraft:stonebrick", - }, - }, - [ "minecraft:bow" ] = { - count = 1, - ingredients = { - "minecraft:string", - "minecraft:stick", - [ 7 ] = "minecraft:stick", - [ 9 ] = "minecraft:string", - [ 10 ] = "minecraft:stick", - [ 5 ] = "minecraft:string", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:dye" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:trapped_chest" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:chest", - [ 6 ] = "minecraft:tripwire_hook", - }, - }, - [ "minecraft:crafting_table" ] = { - count = 1, - ingredients = { - "minecraft:planks", - "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:dye" ] = { - count = 2, - ingredients = { - "minecraft:dye", - "minecraft:dye", - }, - }, - [ "minecraft:gold_nugget" ] = { - count = 9, - ingredients = { - "minecraft:gold_ingot", - }, - }, - [ "minecraft:prismarine" ] = { - count = 1, - ingredients = { - "minecraft:prismarine_shard", - "minecraft:prismarine_shard", - "minecraft:prismarine_shard", - [ 9 ] = "minecraft:prismarine_shard", - [ 10 ] = "minecraft:prismarine_shard", - [ 11 ] = "minecraft:prismarine_shard", - [ 5 ] = "minecraft:prismarine_shard", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:prismarine_shard", - }, - }, - [ "minecraft:brewing_stand" ] = { - count = 1, - ingredients = { - [ 7 ] = "minecraft:cobblestone", - [ 2 ] = "minecraft:blaze_rod", - [ 5 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:cobblestone", - }, - }, - [ "minecraft:beacon" ] = { - count = 1, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:obsidian", - [ 10 ] = "minecraft:obsidian", - [ 11 ] = "minecraft:obsidian", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:nether_star", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:fence_gate" ] = { - count = 1, - ingredients = { - "minecraft:stick", - "minecraft:planks", - "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:stick", - }, - }, - [ "minecraft:lever" ] = { - count = 1, - ingredients = { - [ 2 ] = "minecraft:stick", - [ 6 ] = "minecraft:cobblestone", - }, - }, - [ "minecraft:dispenser" ] = { - count = 1, - ingredients = { - "minecraft:cobblestone", - "minecraft:cobblestone", - "minecraft:cobblestone", - [ 9 ] = "minecraft:cobblestone", - [ 10 ] = "minecraft:redstone", - [ 11 ] = "minecraft:cobblestone", - [ 5 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:bow", - [ 7 ] = "minecraft:cobblestone", - }, - }, - [ "minecraft:jungle_fence" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:stick", - "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:stick", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:redstone_lamp" ] = { - count = 1, - ingredients = { - [ 10 ] = "minecraft:redstone", - [ 2 ] = "minecraft:redstone", - [ 5 ] = "minecraft:redstone", - [ 6 ] = "minecraft:glowstone", - [ 7 ] = "minecraft:redstone", - }, - }, - [ "minecraft:stone" ] = { - count = 2, - ingredients = { - "minecraft:quartz", - "minecraft:cobblestone", - [ 5 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:quartz", - }, - }, - [ "minecraft:sandstone" ] = { - count = 4, - ingredients = { - "minecraft:sandstone", - "minecraft:sandstone", - [ 5 ] = "minecraft:sandstone", - [ 6 ] = "minecraft:sandstone", - }, - }, - [ "minecraft:stone" ] = { - count = 4, - ingredients = { - "minecraft:stone", - "minecraft:stone", - [ 5 ] = "minecraft:stone", - [ 6 ] = "minecraft:stone", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:planks" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log2", - }, - }, - [ "minecraft:trapdoor" ] = { - count = 2, - ingredients = { - "minecraft:planks", - "minecraft:planks", - "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:light_weighted_pressure_plate" ] = { - count = 1, - ingredients = { - "minecraft:gold_ingot", - "minecraft:gold_ingot", - }, - }, - [ "minecraft:nether_brick_stairs" ] = { - count = 8, - ingredients = { - "minecraft:nether_brick", - [ 9 ] = "minecraft:nether_brick", - [ 10 ] = "minecraft:nether_brick", - [ 11 ] = "minecraft:nether_brick", - [ 5 ] = "minecraft:nether_brick", - [ 6 ] = "minecraft:nether_brick", - }, - }, - [ "minecraft:sandstone_stairs" ] = { - count = 8, - ingredients = { - "minecraft:sandstone", - [ 9 ] = "minecraft:sandstone", - [ 10 ] = "minecraft:sandstone", - [ 11 ] = "minecraft:sandstone", - [ 5 ] = "minecraft:sandstone", - [ 6 ] = "minecraft:sandstone", - }, - }, - [ "minecraft:hay_block" ] = { - count = 1, - ingredients = { - "minecraft:wheat", - "minecraft:wheat", - "minecraft:wheat", - [ 9 ] = "minecraft:wheat", - [ 10 ] = "minecraft:wheat", - [ 11 ] = "minecraft:wheat", - [ 5 ] = "minecraft:wheat", - [ 6 ] = "minecraft:wheat", - [ 7 ] = "minecraft:wheat", - }, - }, - [ "minecraft:birch_fence" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:stick", - "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:stick", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:dropper" ] = { - count = 1, - ingredients = { - "minecraft:cobblestone", - "minecraft:cobblestone", - "minecraft:cobblestone", - [ 9 ] = "minecraft:cobblestone", - [ 10 ] = "minecraft:redstone", - [ 11 ] = "minecraft:cobblestone", - [ 5 ] = "minecraft:cobblestone", - [ 7 ] = "minecraft:cobblestone", - }, - }, - [ "minecraft:glowstone" ] = { - ingredients = { - "minecraft:glowstone_dust", - "minecraft:glowstone_dust", - [ 5 ] = "minecraft:glowstone_dust", - [ 6 ] = "minecraft:glowstone_dust", - }, - count = 1, - }, - [ "minecraft:ender_chest" ] = { - count = 1, - ingredients = { - "minecraft:obsidian", - "minecraft:obsidian", - "minecraft:obsidian", - [ 9 ] = "minecraft:obsidian", - [ 10 ] = "minecraft:obsidian", - [ 11 ] = "minecraft:obsidian", - [ 5 ] = "minecraft:obsidian", - [ 6 ] = "minecraft:ender_eye", - [ 7 ] = "minecraft:obsidian", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:stone" ] = { - count = 4, - ingredients = { - "minecraft:stone", - "minecraft:stone", - [ 5 ] = "minecraft:stone", - [ 6 ] = "minecraft:stone", - }, - }, - [ "minecraft:gold_block" ] = { - count = 1, - ingredients = { - "minecraft:gold_ingot", - "minecraft:gold_ingot", - "minecraft:gold_ingot", - [ 9 ] = "minecraft:gold_ingot", - [ 10 ] = "minecraft:gold_ingot", - [ 11 ] = "minecraft:gold_ingot", - [ 5 ] = "minecraft:gold_ingot", - [ 6 ] = "minecraft:gold_ingot", - [ 7 ] = "minecraft:gold_ingot", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:jungle_door" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:sea_lantern" ] = { - count = 1, - ingredients = { - "minecraft:prismarine_shard", - "minecraft:prismarine_crystals", - "minecraft:prismarine_shard", - [ 9 ] = "minecraft:prismarine_shard", - [ 10 ] = "minecraft:prismarine_crystals", - [ 11 ] = "minecraft:prismarine_shard", - [ 5 ] = "minecraft:prismarine_crystals", - [ 6 ] = "minecraft:prismarine_crystals", - [ 7 ] = "minecraft:prismarine_crystals", - }, - }, - [ "minecraft:tnt" ] = { - count = 1, - ingredients = { - "minecraft:gunpowder", - "minecraft:sand", - "minecraft:gunpowder", - [ 9 ] = "minecraft:gunpowder", - [ 10 ] = "minecraft:sand", - [ 11 ] = "minecraft:gunpowder", - [ 5 ] = "minecraft:sand", - [ 6 ] = "minecraft:gunpowder", - [ 7 ] = "minecraft:sand", - }, - }, - [ "minecraft:oak_stairs" ] = { - count = 8, - ingredients = { - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:red_sandstone" ] = { - count = 4, - ingredients = { - "minecraft:red_sandstone", - "minecraft:red_sandstone", - [ 5 ] = "minecraft:red_sandstone", - [ 6 ] = "minecraft:red_sandstone", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:spruce_stairs" ] = { - count = 8, - ingredients = { - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:piston" ] = { - ingredients = { - "minecraft:planks", - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:cobblestone", - [ 10 ] = "minecraft:redstone", - [ 11 ] = "minecraft:cobblestone", - [ 5 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:iron_ingot", - [ 7 ] = "minecraft:cobblestone", - }, - count = 1, - }, - [ "minecraft:acacia_stairs" ] = { - count = 8, - ingredients = { - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:bookshelf" ] = { - count = 1, - ingredients = { - "minecraft:planks", - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:book", - [ 6 ] = "minecraft:book", - [ 7 ] = "minecraft:book", - }, - }, - [ "minecraft:birch_stairs" ] = { - count = 8, - ingredients = { - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:stone_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:sandstone", - [ 6 ] = "minecraft:sandstone", - [ 7 ] = "minecraft:sandstone", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:sugar" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:reeds", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:emerald_block" ] = { - count = 1, - ingredients = { - "minecraft:emerald", - "minecraft:emerald", - "minecraft:emerald", - [ 9 ] = "minecraft:emerald", - [ 10 ] = "minecraft:emerald", - [ 11 ] = "minecraft:emerald", - [ 5 ] = "minecraft:emerald", - [ 6 ] = "minecraft:emerald", - [ 7 ] = "minecraft:emerald", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:stone_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:brick_block", - [ 6 ] = "minecraft:brick_block", - [ 7 ] = "minecraft:brick_block", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:stone_stairs" ] = { - count = 8, - ingredients = { - "minecraft:cobblestone", - [ 9 ] = "minecraft:cobblestone", - [ 10 ] = "minecraft:cobblestone", - [ 11 ] = "minecraft:cobblestone", - [ 5 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:cobblestone", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:dark_oak_fence_gate" ] = { - count = 1, - ingredients = { - "minecraft:stick", - "minecraft:planks", - "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:stick", - }, - }, - [ "minecraft:quartz_stairs" ] = { - count = 8, - ingredients = { - "minecraft:quartz_block", - [ 9 ] = "minecraft:quartz_block", - [ 10 ] = "minecraft:quartz_block", - [ 11 ] = "minecraft:quartz_block", - [ 5 ] = "minecraft:quartz_block", - [ 6 ] = "minecraft:quartz_block", - }, - }, - [ "minecraft:dirt" ] = { - count = 4, - ingredients = { - "minecraft:dirt", - "minecraft:gravel", - [ 5 ] = "minecraft:gravel", - [ 6 ] = "minecraft:dirt", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:wooden_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:hopper" ] = { - ingredients = { - "minecraft:iron_ingot", - [ 10 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:chest", - [ 7 ] = "minecraft:iron_ingot", - }, - count = 1, - }, - [ "minecraft:nether_brick" ] = { - count = 1, - ingredients = { - "minecraft:netherbrick", - "minecraft:netherbrick", - [ 5 ] = "minecraft:netherbrick", - [ 6 ] = "minecraft:netherbrick", - }, - }, - [ "minecraft:lapis_block" ] = { - count = 1, - ingredients = { - "minecraft:dye", - "minecraft:dye", - "minecraft:dye", - [ 9 ] = "minecraft:dye", - [ 10 ] = "minecraft:dye", - [ 11 ] = "minecraft:dye", - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:dye", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:prismarine" ] = { - count = 1, - ingredients = { - "minecraft:prismarine_shard", - "minecraft:prismarine_shard", - [ 5 ] = "minecraft:prismarine_shard", - [ 6 ] = "minecraft:prismarine_shard", - }, - }, - [ "minecraft:snow" ] = { - count = 1, - ingredients = { - "minecraft:snowball", - "minecraft:snowball", - [ 5 ] = "minecraft:snowball", - [ 6 ] = "minecraft:snowball", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:purpur_slab" ] = { - count = 6, - ingredients = { - "minecraft:purpur_block", - "minecraft:purpur_block", - "minecraft:purpur_block", - }, - }, - [ "minecraft:stone_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:quartz_block", - [ 6 ] = "minecraft:quartz_block", - [ 7 ] = "minecraft:quartz_block", - }, - }, - [ "minecraft:iron_block" ] = { - ingredients = { - "minecraft:iron_ingot", - "minecraft:iron_ingot", - "minecraft:iron_ingot", - [ 9 ] = "minecraft:iron_ingot", - [ 10 ] = "minecraft:iron_ingot", - [ 11 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", - [ 7 ] = "minecraft:iron_ingot", - }, - count = 1, - }, - [ "minecraft:dark_oak_fence" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:stick", - "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:stick", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:wool" ] = { - ingredients = { - "minecraft:string", - "minecraft:string", - [ 5 ] = "minecraft:string", - [ 6 ] = "minecraft:string", - }, - count = 1, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:cobblestone_wall" ] = { - count = 6, - ingredients = { - "minecraft:cobblestone", - "minecraft:cobblestone", - "minecraft:cobblestone", - [ 5 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:cobblestone", - [ 7 ] = "minecraft:cobblestone", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:dark_oak_stairs" ] = { - count = 8, - ingredients = { - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:ender_eye" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:blaze_powder", - [ 6 ] = "minecraft:ender_pearl", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:iron_door" ] = { - count = 3, - ingredients = { - "minecraft:iron_ingot", - "minecraft:iron_ingot", - [ 9 ] = "minecraft:iron_ingot", - [ 10 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:planks" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log", - }, - }, - [ "minecraft:stonebrick" ] = { - count = 1, - ingredients = { - [ 2 ] = "minecraft:stone_slab", - [ 6 ] = "minecraft:stone_slab", - }, - }, - [ "minecraft:planks" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log", - }, - }, - [ "minecraft:wooden_door" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:dye" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:diamond_pickaxe" ] = { - count = 1, - ingredients = { - "minecraft:diamond", - "minecraft:diamond", - "minecraft:diamond", - [ 6 ] = "minecraft:stick", - [ 10 ] = "minecraft:stick", - }, - maxCount = 1, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:heavy_weighted_pressure_plate" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", - }, - }, - [ "minecraft:stone_button" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:stone", - }, - }, - [ "minecraft:dye" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:chest" ] = { - ingredients = { - "minecraft:planks", - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 11 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 7 ] = "minecraft:planks", - }, - count = 1, - }, - [ "minecraft:iron_pickaxe" ] = { - count = 1, - ingredients = { - "minecraft:iron_ingot", - "minecraft:iron_ingot", - "minecraft:iron_ingot", - [ 6 ] = "minecraft:stick", - [ 10 ] = "minecraft:stick", - }, - maxCount = 1, - }, - [ "minecraft:iron_trapdoor" ] = { - count = 1, - ingredients = { - "minecraft:iron_ingot", - "minecraft:iron_ingot", - [ 5 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:pumpkin_seeds" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:pumpkin", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:sticky_piston" ] = { - ingredients = { - "minecraft:slime_ball", - [ 5 ] = "minecraft:piston", - }, - count = 1, - }, - [ "minecraft:spruce_fence" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:stick", - "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:stick", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:red_sandstone" ] = { - count = 1, - ingredients = { - "minecraft:sand", - "minecraft:sand", - [ 5 ] = "minecraft:sand", - [ 6 ] = "minecraft:sand", - }, - }, - [ "minecraft:dye" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:stone_brick_stairs" ] = { - count = 8, - ingredients = { - "minecraft:stonebrick", - [ 9 ] = "minecraft:stonebrick", - [ 10 ] = "minecraft:stonebrick", - [ 11 ] = "minecraft:stonebrick", - [ 5 ] = "minecraft:stonebrick", - [ 6 ] = "minecraft:stonebrick", - }, - }, - [ "minecraft:bone_block" ] = { - count = 1, - ingredients = { - "minecraft:dye", - "minecraft:dye", - "minecraft:dye", - [ 9 ] = "minecraft:dye", - [ 10 ] = "minecraft:dye", - [ 11 ] = "minecraft:dye", - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:dye", - }, - }, - [ "minecraft:stone_pressure_plate" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:stone", - [ 6 ] = "minecraft:stone", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:dye" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:red_flower", - }, - }, - [ "minecraft:spruce_fence_gate" ] = { - count = 1, - ingredients = { - "minecraft:stick", - "minecraft:planks", - "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:stick", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:jungle_fence_gate" ] = { - count = 1, - ingredients = { - "minecraft:stick", - "minecraft:planks", - "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:stick", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:diamond_block" ] = { - count = 1, - ingredients = { - "minecraft:diamond", - "minecraft:diamond", - "minecraft:diamond", - [ 9 ] = "minecraft:diamond", - [ 10 ] = "minecraft:diamond", - [ 11 ] = "minecraft:diamond", - [ 5 ] = "minecraft:diamond", - [ 6 ] = "minecraft:diamond", - [ 7 ] = "minecraft:diamond", - }, - }, - [ "minecraft:dye" ] = { - count = 1, - ingredients = { - [ 6 ] = "minecraft:yellow_flower", - }, - }, - [ "minecraft:acacia_door" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:planks" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log2", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:planks" ] = { - ingredients = { - "minecraft:log", - }, - count = 4, - }, - [ "minecraft:tripwire_hook" ] = { - count = 2, - ingredients = { - "minecraft:iron_ingot", - [ 9 ] = "minecraft:planks", - [ 5 ] = "minecraft:stick", - }, - }, - [ "minecraft:stained_hardened_clay" ] = { - count = 8, - ingredients = { - "minecraft:hardened_clay", - "minecraft:hardened_clay", - "minecraft:hardened_clay", - [ 9 ] = "minecraft:hardened_clay", - [ 10 ] = "minecraft:hardened_clay", - [ 11 ] = "minecraft:hardened_clay", - [ 5 ] = "minecraft:hardened_clay", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:hardened_clay", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:cauldron" ] = { - ingredients = { - "minecraft:iron_ingot", - [ 9 ] = "minecraft:iron_ingot", - [ 10 ] = "minecraft:iron_ingot", - [ 11 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:iron_ingot", - [ 7 ] = "minecraft:iron_ingot", - }, - count = 1, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:purpur_block" ] = { - count = 4, - ingredients = { - "minecraft:chorus_fruit_popped", - "minecraft:chorus_fruit_popped", - [ 5 ] = "minecraft:chorus_fruit_popped", - [ 6 ] = "minecraft:chorus_fruit_popped", - }, - }, - [ "minecraft:redstone_block" ] = { - count = 1, - ingredients = { - "minecraft:redstone", - "minecraft:redstone", - "minecraft:redstone", - [ 9 ] = "minecraft:redstone", - [ 10 ] = "minecraft:redstone", - [ 11 ] = "minecraft:redstone", - [ 5 ] = "minecraft:redstone", - [ 6 ] = "minecraft:redstone", - [ 7 ] = "minecraft:redstone", - }, - }, - [ "minecraft:sandstone" ] = { - count = 1, - ingredients = { - "minecraft:sand", - "minecraft:sand", - [ 5 ] = "minecraft:sand", - [ 6 ] = "minecraft:sand", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:stone" ] = { - count = 1, - ingredients = { - "minecraft:stone", - "minecraft:quartz", - }, - }, - [ "minecraft:stone_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:nether_brick", - [ 6 ] = "minecraft:nether_brick", - [ 7 ] = "minecraft:nether_brick", - }, - }, - [ "minecraft:dye" ] = { - count = 2, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:dye", - }, - }, - [ "minecraft:dark_oak_door" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:planks", - [ 9 ] = "minecraft:planks", - [ 10 ] = "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - }, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - "minecraft:wool", - "minecraft:wool", - }, - }, - [ "minecraft:bed" ] = { - count = 1, - ingredients = { - "minecraft:wool", - "minecraft:wool", - "minecraft:wool", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:redstone_torch" ] = { - ingredients = { - "minecraft:redstone", - [ 5 ] = "minecraft:stick", - }, - count = 1, - }, - [ "minecraft:fence" ] = { - count = 3, - ingredients = { - "minecraft:planks", - "minecraft:stick", - "minecraft:planks", - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:stick", - [ 7 ] = "minecraft:planks", - }, - }, - [ "minecraft:stone" ] = { - count = 2, - ingredients = { - "minecraft:stone", - "minecraft:cobblestone", - }, - }, - [ "minecraft:stone" ] = { - count = 4, - ingredients = { - "minecraft:stone", - "minecraft:stone", - [ 5 ] = "minecraft:stone", - [ 6 ] = "minecraft:stone", - }, - }, - [ "minecraft:anvil" ] = { - ingredients = { - "minecraft:iron_block", - "minecraft:iron_block", - "minecraft:iron_block", - [ 9 ] = "minecraft:iron_ingot", - [ 10 ] = "minecraft:iron_ingot", - [ 11 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", - }, - count = 1, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:dye" ] = { - count = 3, - ingredients = { - "minecraft:dye", - "minecraft:dye", - [ 5 ] = "minecraft:dye", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:banner" ] = { - count = 1, - ingredients = { - "minecraft:wool", - "minecraft:wool", - "minecraft:wool", - [ 7 ] = "minecraft:wool", - [ 10 ] = "minecraft:stick", - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:planks" ] = { - count = 4, - ingredients = { - [ 6 ] = "minecraft:log", - }, - }, - [ "minecraft:quartz_block" ] = { - count = 1, - ingredients = { - [ 2 ] = "minecraft:stone_slab", - [ 6 ] = "minecraft:stone_slab", - }, - }, - [ "minecraft:stone_slab" ] = { - ingredients = { - "minecraft:cobblestone", - "minecraft:cobblestone", - "minecraft:cobblestone", - }, - count = 6, - }, - [ "minecraft:carpet" ] = { - count = 3, - ingredients = { - [ 5 ] = "minecraft:wool", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:nether_brick_fence" ] = { - count = 6, - ingredients = { - "minecraft:nether_brick", - "minecraft:nether_brick", - "minecraft:nether_brick", - [ 5 ] = "minecraft:nether_brick", - [ 6 ] = "minecraft:nether_brick", - [ 7 ] = "minecraft:nether_brick", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:wooden_slab" ] = { - ingredients = { - "minecraft:planks", - "minecraft:planks", - "minecraft:planks", - }, - count = 6, - }, - [ "minecraft:flower_pot" ] = { - count = 1, - ingredients = { - "minecraft:brick", - [ 6 ] = "minecraft:brick", - [ 3 ] = "minecraft:brick", - }, - }, - [ "minecraft:wool" ] = { - count = 1, - ingredients = { - [ 5 ] = "minecraft:dye", - [ 6 ] = "minecraft:wool", - }, - }, - [ "minecraft:mossy_cobblestone" ] = { - count = 1, - ingredients = { - "minecraft:cobblestone", - "minecraft:vine", - }, - }, - [ "minecraft:stonebrick" ] = { - count = 4, - ingredients = { - "minecraft:stone", - "minecraft:stone", - [ 5 ] = "minecraft:stone", - [ 6 ] = "minecraft:stone", - }, - }, - [ "minecraft:blaze_powder" ] = { - count = 2, - ingredients = { - "minecraft:blaze_rod", - }, - }, - [ "minecraft:end_rod" ] = { - count = 4, - ingredients = { - [ 2 ] = "minecraft:blaze_rod", - [ 6 ] = "minecraft:chorus_fruit_popped", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:stained_glass" ] = { - count = 8, - ingredients = { - "minecraft:glass", - "minecraft:glass", - "minecraft:glass", - [ 9 ] = "minecraft:glass", - [ 10 ] = "minecraft:glass", - [ 11 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", - [ 6 ] = "minecraft:dye", - [ 7 ] = "minecraft:glass", - }, - }, - [ "minecraft:brick_block" ] = { - count = 1, - ingredients = { - "minecraft:brick", - "minecraft:brick", - [ 5 ] = "minecraft:brick", - [ 6 ] = "minecraft:brick", - }, - }, - [ "minecraft:repeater" ] = { - count = 1, - ingredients = { - "minecraft:redstone_torch", - "minecraft:redstone", - "minecraft:redstone_torch", - [ 5 ] = "minecraft:stone", - [ 6 ] = "minecraft:stone", - [ 7 ] = "minecraft:stone", - }, - }, - [ "minecraft:quartz_block" ] = { - count = 1, - ingredients = { - "minecraft:quartz", - "minecraft:quartz", - [ 5 ] = "minecraft:quartz", - [ 6 ] = "minecraft:quartz", - }, - }, - [ "minecraft:stained_glass_pane" ] = { - count = 16, - ingredients = { - "minecraft:stained_glass", - "minecraft:stained_glass", - "minecraft:stained_glass", - [ 5 ] = "minecraft:stained_glass", - [ 6 ] = "minecraft:stained_glass", - [ 7 ] = "minecraft:stained_glass", - }, - }, - [ "minecraft:wooden_slab" ] = { - count = 6, - ingredients = { - [ 5 ] = "minecraft:planks", - [ 6 ] = "minecraft:planks", - [ 7 ] = "minecraft:planks", - }, - }, - }, + name = "Minecraft", + version = "1.19.3", + recepies = { + [ "minecraft:sugar" ] = { + ingredients = { + [ 1 ] = "minecraft:sugar_cane", + }, + count = 1, + }, + [ "minecraft:cobblestone_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 8 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 4 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + }, + count = 4, + }, + [ "minecraft:warped_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_planks", + [ 2 ] = "minecraft:warped_planks", + }, + count = 1, + }, + [ "minecraft:prismarine_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine_bricks", + [ 3 ] = "minecraft:prismarine_bricks", + [ 2 ] = "minecraft:prismarine_bricks", + }, + count = 6, + }, + [ "minecraft:crimson_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_planks", + [ 3 ] = "minecraft:crimson_planks", + [ 2 ] = "minecraft:crimson_planks", + [ 5 ] = "minecraft:crimson_planks", + [ 4 ] = "minecraft:crimson_planks", + [ 6 ] = "minecraft:crimson_planks", + }, + count = 2, + }, + [ "minecraft:diorite" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 4 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:quartz", + [ 2 ] = "minecraft:quartz", + }, + count = 2, + }, + [ "minecraft:light_gray_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:light_gray_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:coarse_dirt" ] = { + ingredients = { + [ 1 ] = "minecraft:dirt", + [ 4 ] = "minecraft:dirt", + [ 3 ] = "minecraft:gravel", + [ 2 ] = "minecraft:gravel", + }, + count = 4, + }, + [ "minecraft:oxidized_cut_copper_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:oxidized_cut_copper", + [ 8 ] = "minecraft:oxidized_cut_copper", + [ 5 ] = "minecraft:oxidized_cut_copper", + [ 4 ] = "minecraft:oxidized_cut_copper", + [ 7 ] = "minecraft:oxidized_cut_copper", + [ 9 ] = "minecraft:oxidized_cut_copper", + }, + count = 4, + }, + [ "minecraft:anvil" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_block", + [ 8 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_block", + [ 2 ] = "minecraft:iron_block", + [ 5 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:deepslate_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:deepslate_bricks", + [ 3 ] = "minecraft:deepslate_bricks", + [ 2 ] = "minecraft:deepslate_bricks", + }, + count = 6, + }, + [ "minecraft:firework_rocket" ] = { + ingredients = { + [ 1 ] = "minecraft:gunpowder", + [ 2 ] = "minecraft:paper", + }, + count = 3, + }, + [ "minecraft:lime_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:lime_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:oak_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 2, + }, + [ "minecraft:weathered_cut_copper_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:weathered_cut_copper", + [ 8 ] = "minecraft:weathered_cut_copper", + [ 5 ] = "minecraft:weathered_cut_copper", + [ 4 ] = "minecraft:weathered_cut_copper", + [ 7 ] = "minecraft:weathered_cut_copper", + [ 9 ] = "minecraft:weathered_cut_copper", + }, + count = 4, + }, + [ "minecraft:golden_carrot" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_nugget", + [ 3 ] = "minecraft:gold_nugget", + [ 2 ] = "minecraft:gold_nugget", + [ 5 ] = "minecraft:carrot", + [ 4 ] = "minecraft:gold_nugget", + [ 7 ] = "minecraft:gold_nugget", + [ 6 ] = "minecraft:gold_nugget", + [ 9 ] = "minecraft:gold_nugget", + [ 8 ] = "minecraft:gold_nugget", + }, + count = 1, + }, + [ "minecraft:mossy_cobblestone_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:mossy_cobblestone", + [ 8 ] = "minecraft:mossy_cobblestone", + [ 5 ] = "minecraft:mossy_cobblestone", + [ 4 ] = "minecraft:mossy_cobblestone", + [ 7 ] = "minecraft:mossy_cobblestone", + [ 9 ] = "minecraft:mossy_cobblestone", + }, + count = 4, + }, + [ "minecraft:mossy_stone_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:stone_bricks", + [ 2 ] = "minecraft:vine", + }, + count = 1, + }, + [ "minecraft:purple_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:purple_dye", + }, + count = 1, + }, + [ "minecraft:magenta_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:magenta_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:beacon" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:nether_star", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:obsidian", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:obsidian", + [ 8 ] = "minecraft:obsidian", + }, + count = 1, + }, + [ "minecraft:end_stone_brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:end_stone_bricks", + [ 3 ] = "minecraft:end_stone_bricks", + [ 2 ] = "minecraft:end_stone_bricks", + [ 5 ] = "minecraft:end_stone_bricks", + [ 4 ] = "minecraft:end_stone_bricks", + [ 6 ] = "minecraft:end_stone_bricks", + }, + count = 6, + }, + [ "minecraft:leather" ] = { + ingredients = { + [ 1 ] = "minecraft:rabbit_hide", + [ 4 ] = "minecraft:rabbit_hide", + [ 3 ] = "minecraft:rabbit_hide", + [ 2 ] = "minecraft:rabbit_hide", + }, + count = 1, + }, + [ "minecraft:end_stone_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:end_stone_bricks", + [ 8 ] = "minecraft:end_stone_bricks", + [ 5 ] = "minecraft:end_stone_bricks", + [ 4 ] = "minecraft:end_stone_bricks", + [ 7 ] = "minecraft:end_stone_bricks", + [ 9 ] = "minecraft:end_stone_bricks", + }, + count = 4, + }, + [ "minecraft:turtle_helmet" ] = { + ingredients = { + [ 1 ] = "minecraft:scute", + [ 3 ] = "minecraft:scute", + [ 2 ] = "minecraft:scute", + [ 4 ] = "minecraft:scute", + [ 6 ] = "minecraft:scute", + }, + count = 1, + }, + [ "minecraft:blue_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:blue_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:blue_wool", + [ 2 ] = "minecraft:blue_wool", + [ 5 ] = "minecraft:blue_wool", + [ 4 ] = "minecraft:blue_wool", + [ 6 ] = "minecraft:blue_wool", + }, + count = 1, + }, + [ "minecraft:jukebox" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:diamond", + [ 4 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:green_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:green_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:black_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:black_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:golden_axe" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:spruce_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + [ 3 ] = "minecraft:spruce_planks", + [ 2 ] = "minecraft:spruce_planks", + }, + count = 6, + }, + [ "minecraft:lime_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:lime_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:warped_fungus_on_a_stick" ] = { + ingredients = { + [ 1 ] = "minecraft:fishing_rod", + [ 4 ] = "minecraft:warped_fungus", + }, + count = 1, + }, + [ "minecraft:light_blue_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:light_blue_dye", + }, + count = 1, + }, + [ "minecraft:diamond_boots" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 4 ] = "minecraft:diamond", + [ 3 ] = "minecraft:diamond", + [ 6 ] = "minecraft:diamond", + }, + count = 1, + }, + [ "minecraft:chiseled_nether_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:nether_brick_slab", + [ 2 ] = "minecraft:nether_brick_slab", + }, + count = 1, + }, + [ "minecraft:blue_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:cornflower", + }, + count = 1, + }, + [ "minecraft:paper" ] = { + ingredients = { + [ 1 ] = "minecraft:sugar_cane", + [ 3 ] = "minecraft:sugar_cane", + [ 2 ] = "minecraft:sugar_cane", + }, + count = 3, + }, + [ "minecraft:diamond_chestplate" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 8 ] = "minecraft:diamond", + [ 3 ] = "minecraft:diamond", + [ 9 ] = "minecraft:diamond", + [ 5 ] = "minecraft:diamond", + [ 4 ] = "minecraft:diamond", + [ 7 ] = "minecraft:diamond", + [ 6 ] = "minecraft:diamond", + }, + count = 1, + }, + [ "minecraft:dark_prismarine_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_prismarine", + [ 8 ] = "minecraft:dark_prismarine", + [ 5 ] = "minecraft:dark_prismarine", + [ 4 ] = "minecraft:dark_prismarine", + [ 7 ] = "minecraft:dark_prismarine", + [ 9 ] = "minecraft:dark_prismarine", + }, + count = 4, + }, + [ "minecraft:crimson_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_stem", + }, + count = 4, + }, + [ "minecraft:oak_door" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 3, + }, + [ "minecraft:cauldron" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 8 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:stone_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:stone", + [ 2 ] = "minecraft:stone", + }, + count = 1, + }, + [ "minecraft:redstone_lamp" ] = { + ingredients = { + [ 8 ] = "minecraft:redstone", + [ 2 ] = "minecraft:redstone", + [ 5 ] = "minecraft:glowstone", + [ 4 ] = "minecraft:redstone", + [ 6 ] = "minecraft:redstone", + }, + count = 1, + }, + [ "minecraft:birch_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + [ 3 ] = "minecraft:birch_planks", + [ 2 ] = "minecraft:birch_planks", + [ 5 ] = "minecraft:birch_planks", + [ 4 ] = "minecraft:birch_planks", + [ 6 ] = "minecraft:birch_planks", + }, + count = 2, + }, + [ "minecraft:stonecutter" ] = { + ingredients = { + [ 5 ] = "minecraft:stone", + [ 4 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", + [ 2 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:repeater" ] = { + ingredients = { + [ 1 ] = "minecraft:redstone_torch", + [ 3 ] = "minecraft:redstone_torch", + [ 2 ] = "minecraft:redstone", + [ 5 ] = "minecraft:stone", + [ 4 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", + }, + count = 1, + }, + [ "minecraft:hay_block" ] = { + ingredients = { + [ 1 ] = "minecraft:wheat", + [ 3 ] = "minecraft:wheat", + [ 2 ] = "minecraft:wheat", + [ 5 ] = "minecraft:wheat", + [ 4 ] = "minecraft:wheat", + [ 7 ] = "minecraft:wheat", + [ 6 ] = "minecraft:wheat", + [ 9 ] = "minecraft:wheat", + [ 8 ] = "minecraft:wheat", + }, + count = 1, + }, + [ "minecraft:cyan_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:cyan_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:mushroom_stew" ] = { + ingredients = { + [ 1 ] = "minecraft:brown_mushroom", + [ 3 ] = "minecraft:bowl", + [ 2 ] = "minecraft:red_mushroom", + }, + count = 1, + }, + [ "minecraft:diamond_helmet" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 3 ] = "minecraft:diamond", + [ 2 ] = "minecraft:diamond", + [ 4 ] = "minecraft:diamond", + [ 6 ] = "minecraft:diamond", + }, + count = 1, + }, + [ "minecraft:sandstone" ] = { + ingredients = { + [ 1 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + }, + count = 1, + }, + [ "minecraft:purpur_block" ] = { + ingredients = { + [ 1 ] = "minecraft:popped_chorus_fruit", + [ 4 ] = "minecraft:popped_chorus_fruit", + [ 3 ] = "minecraft:popped_chorus_fruit", + [ 2 ] = "minecraft:popped_chorus_fruit", + }, + count = 4, + }, + [ "minecraft:golden_hoe" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + [ 2 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:orange_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:orange_dye", + }, + count = 1, + }, + [ "minecraft:blue_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:blue_dye", + }, + count = 1, + }, + [ "minecraft:yellow_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:yellow_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:shield" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:purpur_stairs" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:purpur_block", + }, + [ 8 ] = { + item = "minecraft:purpur_block", + }, + [ 5 ] = { + item = "minecraft:purpur_block", + }, + [ 4 ] = { + item = "minecraft:purpur_block", + }, + [ 7 ] = { + item = "minecraft:purpur_block", + }, + [ 9 ] = { + item = "minecraft:purpur_block", + }, + }, + count = 4, + }, + [ "minecraft:lime_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:lime_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:iron_chestplate" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 8 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:cut_copper_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:cut_copper", + [ 3 ] = "minecraft:cut_copper", + [ 2 ] = "minecraft:cut_copper", + }, + count = 6, + }, + [ "minecraft:andesite_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:andesite", + [ 3 ] = "minecraft:andesite", + [ 2 ] = "minecraft:andesite", + [ 5 ] = "minecraft:andesite", + [ 4 ] = "minecraft:andesite", + [ 6 ] = "minecraft:andesite", + }, + count = 6, + }, + [ "minecraft:rail" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 16, + }, + [ "minecraft:map" ] = { + ingredients = { + [ 1 ] = "minecraft:paper", + [ 3 ] = "minecraft:paper", + [ 2 ] = "minecraft:paper", + [ 5 ] = "minecraft:compass", + [ 4 ] = "minecraft:paper", + [ 7 ] = "minecraft:paper", + [ 6 ] = "minecraft:paper", + [ 9 ] = "minecraft:paper", + [ 8 ] = "minecraft:paper", + }, + count = 1, + }, + [ "minecraft:pink_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:pink_dye", + }, + count = 1, + }, + [ "minecraft:black_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:black_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:black_wool", + [ 2 ] = "minecraft:black_wool", + [ 5 ] = "minecraft:black_wool", + [ 4 ] = "minecraft:black_wool", + [ 6 ] = "minecraft:black_wool", + }, + count = 1, + }, + [ "minecraft:light_blue_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:light_blue_dye", + }, + count = 1, + }, + [ "minecraft:yellow_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:yellow_dye", + }, + count = 1, + }, + [ "minecraft:oak_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_log", + }, + count = 4, + }, + [ "minecraft:magenta_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:magenta_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:polished_andesite_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_andesite", + [ 3 ] = "minecraft:polished_andesite", + [ 2 ] = "minecraft:polished_andesite", + }, + count = 6, + }, + [ "minecraft:comparator" ] = { + ingredients = { + [ 9 ] = "minecraft:stone", + [ 8 ] = "minecraft:stone", + [ 2 ] = "minecraft:redstone_torch", + [ 5 ] = "minecraft:quartz", + [ 4 ] = "minecraft:redstone_torch", + [ 7 ] = "minecraft:stone", + [ 6 ] = "minecraft:redstone_torch", + }, + count = 1, + }, + [ "minecraft:cyan_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:cyan_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:crimson_hyphae" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_stem", + [ 4 ] = "minecraft:crimson_stem", + [ 3 ] = "minecraft:crimson_stem", + [ 2 ] = "minecraft:crimson_stem", + }, + count = 3, + }, + [ "minecraft:chest_minecart" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:minecart", + }, + count = 1, + }, + [ "minecraft:acacia_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + [ 3 ] = "minecraft:acacia_planks", + [ 5 ] = "minecraft:acacia_planks", + [ 4 ] = "minecraft:acacia_planks", + [ 6 ] = "minecraft:acacia_planks", + }, + count = 1, + }, + [ "minecraft:jungle_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + [ 8 ] = "minecraft:jungle_planks", + [ 5 ] = "minecraft:jungle_planks", + [ 4 ] = "minecraft:jungle_planks", + [ 7 ] = "minecraft:jungle_planks", + [ 9 ] = "minecraft:jungle_planks", + }, + count = 4, + }, + [ "minecraft:chest" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:acacia_chest_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:acacia_boat", + }, + count = 1, + }, + [ "minecraft:light_blue_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:light_blue_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:jungle_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:jungle_planks", + [ 5 ] = "minecraft:jungle_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:mangrove_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + [ 3 ] = "minecraft:mangrove_planks", + [ 2 ] = "minecraft:mangrove_planks", + [ 5 ] = "minecraft:mangrove_planks", + [ 4 ] = "minecraft:mangrove_planks", + [ 6 ] = "minecraft:mangrove_planks", + }, + count = 2, + }, + [ "minecraft:mangrove_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + [ 3 ] = "minecraft:mangrove_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:mangrove_planks", + [ 6 ] = "minecraft:mangrove_planks", + }, + count = 3, + }, + [ "minecraft:fire_charge" ] = { + ingredients = { + [ 1 ] = "minecraft:gunpowder", + [ 2 ] = "minecraft:blaze_powder", + }, + count = 3, + }, + [ "minecraft:nether_brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:nether_bricks", + [ 3 ] = "minecraft:nether_bricks", + [ 2 ] = "minecraft:nether_bricks", + [ 5 ] = "minecraft:nether_bricks", + [ 4 ] = "minecraft:nether_bricks", + [ 6 ] = "minecraft:nether_bricks", + }, + count = 6, + }, + [ "minecraft:brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:bricks", + [ 3 ] = "minecraft:bricks", + [ 2 ] = "minecraft:bricks", + [ 5 ] = "minecraft:bricks", + [ 4 ] = "minecraft:bricks", + [ 6 ] = "minecraft:bricks", + }, + count = 6, + }, + [ "minecraft:powered_rail" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 8 ] = "minecraft:redstone", + [ 3 ] = "minecraft:gold_ingot", + [ 9 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + }, + count = 6, + }, + [ "minecraft:waxed_cut_copper_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:cut_copper_slab", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:dark_prismarine" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine_shard", + [ 3 ] = "minecraft:prismarine_shard", + [ 2 ] = "minecraft:prismarine_shard", + [ 5 ] = "minecraft:black_dye", + [ 4 ] = "minecraft:prismarine_shard", + [ 7 ] = "minecraft:prismarine_shard", + [ 6 ] = "minecraft:prismarine_shard", + [ 9 ] = "minecraft:prismarine_shard", + [ 8 ] = "minecraft:prismarine_shard", + }, + count = 1, + }, + [ "minecraft:diamond_leggings" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 3 ] = "minecraft:diamond", + [ 2 ] = "minecraft:diamond", + [ 9 ] = "minecraft:diamond", + [ 4 ] = "minecraft:diamond", + [ 7 ] = "minecraft:diamond", + [ 6 ] = "minecraft:diamond", + }, + count = 1, + }, + [ "minecraft:white_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:string", + [ 4 ] = "minecraft:string", + [ 3 ] = "minecraft:string", + [ 2 ] = "minecraft:string", + }, + count = 1, + }, + [ "minecraft:yellow_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:yellow_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:leather_leggings" ] = { + ingredients = { + [ 1 ] = "minecraft:leather", + [ 3 ] = "minecraft:leather", + [ 2 ] = "minecraft:leather", + [ 9 ] = "minecraft:leather", + [ 4 ] = "minecraft:leather", + [ 7 ] = "minecraft:leather", + [ 6 ] = "minecraft:leather", + }, + count = 1, + }, + [ "minecraft:deepslate_tile_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:deepslate_tiles", + [ 3 ] = "minecraft:deepslate_tiles", + [ 2 ] = "minecraft:deepslate_tiles", + [ 5 ] = "minecraft:deepslate_tiles", + [ 4 ] = "minecraft:deepslate_tiles", + [ 6 ] = "minecraft:deepslate_tiles", + }, + count = 6, + }, + [ "minecraft:brown_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:cocoa_beans", + }, + count = 1, + }, + [ "minecraft:orange_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:orange_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:purpur_slab" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:purpur_block", + }, + [ 3 ] = { + item = "minecraft:purpur_block", + }, + [ 2 ] = { + item = "minecraft:purpur_block", + }, + }, + count = 6, + }, + [ "minecraft:mangrove_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + [ 3 ] = "minecraft:mangrove_planks", + [ 5 ] = "minecraft:mangrove_planks", + [ 4 ] = "minecraft:mangrove_planks", + [ 6 ] = "minecraft:mangrove_planks", + }, + count = 1, + }, + [ "minecraft:cartography_table" ] = { + ingredients = { + [ 1 ] = "minecraft:paper", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:paper", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:stone_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:stone_bricks", + [ 3 ] = "minecraft:stone_bricks", + [ 2 ] = "minecraft:stone_bricks", + }, + count = 6, + }, + [ "minecraft:birch_button" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + }, + count = 1, + }, + [ "minecraft:purple_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:purple_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:magenta_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:magenta_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:crimson_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:crimson_planks", + [ 2 ] = "minecraft:crimson_planks", + [ 5 ] = "minecraft:crimson_planks", + [ 4 ] = "minecraft:crimson_planks", + [ 6 ] = "minecraft:crimson_planks", + }, + count = 3, + }, + [ "minecraft:waxed_weathered_cut_copper_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:weathered_cut_copper_stairs", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:black_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:black_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:packed_mud" ] = { + ingredients = { + [ 1 ] = "minecraft:mud", + [ 2 ] = "minecraft:wheat", + }, + count = 1, + }, + [ "minecraft:brown_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:brown_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:bricks", + [ 3 ] = "minecraft:bricks", + [ 2 ] = "minecraft:bricks", + }, + count = 6, + }, + [ "minecraft:waxed_exposed_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:exposed_copper", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:cookie" ] = { + ingredients = { + [ 1 ] = "minecraft:wheat", + [ 3 ] = "minecraft:wheat", + [ 2 ] = "minecraft:cocoa_beans", + }, + count = 8, + }, + [ "minecraft:golden_shovel" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:mangrove_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + [ 2 ] = "minecraft:mangrove_planks", + }, + count = 1, + }, + [ "minecraft:jungle_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + [ 3 ] = "minecraft:jungle_planks", + [ 5 ] = "minecraft:jungle_planks", + [ 4 ] = "minecraft:jungle_planks", + [ 6 ] = "minecraft:jungle_planks", + }, + count = 1, + }, + [ "minecraft:observer" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:redstone", + [ 4 ] = "minecraft:redstone", + [ 7 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:quartz", + [ 9 ] = "minecraft:cobblestone", + [ 8 ] = "minecraft:cobblestone", + }, + count = 1, + }, + [ "minecraft:netherite_ingot" ] = { + ingredients = { + [ 1 ] = "minecraft:netherite_block", + }, + count = 9, + }, + [ "minecraft:muddy_mangrove_roots" ] = { + ingredients = { + [ 1 ] = "minecraft:mud", + [ 2 ] = "minecraft:mangrove_roots", + }, + count = 1, + }, + [ "minecraft:orange_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:orange_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:blue_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:blue_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:polished_diorite_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_diorite", + [ 3 ] = "minecraft:polished_diorite", + [ 2 ] = "minecraft:polished_diorite", + }, + count = 6, + }, + [ "minecraft:deepslate_tile_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:deepslate_tiles", + [ 3 ] = "minecraft:deepslate_tiles", + [ 2 ] = "minecraft:deepslate_tiles", + }, + count = 6, + }, + [ "minecraft:cyan_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:cyan_dye", + }, + count = 1, + }, + [ "minecraft:diorite_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:diorite", + [ 8 ] = "minecraft:diorite", + [ 5 ] = "minecraft:diorite", + [ 4 ] = "minecraft:diorite", + [ 7 ] = "minecraft:diorite", + [ 9 ] = "minecraft:diorite", + }, + count = 4, + }, + [ "minecraft:gray_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:gray_dye", + }, + count = 1, + }, + [ "minecraft:loom" ] = { + ingredients = { + [ 1 ] = "minecraft:string", + [ 4 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:string", + }, + count = 1, + }, + [ "minecraft:green_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:green_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:green_wool", + [ 2 ] = "minecraft:green_wool", + [ 5 ] = "minecraft:green_wool", + [ 4 ] = "minecraft:green_wool", + [ 6 ] = "minecraft:green_wool", + }, + count = 1, + }, + [ "minecraft:crimson_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:crimson_planks", + [ 5 ] = "minecraft:crimson_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:carrot_on_a_stick" ] = { + ingredients = { + [ 1 ] = "minecraft:fishing_rod", + [ 4 ] = "minecraft:carrot", + }, + count = 1, + }, + [ "minecraft:waxed_oxidized_cut_copper_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:oxidized_cut_copper_stairs", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:yellow_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:yellow_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:iron_hoe" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + [ 2 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:blackstone_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:blackstone", + [ 8 ] = "minecraft:blackstone", + [ 5 ] = "minecraft:blackstone", + [ 4 ] = "minecraft:blackstone", + [ 7 ] = "minecraft:blackstone", + [ 9 ] = "minecraft:blackstone", + }, + count = 4, + }, + [ "minecraft:sandstone_slab" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:sandstone", + }, + [ 3 ] = { + item = "minecraft:sandstone", + }, + [ 2 ] = { + item = "minecraft:sandstone", + }, + }, + count = 6, + }, + [ "minecraft:brown_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:brown_dye", + }, + count = 1, + }, + [ "minecraft:light_blue_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:light_blue_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:light_blue_wool", + [ 2 ] = "minecraft:light_blue_wool", + [ 5 ] = "minecraft:light_blue_wool", + [ 4 ] = "minecraft:light_blue_wool", + [ 6 ] = "minecraft:light_blue_wool", + }, + count = 1, + }, + [ "minecraft:golden_leggings" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + [ 9 ] = "minecraft:gold_ingot", + [ 4 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:moss_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:moss_block", + [ 2 ] = "minecraft:moss_block", + }, + count = 3, + }, + [ "minecraft:birch_chest_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:birch_boat", + }, + count = 1, + }, + [ "minecraft:lantern" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_nugget", + [ 3 ] = "minecraft:iron_nugget", + [ 2 ] = "minecraft:iron_nugget", + [ 5 ] = "minecraft:torch", + [ 4 ] = "minecraft:iron_nugget", + [ 7 ] = "minecraft:iron_nugget", + [ 6 ] = "minecraft:iron_nugget", + [ 9 ] = "minecraft:iron_nugget", + [ 8 ] = "minecraft:iron_nugget", + }, + count = 1, + }, + [ "minecraft:mangrove_button" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + }, + count = 1, + }, + [ "minecraft:dark_prismarine_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_prismarine", + [ 3 ] = "minecraft:dark_prismarine", + [ 2 ] = "minecraft:dark_prismarine", + }, + count = 6, + }, + [ "minecraft:detector_rail" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 8 ] = "minecraft:redstone", + [ 3 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:stone_pressure_plate", + [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 6, + }, + [ "minecraft:leather_chestplate" ] = { + ingredients = { + [ 1 ] = "minecraft:leather", + [ 8 ] = "minecraft:leather", + [ 3 ] = "minecraft:leather", + [ 9 ] = "minecraft:leather", + [ 5 ] = "minecraft:leather", + [ 4 ] = "minecraft:leather", + [ 7 ] = "minecraft:leather", + [ 6 ] = "minecraft:leather", + }, + count = 1, + }, + [ "minecraft:mangrove_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_log", + [ 4 ] = "minecraft:mangrove_log", + [ 3 ] = "minecraft:mangrove_log", + [ 2 ] = "minecraft:mangrove_log", + }, + count = 3, + }, + [ "minecraft:polished_deepslate_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_deepslate", + [ 3 ] = "minecraft:polished_deepslate", + [ 2 ] = "minecraft:polished_deepslate", + }, + count = 6, + }, + [ "minecraft:deepslate_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:deepslate_bricks", + [ 8 ] = "minecraft:deepslate_bricks", + [ 5 ] = "minecraft:deepslate_bricks", + [ 4 ] = "minecraft:deepslate_bricks", + [ 7 ] = "minecraft:deepslate_bricks", + [ 9 ] = "minecraft:deepslate_bricks", + }, + count = 4, + }, + [ "minecraft:redstone" ] = { + ingredients = { + [ 1 ] = "minecraft:redstone_block", + }, + count = 9, + }, + [ "minecraft:jungle_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + [ 2 ] = "minecraft:jungle_planks", + }, + count = 1, + }, + [ "minecraft:polished_blackstone" ] = { + ingredients = { + [ 1 ] = "minecraft:blackstone", + [ 4 ] = "minecraft:blackstone", + [ 3 ] = "minecraft:blackstone", + [ 2 ] = "minecraft:blackstone", + }, + count = 4, + }, + [ "minecraft:waxed_weathered_cut_copper_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:weathered_cut_copper_slab", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:golden_helmet" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + [ 4 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:oak_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:end_stone_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:end_stone", + [ 4 ] = "minecraft:end_stone", + [ 3 ] = "minecraft:end_stone", + [ 2 ] = "minecraft:end_stone", + }, + count = 4, + }, + [ "minecraft:acacia_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + [ 3 ] = "minecraft:acacia_planks", + [ 2 ] = "minecraft:acacia_planks", + [ 5 ] = "minecraft:acacia_planks", + [ 4 ] = "minecraft:acacia_planks", + [ 6 ] = "minecraft:acacia_planks", + }, + count = 2, + }, + [ "minecraft:mossy_stone_brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:mossy_stone_bricks", + [ 3 ] = "minecraft:mossy_stone_bricks", + [ 2 ] = "minecraft:mossy_stone_bricks", + [ 5 ] = "minecraft:mossy_stone_bricks", + [ 4 ] = "minecraft:mossy_stone_bricks", + [ 6 ] = "minecraft:mossy_stone_bricks", + }, + count = 6, + }, + [ "minecraft:cyan_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:cyan_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:nether_wart_block" ] = { + ingredients = { + [ 1 ] = "minecraft:nether_wart", + [ 3 ] = "minecraft:nether_wart", + [ 2 ] = "minecraft:nether_wart", + [ 5 ] = "minecraft:nether_wart", + [ 4 ] = "minecraft:nether_wart", + [ 7 ] = "minecraft:nether_wart", + [ 6 ] = "minecraft:nether_wart", + [ 9 ] = "minecraft:nether_wart", + [ 8 ] = "minecraft:nether_wart", + }, + count = 1, + }, + [ "minecraft:soul_torch" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:coal", + }, + [ 3 ] = "minecraft:soul_sand", + [ 2 ] = "minecraft:stick", + }, + count = 4, + }, + [ "minecraft:note_block" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:redstone", + [ 4 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:diamond_shovel" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:warped_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:warped_planks", + [ 5 ] = "minecraft:warped_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:polished_blackstone_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone", + [ 4 ] = "minecraft:polished_blackstone", + [ 3 ] = "minecraft:polished_blackstone", + [ 2 ] = "minecraft:polished_blackstone", + }, + count = 4, + }, + [ "minecraft:birch_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:birch_planks", + [ 5 ] = "minecraft:birch_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:yellow_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:yellow_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:mossy_cobblestone_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:mossy_cobblestone", + [ 3 ] = "minecraft:mossy_cobblestone", + [ 2 ] = "minecraft:mossy_cobblestone", + [ 5 ] = "minecraft:mossy_cobblestone", + [ 4 ] = "minecraft:mossy_cobblestone", + [ 6 ] = "minecraft:mossy_cobblestone", + }, + count = 6, + }, + [ "minecraft:emerald_block" ] = { + ingredients = { + [ 1 ] = "minecraft:emerald", + [ 3 ] = "minecraft:emerald", + [ 2 ] = "minecraft:emerald", + [ 5 ] = "minecraft:emerald", + [ 4 ] = "minecraft:emerald", + [ 7 ] = "minecraft:emerald", + [ 6 ] = "minecraft:emerald", + [ 9 ] = "minecraft:emerald", + [ 8 ] = "minecraft:emerald", + }, + count = 1, + }, + [ "minecraft:prismarine_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine_bricks", + [ 8 ] = "minecraft:prismarine_bricks", + [ 5 ] = "minecraft:prismarine_bricks", + [ 4 ] = "minecraft:prismarine_bricks", + [ 7 ] = "minecraft:prismarine_bricks", + [ 9 ] = "minecraft:prismarine_bricks", + }, + count = 4, + }, + [ "minecraft:purple_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:purple_dye", + }, + count = 1, + }, + [ "minecraft:cyan_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:cyan_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:cyan_wool", + [ 2 ] = "minecraft:cyan_wool", + [ 5 ] = "minecraft:cyan_wool", + [ 4 ] = "minecraft:cyan_wool", + [ 6 ] = "minecraft:cyan_wool", + }, + count = 1, + }, + [ "minecraft:gray_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:gray_dye", + }, + count = 1, + }, + [ "minecraft:yellow_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:sunflower", + }, + count = 2, + }, + [ "minecraft:diorite_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:diorite", + [ 3 ] = "minecraft:diorite", + [ 2 ] = "minecraft:diorite", + }, + count = 6, + }, + [ "minecraft:glow_item_frame" ] = { + ingredients = { + [ 1 ] = "minecraft:item_frame", + [ 2 ] = "minecraft:glow_ink_sac", + }, + count = 1, + }, + [ "minecraft:stripped_dark_oak_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_dark_oak_log", + [ 4 ] = "minecraft:stripped_dark_oak_log", + [ 3 ] = "minecraft:stripped_dark_oak_log", + [ 2 ] = "minecraft:stripped_dark_oak_log", + }, + count = 3, + }, + [ "minecraft:waxed_cut_copper_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:cut_copper_stairs", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:blue_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:blue_dye", + }, + count = 1, + }, + [ "minecraft:purple_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:purple_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:dark_oak_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + [ 3 ] = "minecraft:dark_oak_planks", + [ 5 ] = "minecraft:dark_oak_planks", + [ 4 ] = "minecraft:dark_oak_planks", + [ 6 ] = "minecraft:dark_oak_planks", + }, + count = 1, + }, + [ "minecraft:orange_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:orange_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:sandstone_stairs" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:sandstone", + }, + [ 8 ] = { + item = "minecraft:sandstone", + }, + [ 5 ] = { + item = "minecraft:sandstone", + }, + [ 4 ] = { + item = "minecraft:sandstone", + }, + [ 7 ] = { + item = "minecraft:sandstone", + }, + [ 9 ] = { + item = "minecraft:sandstone", + }, + }, + count = 4, + }, + [ "minecraft:smithing_table" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:dark_oak_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_log", + [ 4 ] = "minecraft:dark_oak_log", + [ 3 ] = "minecraft:dark_oak_log", + [ 2 ] = "minecraft:dark_oak_log", + }, + count = 3, + }, + [ "minecraft:arrow" ] = { + ingredients = { + [ 1 ] = "minecraft:flint", + [ 3 ] = "minecraft:feather", + [ 2 ] = "minecraft:stick", + }, + count = 4, + }, + [ "minecraft:polished_granite" ] = { + ingredients = { + [ 1 ] = "minecraft:granite", + [ 4 ] = "minecraft:granite", + [ 3 ] = "minecraft:granite", + [ 2 ] = "minecraft:granite", + }, + count = 4, + }, + [ "minecraft:golden_pickaxe" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:gray_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:gray_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:jungle_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:jungle_planks", + [ 2 ] = "minecraft:jungle_planks", + [ 5 ] = "minecraft:jungle_planks", + [ 4 ] = "minecraft:jungle_planks", + [ 6 ] = "minecraft:jungle_planks", + }, + count = 3, + }, + [ "minecraft:exposed_cut_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:exposed_copper", + [ 4 ] = "minecraft:exposed_copper", + [ 3 ] = "minecraft:exposed_copper", + [ 2 ] = "minecraft:exposed_copper", + }, + count = 4, + }, + [ "minecraft:spectral_arrow" ] = { + ingredients = { + [ 8 ] = "minecraft:glowstone_dust", + [ 2 ] = "minecraft:glowstone_dust", + [ 5 ] = "minecraft:arrow", + [ 4 ] = "minecraft:glowstone_dust", + [ 6 ] = "minecraft:glowstone_dust", + }, + count = 2, + }, + [ "minecraft:acacia_door" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + [ 3 ] = "minecraft:acacia_planks", + [ 2 ] = "minecraft:acacia_planks", + [ 5 ] = "minecraft:acacia_planks", + [ 4 ] = "minecraft:acacia_planks", + [ 6 ] = "minecraft:acacia_planks", + }, + count = 3, + }, + [ "minecraft:warped_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_planks", + [ 3 ] = "minecraft:warped_planks", + [ 2 ] = "minecraft:warped_planks", + }, + count = 6, + }, + [ "minecraft:crimson_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_planks", + [ 8 ] = "minecraft:crimson_planks", + [ 5 ] = "minecraft:crimson_planks", + [ 4 ] = "minecraft:crimson_planks", + [ 7 ] = "minecraft:crimson_planks", + [ 9 ] = "minecraft:crimson_planks", + }, + count = 4, + }, + [ "minecraft:cut_copper_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:cut_copper", + [ 8 ] = "minecraft:cut_copper", + [ 5 ] = "minecraft:cut_copper", + [ 4 ] = "minecraft:cut_copper", + [ 7 ] = "minecraft:cut_copper", + [ 9 ] = "minecraft:cut_copper", + }, + count = 4, + }, + [ "minecraft:black_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:black_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:prismarine_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine", + [ 8 ] = "minecraft:prismarine", + [ 5 ] = "minecraft:prismarine", + [ 4 ] = "minecraft:prismarine", + [ 7 ] = "minecraft:prismarine", + [ 9 ] = "minecraft:prismarine", + }, + count = 4, + }, + [ "minecraft:warped_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_planks", + [ 3 ] = "minecraft:warped_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:warped_planks", + [ 6 ] = "minecraft:warped_planks", + }, + count = 3, + }, + [ "minecraft:light_gray_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:light_gray_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:andesite_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:andesite", + [ 3 ] = "minecraft:andesite", + [ 2 ] = "minecraft:andesite", + }, + count = 6, + }, + [ "minecraft:stripped_crimson_hyphae" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_crimson_stem", + [ 4 ] = "minecraft:stripped_crimson_stem", + [ 3 ] = "minecraft:stripped_crimson_stem", + [ 2 ] = "minecraft:stripped_crimson_stem", + }, + count = 3, + }, + [ "minecraft:pumpkin_pie" ] = { + ingredients = { + [ 1 ] = "minecraft:pumpkin", + [ 3 ] = "minecraft:egg", + [ 2 ] = "minecraft:sugar", + }, + count = 1, + }, + [ "minecraft:red_nether_brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:red_nether_bricks", + [ 3 ] = "minecraft:red_nether_bricks", + [ 2 ] = "minecraft:red_nether_bricks", + [ 5 ] = "minecraft:red_nether_bricks", + [ 4 ] = "minecraft:red_nether_bricks", + [ 6 ] = "minecraft:red_nether_bricks", + }, + count = 6, + }, + [ "minecraft:light_gray_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:light_gray_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:brown_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:brown_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:acacia_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:acacia_planks", + [ 2 ] = "minecraft:acacia_planks", + [ 5 ] = "minecraft:acacia_planks", + [ 4 ] = "minecraft:acacia_planks", + [ 6 ] = "minecraft:acacia_planks", + }, + count = 3, + }, + [ "minecraft:pink_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:pink_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:granite" ] = { + ingredients = { + [ 1 ] = "minecraft:diorite", + [ 2 ] = "minecraft:quartz", + }, + count = 1, + }, + [ "minecraft:iron_block" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 8 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:diamond_sword" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:diamond", + }, + count = 1, + }, + [ "minecraft:minecart" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:diamond_block" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 3 ] = "minecraft:diamond", + [ 2 ] = "minecraft:diamond", + [ 5 ] = "minecraft:diamond", + [ 4 ] = "minecraft:diamond", + [ 7 ] = "minecraft:diamond", + [ 6 ] = "minecraft:diamond", + [ 9 ] = "minecraft:diamond", + [ 8 ] = "minecraft:diamond", + }, + count = 1, + }, + [ "minecraft:cut_red_sandstone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:cut_red_sandstone", + [ 3 ] = "minecraft:cut_red_sandstone", + [ 2 ] = "minecraft:cut_red_sandstone", + }, + count = 6, + }, + [ "minecraft:dispenser" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:bow", + [ 4 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + [ 8 ] = "minecraft:redstone", + }, + count = 1, + }, + [ "minecraft:black_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:black_dye", + }, + count = 1, + }, + [ "minecraft:nether_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:nether_bricks", + [ 8 ] = "minecraft:nether_bricks", + [ 5 ] = "minecraft:nether_bricks", + [ 4 ] = "minecraft:nether_bricks", + [ 7 ] = "minecraft:nether_bricks", + [ 9 ] = "minecraft:nether_bricks", + }, + count = 4, + }, + [ "minecraft:honey_bottle" ] = { + ingredients = { + [ 1 ] = "minecraft:honey_block", + [ 3 ] = "minecraft:glass_bottle", + [ 2 ] = "minecraft:glass_bottle", + [ 5 ] = "minecraft:glass_bottle", + [ 4 ] = "minecraft:glass_bottle", + }, + count = 4, + }, + [ "minecraft:mossy_stone_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:mossy_stone_bricks", + [ 3 ] = "minecraft:mossy_stone_bricks", + [ 2 ] = "minecraft:mossy_stone_bricks", + }, + count = 6, + }, + [ "minecraft:stripped_acacia_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_acacia_log", + [ 4 ] = "minecraft:stripped_acacia_log", + [ 3 ] = "minecraft:stripped_acacia_log", + [ 2 ] = "minecraft:stripped_acacia_log", + }, + count = 3, + }, + [ "minecraft:lime_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:lime_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:coal_block" ] = { + ingredients = { + [ 1 ] = "minecraft:coal", + [ 3 ] = "minecraft:coal", + [ 2 ] = "minecraft:coal", + [ 5 ] = "minecraft:coal", + [ 4 ] = "minecraft:coal", + [ 7 ] = "minecraft:coal", + [ 6 ] = "minecraft:coal", + [ 9 ] = "minecraft:coal", + [ 8 ] = "minecraft:coal", + }, + count = 1, + }, + [ "minecraft:honey_block" ] = { + ingredients = { + [ 1 ] = "minecraft:honey_bottle", + [ 4 ] = "minecraft:honey_bottle", + [ 3 ] = "minecraft:honey_bottle", + [ 2 ] = "minecraft:honey_bottle", + }, + count = 1, + }, + [ "minecraft:polished_andesite" ] = { + ingredients = { + [ 1 ] = "minecraft:andesite", + [ 4 ] = "minecraft:andesite", + [ 3 ] = "minecraft:andesite", + [ 2 ] = "minecraft:andesite", + }, + count = 4, + }, + [ "minecraft:stone_brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:stone_bricks", + [ 3 ] = "minecraft:stone_bricks", + [ 2 ] = "minecraft:stone_bricks", + [ 5 ] = "minecraft:stone_bricks", + [ 4 ] = "minecraft:stone_bricks", + [ 6 ] = "minecraft:stone_bricks", + }, + count = 6, + }, + [ "minecraft:blaze_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:blaze_rod", + }, + count = 2, + }, + [ "minecraft:lodestone" ] = { + ingredients = { + [ 1 ] = "minecraft:chiseled_stone_bricks", + [ 3 ] = "minecraft:chiseled_stone_bricks", + [ 2 ] = "minecraft:chiseled_stone_bricks", + [ 5 ] = "minecraft:netherite_ingot", + [ 4 ] = "minecraft:chiseled_stone_bricks", + [ 7 ] = "minecraft:chiseled_stone_bricks", + [ 6 ] = "minecraft:chiseled_stone_bricks", + [ 9 ] = "minecraft:chiseled_stone_bricks", + [ 8 ] = "minecraft:chiseled_stone_bricks", + }, + count = 1, + }, + [ "minecraft:flower_pot" ] = { + ingredients = { + [ 1 ] = "minecraft:brick", + [ 3 ] = "minecraft:brick", + [ 5 ] = "minecraft:brick", + }, + count = 1, + }, + [ "minecraft:birch_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + [ 3 ] = "minecraft:birch_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:birch_planks", + [ 6 ] = "minecraft:birch_planks", + }, + count = 3, + }, + [ "minecraft:cobbled_deepslate_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:cobbled_deepslate", + [ 3 ] = "minecraft:cobbled_deepslate", + [ 2 ] = "minecraft:cobbled_deepslate", + }, + count = 6, + }, + [ "minecraft:iron_nugget" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + }, + count = 9, + }, + [ "minecraft:acacia_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + [ 2 ] = "minecraft:acacia_planks", + }, + count = 1, + }, + [ "minecraft:bone_block" ] = { + ingredients = { + [ 1 ] = "minecraft:bone_meal", + [ 3 ] = "minecraft:bone_meal", + [ 2 ] = "minecraft:bone_meal", + [ 5 ] = "minecraft:bone_meal", + [ 4 ] = "minecraft:bone_meal", + [ 7 ] = "minecraft:bone_meal", + [ 6 ] = "minecraft:bone_meal", + [ 9 ] = "minecraft:bone_meal", + [ 8 ] = "minecraft:bone_meal", + }, + count = 1, + }, + [ "minecraft:purple_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:purple_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:purple_wool", + [ 2 ] = "minecraft:purple_wool", + [ 5 ] = "minecraft:purple_wool", + [ 4 ] = "minecraft:purple_wool", + [ 6 ] = "minecraft:purple_wool", + }, + count = 1, + }, + [ "minecraft:stripped_spruce_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_spruce_log", + [ 4 ] = "minecraft:stripped_spruce_log", + [ 3 ] = "minecraft:stripped_spruce_log", + [ 2 ] = "minecraft:stripped_spruce_log", + }, + count = 3, + }, + [ "minecraft:mossy_stone_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:mossy_stone_bricks", + [ 8 ] = "minecraft:mossy_stone_bricks", + [ 5 ] = "minecraft:mossy_stone_bricks", + [ 4 ] = "minecraft:mossy_stone_bricks", + [ 7 ] = "minecraft:mossy_stone_bricks", + [ 9 ] = "minecraft:mossy_stone_bricks", + }, + count = 4, + }, + [ "minecraft:spruce_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_log", + }, + count = 4, + }, + [ "minecraft:furnace_minecart" ] = { + ingredients = { + [ 1 ] = "minecraft:furnace", + [ 2 ] = "minecraft:minecart", + }, + count = 1, + }, + [ "minecraft:iron_leggings" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:blue_ice" ] = { + ingredients = { + [ 1 ] = "minecraft:packed_ice", + [ 3 ] = "minecraft:packed_ice", + [ 2 ] = "minecraft:packed_ice", + [ 5 ] = "minecraft:packed_ice", + [ 4 ] = "minecraft:packed_ice", + [ 7 ] = "minecraft:packed_ice", + [ 6 ] = "minecraft:packed_ice", + [ 9 ] = "minecraft:packed_ice", + [ 8 ] = "minecraft:packed_ice", + }, + count = 1, + }, + [ "minecraft:trapped_chest" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:tripwire_hook", + }, + count = 1, + }, + [ "minecraft:polished_blackstone_brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone_bricks", + [ 3 ] = "minecraft:polished_blackstone_bricks", + [ 2 ] = "minecraft:polished_blackstone_bricks", + [ 5 ] = "minecraft:polished_blackstone_bricks", + [ 4 ] = "minecraft:polished_blackstone_bricks", + [ 6 ] = "minecraft:polished_blackstone_bricks", + }, + count = 6, + }, + [ "minecraft:red_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:red_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:mud_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:packed_mud", + [ 4 ] = "minecraft:packed_mud", + [ 3 ] = "minecraft:packed_mud", + [ 2 ] = "minecraft:packed_mud", + }, + count = 4, + }, + [ "minecraft:pink_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:pink_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:magma_cream" ] = { + ingredients = { + [ 1 ] = "minecraft:blaze_powder", + [ 2 ] = "minecraft:slime_ball", + }, + count = 1, + }, + [ "minecraft:birch_door" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + [ 3 ] = "minecraft:birch_planks", + [ 2 ] = "minecraft:birch_planks", + [ 5 ] = "minecraft:birch_planks", + [ 4 ] = "minecraft:birch_planks", + [ 6 ] = "minecraft:birch_planks", + }, + count = 3, + }, + [ "minecraft:mangrove_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_log", + }, + count = 4, + }, + [ "minecraft:lever" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 2 ] = "minecraft:cobblestone", + }, + count = 1, + }, + [ "minecraft:gray_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:gray_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:mud_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:mud_bricks", + [ 8 ] = "minecraft:mud_bricks", + [ 5 ] = "minecraft:mud_bricks", + [ 4 ] = "minecraft:mud_bricks", + [ 7 ] = "minecraft:mud_bricks", + [ 9 ] = "minecraft:mud_bricks", + }, + count = 4, + }, + [ "minecraft:book" ] = { + ingredients = { + [ 1 ] = "minecraft:paper", + [ 4 ] = "minecraft:leather", + [ 3 ] = "minecraft:paper", + [ 2 ] = "minecraft:paper", + }, + count = 1, + }, + [ "minecraft:crimson_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_planks", + [ 3 ] = "minecraft:crimson_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:crimson_planks", + [ 6 ] = "minecraft:crimson_planks", + }, + count = 3, + }, + [ "minecraft:iron_door" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 3, + }, + [ "minecraft:acacia_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_log", + [ 4 ] = "minecraft:acacia_log", + [ 3 ] = "minecraft:acacia_log", + [ 2 ] = "minecraft:acacia_log", + }, + count = 3, + }, + [ "minecraft:dark_oak_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:dark_oak_planks", + [ 5 ] = "minecraft:dark_oak_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:pumpkin_seeds" ] = { + ingredients = { + [ 1 ] = "minecraft:pumpkin", + }, + count = 4, + }, + [ "minecraft:wooden_sword" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:blast_furnace" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:furnace", + [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:smooth_stone", + [ 6 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:smooth_stone", + [ 8 ] = "minecraft:smooth_stone", + }, + count = 1, + }, + [ "minecraft:lime_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:green_dye", + [ 2 ] = "minecraft:white_dye", + }, + count = 2, + }, + [ "minecraft:polished_blackstone_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone", + [ 2 ] = "minecraft:polished_blackstone", + }, + count = 1, + }, + [ "minecraft:light_gray_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:white_tulip", + }, + count = 1, + }, + [ "minecraft:red_nether_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:red_nether_bricks", + [ 8 ] = "minecraft:red_nether_bricks", + [ 5 ] = "minecraft:red_nether_bricks", + [ 4 ] = "minecraft:red_nether_bricks", + [ 7 ] = "minecraft:red_nether_bricks", + [ 9 ] = "minecraft:red_nether_bricks", + }, + count = 4, + }, + [ "minecraft:stone_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:stone_bricks", + [ 8 ] = "minecraft:stone_bricks", + [ 5 ] = "minecraft:stone_bricks", + [ 4 ] = "minecraft:stone_bricks", + [ 7 ] = "minecraft:stone_bricks", + [ 9 ] = "minecraft:stone_bricks", + }, + count = 4, + }, + [ "minecraft:gold_ingot" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_nugget", + [ 3 ] = "minecraft:gold_nugget", + [ 2 ] = "minecraft:gold_nugget", + [ 5 ] = "minecraft:gold_nugget", + [ 4 ] = "minecraft:gold_nugget", + [ 7 ] = "minecraft:gold_nugget", + [ 6 ] = "minecraft:gold_nugget", + [ 9 ] = "minecraft:gold_nugget", + [ 8 ] = "minecraft:gold_nugget", + }, + count = 1, + }, + [ "minecraft:raw_iron" ] = { + ingredients = { + [ 1 ] = "minecraft:raw_iron_block", + }, + count = 9, + }, + [ "minecraft:gray_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:black_dye", + [ 2 ] = "minecraft:white_dye", + }, + count = 2, + }, + [ "minecraft:light_gray_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:light_gray_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:dropper" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 8 ] = "minecraft:redstone", + [ 3 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + [ 4 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", + }, + count = 1, + }, + [ "minecraft:ladder" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 3, + }, + [ "minecraft:leather_boots" ] = { + ingredients = { + [ 1 ] = "minecraft:leather", + [ 4 ] = "minecraft:leather", + [ 3 ] = "minecraft:leather", + [ 6 ] = "minecraft:leather", + }, + count = 1, + }, + [ "minecraft:glistering_melon_slice" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_nugget", + [ 3 ] = "minecraft:gold_nugget", + [ 2 ] = "minecraft:gold_nugget", + [ 5 ] = "minecraft:melon_slice", + [ 4 ] = "minecraft:gold_nugget", + [ 7 ] = "minecraft:gold_nugget", + [ 6 ] = "minecraft:gold_nugget", + [ 9 ] = "minecraft:gold_nugget", + [ 8 ] = "minecraft:gold_nugget", + }, + count = 1, + }, + [ "minecraft:light_blue_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:blue_dye", + [ 2 ] = "minecraft:white_dye", + }, + count = 2, + }, + [ "minecraft:oak_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 3, + }, + [ "minecraft:polished_blackstone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone", + [ 3 ] = "minecraft:polished_blackstone", + [ 2 ] = "minecraft:polished_blackstone", + }, + count = 6, + }, + [ "minecraft:ender_eye" ] = { + ingredients = { + [ 1 ] = "minecraft:ender_pearl", + [ 2 ] = "minecraft:blaze_powder", + }, + count = 1, + }, + [ "minecraft:orange_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:orange_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:crafting_table" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:polished_basalt" ] = { + ingredients = { + [ 1 ] = "minecraft:basalt", + [ 4 ] = "minecraft:basalt", + [ 3 ] = "minecraft:basalt", + [ 2 ] = "minecraft:basalt", + }, + count = 4, + }, + [ "minecraft:campfire" ] = { + ingredients = { + [ 9 ] = "minecraft:oak_log", + [ 8 ] = "minecraft:oak_log", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:coal", + [ 4 ] = "minecraft:stick", + [ 7 ] = "minecraft:oak_log", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:gold_nugget" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + }, + count = 9, + }, + [ "minecraft:oak_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_log", + [ 4 ] = "minecraft:oak_log", + [ 3 ] = "minecraft:oak_log", + [ 2 ] = "minecraft:oak_log", + }, + count = 3, + }, + [ "minecraft:end_stone_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:end_stone_bricks", + [ 3 ] = "minecraft:end_stone_bricks", + [ 2 ] = "minecraft:end_stone_bricks", + }, + count = 6, + }, + [ "minecraft:stone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:stone", + [ 3 ] = "minecraft:stone", + [ 2 ] = "minecraft:stone", + }, + count = 6, + }, + [ "minecraft:smooth_stone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:smooth_stone", + [ 3 ] = "minecraft:smooth_stone", + [ 2 ] = "minecraft:smooth_stone", + }, + count = 6, + }, + [ "minecraft:white_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:white_dye", + }, + count = 1, + }, + [ "minecraft:lime_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:lime_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:red_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:red_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:mojang_banner_pattern" ] = { + ingredients = { + [ 1 ] = "minecraft:paper", + [ 2 ] = "minecraft:enchanted_golden_apple", + }, + count = 1, + }, + [ "minecraft:dark_oak_door" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + [ 3 ] = "minecraft:dark_oak_planks", + [ 2 ] = "minecraft:dark_oak_planks", + [ 5 ] = "minecraft:dark_oak_planks", + [ 4 ] = "minecraft:dark_oak_planks", + [ 6 ] = "minecraft:dark_oak_planks", + }, + count = 3, + }, + [ "minecraft:dark_oak_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:dark_oak_planks", + [ 2 ] = "minecraft:dark_oak_planks", + [ 5 ] = "minecraft:dark_oak_planks", + [ 4 ] = "minecraft:dark_oak_planks", + [ 6 ] = "minecraft:dark_oak_planks", + }, + count = 3, + }, + [ "minecraft:red_nether_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:red_nether_bricks", + [ 3 ] = "minecraft:red_nether_bricks", + [ 2 ] = "minecraft:red_nether_bricks", + }, + count = 6, + }, + [ "minecraft:bowl" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + }, + count = 4, + }, + [ "minecraft:deepslate_brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:deepslate_bricks", + [ 3 ] = "minecraft:deepslate_bricks", + [ 2 ] = "minecraft:deepslate_bricks", + [ 5 ] = "minecraft:deepslate_bricks", + [ 4 ] = "minecraft:deepslate_bricks", + [ 6 ] = "minecraft:deepslate_bricks", + }, + count = 6, + }, + [ "minecraft:nether_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:nether_brick", + [ 4 ] = "minecraft:nether_brick", + [ 3 ] = "minecraft:nether_brick", + [ 2 ] = "minecraft:nether_brick", + }, + count = 1, + }, + [ "minecraft:polished_blackstone_brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone_bricks", + [ 8 ] = "minecraft:polished_blackstone_bricks", + [ 5 ] = "minecraft:polished_blackstone_bricks", + [ 4 ] = "minecraft:polished_blackstone_bricks", + [ 7 ] = "minecraft:polished_blackstone_bricks", + [ 9 ] = "minecraft:polished_blackstone_bricks", + }, + count = 4, + }, + [ "minecraft:oak_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:dried_kelp" ] = { + ingredients = { + [ 1 ] = "minecraft:dried_kelp_block", + }, + count = 9, + }, + [ "minecraft:polished_andesite_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_andesite", + [ 8 ] = "minecraft:polished_andesite", + [ 5 ] = "minecraft:polished_andesite", + [ 4 ] = "minecraft:polished_andesite", + [ 7 ] = "minecraft:polished_andesite", + [ 9 ] = "minecraft:polished_andesite", + }, + count = 4, + }, + [ "minecraft:brewing_stand" ] = { + ingredients = { + [ 5 ] = "minecraft:cobblestone", + [ 4 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:blaze_rod", + }, + count = 1, + }, + [ "minecraft:stripped_warped_hyphae" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_warped_stem", + [ 4 ] = "minecraft:stripped_warped_stem", + [ 3 ] = "minecraft:stripped_warped_stem", + [ 2 ] = "minecraft:stripped_warped_stem", + }, + count = 3, + }, + [ "minecraft:orange_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:orange_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:orange_wool", + [ 2 ] = "minecraft:orange_wool", + [ 5 ] = "minecraft:orange_wool", + [ 4 ] = "minecraft:orange_wool", + [ 6 ] = "minecraft:orange_wool", + }, + count = 1, + }, + [ "minecraft:raw_gold" ] = { + ingredients = { + [ 1 ] = "minecraft:raw_gold_block", + }, + count = 9, + }, + [ "minecraft:dark_oak_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + [ 3 ] = "minecraft:dark_oak_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:dark_oak_planks", + [ 6 ] = "minecraft:dark_oak_planks", + }, + count = 3, + }, + [ "minecraft:stone_pickaxe" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:bread" ] = { + ingredients = { + [ 1 ] = "minecraft:wheat", + [ 3 ] = "minecraft:wheat", + [ 2 ] = "minecraft:wheat", + }, + count = 1, + }, + [ "minecraft:andesite" ] = { + ingredients = { + [ 1 ] = "minecraft:diorite", + [ 2 ] = "minecraft:cobblestone", + }, + count = 2, + }, + [ "minecraft:bookshelf" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:book", + [ 4 ] = "minecraft:book", + [ 7 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:book", + [ 9 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:cake" ] = { + ingredients = { + [ 1 ] = "minecraft:milk_bucket", + [ 3 ] = "minecraft:milk_bucket", + [ 2 ] = "minecraft:milk_bucket", + [ 5 ] = "minecraft:egg", + [ 4 ] = "minecraft:sugar", + [ 7 ] = "minecraft:wheat", + [ 6 ] = "minecraft:sugar", + [ 9 ] = "minecraft:wheat", + [ 8 ] = "minecraft:wheat", + }, + count = 1, + }, + [ "minecraft:warped_door" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_planks", + [ 3 ] = "minecraft:warped_planks", + [ 2 ] = "minecraft:warped_planks", + [ 5 ] = "minecraft:warped_planks", + [ 4 ] = "minecraft:warped_planks", + [ 6 ] = "minecraft:warped_planks", + }, + count = 3, + }, + [ "minecraft:polished_deepslate_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_deepslate", + [ 8 ] = "minecraft:polished_deepslate", + [ 5 ] = "minecraft:polished_deepslate", + [ 4 ] = "minecraft:polished_deepslate", + [ 7 ] = "minecraft:polished_deepslate", + [ 9 ] = "minecraft:polished_deepslate", + }, + count = 4, + }, + [ "minecraft:brown_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:brown_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:brown_wool", + [ 2 ] = "minecraft:brown_wool", + [ 5 ] = "minecraft:brown_wool", + [ 4 ] = "minecraft:brown_wool", + [ 6 ] = "minecraft:brown_wool", + }, + count = 1, + }, + [ "minecraft:magenta_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:magenta_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:gray_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:gray_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:dark_oak_button" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + }, + count = 1, + }, + [ "minecraft:jungle_door" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + [ 3 ] = "minecraft:jungle_planks", + [ 2 ] = "minecraft:jungle_planks", + [ 5 ] = "minecraft:jungle_planks", + [ 4 ] = "minecraft:jungle_planks", + [ 6 ] = "minecraft:jungle_planks", + }, + count = 3, + }, + [ "minecraft:golden_boots" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 4 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:magenta_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:magenta_dye", + }, + count = 1, + }, + [ "minecraft:yellow_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:yellow_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:copper_ingot" ] = { + ingredients = { + [ 1 ] = "minecraft:waxed_copper_block", + }, + count = 9, + }, + [ "minecraft:dark_oak_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + [ 3 ] = "minecraft:dark_oak_planks", + [ 2 ] = "minecraft:dark_oak_planks", + }, + count = 6, + }, + [ "minecraft:leather_horse_armor" ] = { + ingredients = { + [ 1 ] = "minecraft:leather", + [ 3 ] = "minecraft:leather", + [ 9 ] = "minecraft:leather", + [ 5 ] = "minecraft:leather", + [ 4 ] = "minecraft:leather", + [ 7 ] = "minecraft:leather", + [ 6 ] = "minecraft:leather", + }, + count = 1, + }, + [ "minecraft:end_crystal" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:ender_eye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:ghast_tear", + }, + count = 1, + }, + [ "minecraft:compass" ] = { + ingredients = { + [ 8 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:redstone", + [ 4 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:warped_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_planks", + [ 3 ] = "minecraft:warped_planks", + [ 2 ] = "minecraft:warped_planks", + [ 5 ] = "minecraft:warped_planks", + [ 4 ] = "minecraft:warped_planks", + [ 6 ] = "minecraft:warped_planks", + }, + count = 2, + }, + [ "minecraft:oak_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:diorite_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:diorite", + [ 3 ] = "minecraft:diorite", + [ 2 ] = "minecraft:diorite", + [ 5 ] = "minecraft:diorite", + [ 4 ] = "minecraft:diorite", + [ 6 ] = "minecraft:diorite", + }, + count = 6, + }, + [ "minecraft:spruce_button" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + }, + count = 1, + }, + [ "minecraft:light_blue_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:light_blue_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:green_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:green_dye", + }, + count = 1, + }, + [ "minecraft:magenta_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:magenta_dye", + }, + count = 1, + }, + [ "minecraft:leather_helmet" ] = { + ingredients = { + [ 1 ] = "minecraft:leather", + [ 3 ] = "minecraft:leather", + [ 2 ] = "minecraft:leather", + [ 4 ] = "minecraft:leather", + [ 6 ] = "minecraft:leather", + }, + count = 1, + }, + [ "minecraft:sea_lantern" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine_shard", + [ 3 ] = "minecraft:prismarine_shard", + [ 2 ] = "minecraft:prismarine_crystals", + [ 5 ] = "minecraft:prismarine_crystals", + [ 4 ] = "minecraft:prismarine_crystals", + [ 7 ] = "minecraft:prismarine_shard", + [ 6 ] = "minecraft:prismarine_crystals", + [ 9 ] = "minecraft:prismarine_shard", + [ 8 ] = "minecraft:prismarine_crystals", + }, + count = 1, + }, + [ "minecraft:diamond" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond_block", + }, + count = 9, + }, + [ "minecraft:mossy_cobblestone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:mossy_cobblestone", + [ 3 ] = "minecraft:mossy_cobblestone", + [ 2 ] = "minecraft:mossy_cobblestone", + }, + count = 6, + }, + [ "minecraft:melon_seeds" ] = { + ingredients = { + [ 1 ] = "minecraft:melon_slice", + }, + count = 1, + }, + [ "minecraft:cobblestone_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 4 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", + }, + count = 6, + }, + [ "minecraft:jungle_button" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + }, + count = 1, + }, + [ "minecraft:deepslate_tile_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:deepslate_tiles", + [ 8 ] = "minecraft:deepslate_tiles", + [ 5 ] = "minecraft:deepslate_tiles", + [ 4 ] = "minecraft:deepslate_tiles", + [ 7 ] = "minecraft:deepslate_tiles", + [ 9 ] = "minecraft:deepslate_tiles", + }, + count = 4, + }, + [ "minecraft:oxidized_cut_copper_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:oxidized_cut_copper", + [ 3 ] = "minecraft:oxidized_cut_copper", + [ 2 ] = "minecraft:oxidized_cut_copper", + }, + count = 6, + }, + [ "minecraft:lime_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:lime_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:cobbled_deepslate_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:cobbled_deepslate", + [ 8 ] = "minecraft:cobbled_deepslate", + [ 5 ] = "minecraft:cobbled_deepslate", + [ 4 ] = "minecraft:cobbled_deepslate", + [ 7 ] = "minecraft:cobbled_deepslate", + [ 9 ] = "minecraft:cobbled_deepslate", + }, + count = 4, + }, + [ "minecraft:oak_chest_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:oak_boat", + }, + count = 1, + }, + [ "minecraft:white_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_wool", + [ 3 ] = "minecraft:white_wool", + [ 2 ] = "minecraft:white_wool", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:blue_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:blue_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:nether_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:nether_bricks", + [ 3 ] = "minecraft:nether_bricks", + [ 2 ] = "minecraft:nether_bricks", + }, + count = 6, + }, + [ "minecraft:jungle_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + [ 3 ] = "minecraft:jungle_planks", + [ 2 ] = "minecraft:jungle_planks", + [ 5 ] = "minecraft:jungle_planks", + [ 4 ] = "minecraft:jungle_planks", + [ 6 ] = "minecraft:jungle_planks", + }, + count = 2, + }, + [ "minecraft:honeycomb_block" ] = { + ingredients = { + [ 1 ] = "minecraft:honeycomb", + [ 4 ] = "minecraft:honeycomb", + [ 3 ] = "minecraft:honeycomb", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:mangrove_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:mangrove_planks", + [ 2 ] = "minecraft:mangrove_planks", + [ 5 ] = "minecraft:mangrove_planks", + [ 4 ] = "minecraft:mangrove_planks", + [ 6 ] = "minecraft:mangrove_planks", + }, + count = 3, + }, + [ "minecraft:birch_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + [ 3 ] = "minecraft:birch_planks", + [ 2 ] = "minecraft:birch_planks", + }, + count = 6, + }, + [ "minecraft:granite_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:granite", + [ 3 ] = "minecraft:granite", + [ 2 ] = "minecraft:granite", + }, + count = 6, + }, + [ "minecraft:crimson_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_planks", + [ 2 ] = "minecraft:crimson_planks", + }, + count = 1, + }, + [ "minecraft:clock" ] = { + ingredients = { + [ 8 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:redstone", + [ 4 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:light_weighted_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:diamond_pickaxe" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:diamond", + [ 2 ] = "minecraft:diamond", + [ 5 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:birch_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + [ 2 ] = "minecraft:birch_planks", + }, + count = 1, + }, + [ "minecraft:cyan_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:blue_dye", + [ 2 ] = "minecraft:green_dye", + }, + count = 2, + }, + [ "minecraft:recovery_compass" ] = { + ingredients = { + [ 1 ] = "minecraft:echo_shard", + [ 3 ] = "minecraft:echo_shard", + [ 2 ] = "minecraft:echo_shard", + [ 5 ] = "minecraft:compass", + [ 4 ] = "minecraft:echo_shard", + [ 7 ] = "minecraft:echo_shard", + [ 6 ] = "minecraft:echo_shard", + [ 9 ] = "minecraft:echo_shard", + [ 8 ] = "minecraft:echo_shard", + }, + count = 1, + }, + [ "minecraft:yellow_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:yellow_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:black_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:black_dye", + }, + count = 1, + }, + [ "minecraft:chiseled_sandstone" ] = { + ingredients = { + [ 1 ] = "minecraft:sandstone_slab", + [ 2 ] = "minecraft:sandstone_slab", + }, + count = 1, + }, + [ "minecraft:light_gray_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:light_gray_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:polished_blackstone_button" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone", + }, + count = 1, + }, + [ "minecraft:yellow_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:yellow_dye", + }, + count = 1, + }, + [ "minecraft:writable_book" ] = { + ingredients = { + [ 1 ] = "minecraft:book", + [ 3 ] = "minecraft:feather", + [ 2 ] = "minecraft:ink_sac", + }, + count = 1, + }, + [ "minecraft:yellow_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:yellow_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:yellow_wool", + [ 2 ] = "minecraft:yellow_wool", + [ 5 ] = "minecraft:yellow_wool", + [ 4 ] = "minecraft:yellow_wool", + [ 6 ] = "minecraft:yellow_wool", + }, + count = 1, + }, + [ "minecraft:furnace" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 8 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + [ 4 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", + }, + count = 1, + }, + [ "minecraft:cyan_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:cyan_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:wooden_shovel" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:wooden_pickaxe" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:wooden_hoe" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + [ 2 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:wooden_axe" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:white_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:white_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:bow" ] = { + ingredients = { + [ 9 ] = "minecraft:string", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:string", + [ 2 ] = "minecraft:stick", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:string", + }, + count = 1, + }, + [ "minecraft:white_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:white_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:white_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:lily_of_the_valley", + }, + count = 1, + }, + [ "minecraft:white_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:white_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:white_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_wool", + [ 2 ] = "minecraft:white_wool", + }, + count = 3, + }, + [ "minecraft:jungle_chest_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:jungle_boat", + }, + count = 1, + }, + [ "minecraft:white_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:white_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:white_wool", + [ 2 ] = "minecraft:white_wool", + [ 5 ] = "minecraft:white_wool", + [ 4 ] = "minecraft:white_wool", + [ 6 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:piston" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", + [ 9 ] = "minecraft:cobblestone", + [ 8 ] = "minecraft:redstone", + }, + count = 1, + }, + [ "minecraft:soul_lantern" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_nugget", + [ 3 ] = "minecraft:iron_nugget", + [ 2 ] = "minecraft:iron_nugget", + [ 5 ] = "minecraft:soul_torch", + [ 4 ] = "minecraft:iron_nugget", + [ 7 ] = "minecraft:iron_nugget", + [ 6 ] = "minecraft:iron_nugget", + [ 9 ] = "minecraft:iron_nugget", + [ 8 ] = "minecraft:iron_nugget", + }, + count = 1, + }, + [ "minecraft:weathered_cut_copper_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:weathered_cut_copper", + [ 3 ] = "minecraft:weathered_cut_copper", + [ 2 ] = "minecraft:weathered_cut_copper", + }, + count = 6, + }, + [ "minecraft:glass_bottle" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + }, + count = 3, + }, + [ "minecraft:cut_red_sandstone" ] = { + ingredients = { + [ 1 ] = "minecraft:red_sandstone", + [ 4 ] = "minecraft:red_sandstone", + [ 3 ] = "minecraft:red_sandstone", + [ 2 ] = "minecraft:red_sandstone", + }, + count = 4, + }, + [ "minecraft:weathered_cut_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:weathered_copper", + [ 4 ] = "minecraft:weathered_copper", + [ 3 ] = "minecraft:weathered_copper", + [ 2 ] = "minecraft:weathered_copper", + }, + count = 4, + }, + [ "minecraft:lapis_lazuli" ] = { + ingredients = { + [ 1 ] = "minecraft:lapis_block", + }, + count = 9, + }, + [ "minecraft:green_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:green_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:waxed_weathered_cut_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:weathered_cut_copper", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:waxed_weathered_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:weathered_copper", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:waxed_oxidized_cut_copper_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:oxidized_cut_copper_slab", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:waxed_oxidized_cut_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:oxidized_cut_copper", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:waxed_oxidized_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:oxidized_copper", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:waxed_exposed_cut_copper_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:exposed_cut_copper_stairs", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:waxed_exposed_cut_copper_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:exposed_cut_copper_slab", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:waxed_copper_block" ] = { + ingredients = { + [ 1 ] = "minecraft:copper_block", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:andesite_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:andesite", + [ 8 ] = "minecraft:andesite", + [ 5 ] = "minecraft:andesite", + [ 4 ] = "minecraft:andesite", + [ 7 ] = "minecraft:andesite", + [ 9 ] = "minecraft:andesite", + }, + count = 4, + }, + [ "minecraft:blue_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:blue_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:smooth_red_sandstone_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:smooth_red_sandstone", + [ 8 ] = "minecraft:smooth_red_sandstone", + [ 5 ] = "minecraft:smooth_red_sandstone", + [ 4 ] = "minecraft:smooth_red_sandstone", + [ 7 ] = "minecraft:smooth_red_sandstone", + [ 9 ] = "minecraft:smooth_red_sandstone", + }, + count = 4, + }, + [ "minecraft:acacia_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + [ 3 ] = "minecraft:acacia_planks", + [ 2 ] = "minecraft:acacia_planks", + }, + count = 6, + }, + [ "minecraft:chiseled_polished_blackstone" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone_slab", + [ 2 ] = "minecraft:polished_blackstone_slab", + }, + count = 1, + }, + [ "minecraft:waxed_exposed_cut_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:exposed_cut_copper", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:brown_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:brown_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:warped_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_planks", + [ 8 ] = "minecraft:warped_planks", + [ 5 ] = "minecraft:warped_planks", + [ 4 ] = "minecraft:warped_planks", + [ 7 ] = "minecraft:warped_planks", + [ 9 ] = "minecraft:warped_planks", + }, + count = 4, + }, + [ "minecraft:warped_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:warped_planks", + [ 2 ] = "minecraft:warped_planks", + [ 5 ] = "minecraft:warped_planks", + [ 4 ] = "minecraft:warped_planks", + [ 6 ] = "minecraft:warped_planks", + }, + count = 3, + }, + [ "minecraft:iron_ingot" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_nugget", + [ 3 ] = "minecraft:iron_nugget", + [ 2 ] = "minecraft:iron_nugget", + [ 5 ] = "minecraft:iron_nugget", + [ 4 ] = "minecraft:iron_nugget", + [ 7 ] = "minecraft:iron_nugget", + [ 6 ] = "minecraft:iron_nugget", + [ 9 ] = "minecraft:iron_nugget", + [ 8 ] = "minecraft:iron_nugget", + }, + count = 1, + }, + [ "minecraft:warped_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_stem", + }, + count = 4, + }, + [ "minecraft:warped_hyphae" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_stem", + [ 4 ] = "minecraft:warped_stem", + [ 3 ] = "minecraft:warped_stem", + [ 2 ] = "minecraft:warped_stem", + }, + count = 3, + }, + [ "minecraft:warped_button" ] = { + ingredients = { + [ 1 ] = "minecraft:warped_planks", + }, + count = 1, + }, + [ "minecraft:tripwire_hook" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:stick", + }, + count = 2, + }, + [ "minecraft:torch" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:coal", + }, + [ 2 ] = "minecraft:stick", + }, + count = 4, + }, + [ "minecraft:stripped_mangrove_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_mangrove_log", + [ 4 ] = "minecraft:stripped_mangrove_log", + [ 3 ] = "minecraft:stripped_mangrove_log", + [ 2 ] = "minecraft:stripped_mangrove_log", + }, + count = 3, + }, + [ "minecraft:crimson_button" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_planks", + }, + count = 1, + }, + [ "minecraft:spruce_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + [ 3 ] = "minecraft:spruce_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:spruce_planks", + [ 6 ] = "minecraft:spruce_planks", + }, + count = 3, + }, + [ "minecraft:target" ] = { + ingredients = { + [ 8 ] = "minecraft:redstone", + [ 2 ] = "minecraft:redstone", + [ 5 ] = "minecraft:hay_block", + [ 4 ] = "minecraft:redstone", + [ 6 ] = "minecraft:redstone", + }, + count = 1, + }, + [ "minecraft:stripped_oak_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_oak_log", + [ 4 ] = "minecraft:stripped_oak_log", + [ 3 ] = "minecraft:stripped_oak_log", + [ 2 ] = "minecraft:stripped_oak_log", + }, + count = 3, + }, + [ "minecraft:tnt_minecart" ] = { + ingredients = { + [ 1 ] = "minecraft:tnt", + [ 2 ] = "minecraft:minecart", + }, + count = 1, + }, + [ "minecraft:stripped_jungle_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_jungle_log", + [ 4 ] = "minecraft:stripped_jungle_log", + [ 3 ] = "minecraft:stripped_jungle_log", + [ 2 ] = "minecraft:stripped_jungle_log", + }, + count = 3, + }, + [ "minecraft:smoker" ] = { + ingredients = { + [ 8 ] = "minecraft:oak_log", + [ 2 ] = "minecraft:oak_log", + [ 5 ] = "minecraft:furnace", + [ 4 ] = "minecraft:oak_log", + [ 6 ] = "minecraft:oak_log", + }, + count = 1, + }, + [ "minecraft:jungle_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + [ 3 ] = "minecraft:jungle_planks", + [ 2 ] = "minecraft:jungle_planks", + }, + count = 6, + }, + [ "minecraft:stone_sword" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:cobblestone", + }, + count = 1, + }, + [ "minecraft:stone_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:stone", + [ 8 ] = "minecraft:stone", + [ 5 ] = "minecraft:stone", + [ 4 ] = "minecraft:stone", + [ 7 ] = "minecraft:stone", + [ 9 ] = "minecraft:stone", + }, + count = 4, + }, + [ "minecraft:dripstone_block" ] = { + ingredients = { + [ 1 ] = "minecraft:pointed_dripstone", + [ 4 ] = "minecraft:pointed_dripstone", + [ 3 ] = "minecraft:pointed_dripstone", + [ 2 ] = "minecraft:pointed_dripstone", + }, + count = 1, + }, + [ "minecraft:slime_block" ] = { + ingredients = { + [ 1 ] = "minecraft:slime_ball", + [ 3 ] = "minecraft:slime_ball", + [ 2 ] = "minecraft:slime_ball", + [ 5 ] = "minecraft:slime_ball", + [ 4 ] = "minecraft:slime_ball", + [ 7 ] = "minecraft:slime_ball", + [ 6 ] = "minecraft:slime_ball", + [ 9 ] = "minecraft:slime_ball", + [ 8 ] = "minecraft:slime_ball", + }, + count = 1, + }, + [ "minecraft:stone_shovel" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:lectern" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_slab", + [ 8 ] = "minecraft:oak_slab", + [ 3 ] = "minecraft:oak_slab", + [ 2 ] = "minecraft:oak_slab", + [ 5 ] = "minecraft:bookshelf", + }, + count = 1, + }, + [ "minecraft:blackstone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:blackstone", + [ 3 ] = "minecraft:blackstone", + [ 2 ] = "minecraft:blackstone", + }, + count = 6, + }, + [ "minecraft:pink_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:pink_dye", + }, + count = 1, + }, + [ "minecraft:birch_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_log", + }, + count = 4, + }, + [ "minecraft:stone_button" ] = { + ingredients = { + [ 1 ] = "minecraft:stone", + }, + count = 1, + }, + [ "minecraft:prismarine" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine_shard", + [ 4 ] = "minecraft:prismarine_shard", + [ 3 ] = "minecraft:prismarine_shard", + [ 2 ] = "minecraft:prismarine_shard", + }, + count = 1, + }, + [ "minecraft:oak_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:oak_planks", + }, + count = 4, + }, + [ "minecraft:melon" ] = { + ingredients = { + [ 1 ] = "minecraft:melon_slice", + [ 3 ] = "minecraft:melon_slice", + [ 2 ] = "minecraft:melon_slice", + [ 5 ] = "minecraft:melon_slice", + [ 4 ] = "minecraft:melon_slice", + [ 7 ] = "minecraft:melon_slice", + [ 6 ] = "minecraft:melon_slice", + [ 9 ] = "minecraft:melon_slice", + [ 8 ] = "minecraft:melon_slice", + }, + count = 1, + }, + [ "minecraft:stone_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:stone", + [ 4 ] = "minecraft:stone", + [ 3 ] = "minecraft:stone", + [ 2 ] = "minecraft:stone", + }, + count = 4, + }, + [ "minecraft:stone_axe" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:cobblestone", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:chiseled_quartz_block" ] = { + ingredients = { + [ 1 ] = "minecraft:quartz_slab", + [ 2 ] = "minecraft:quartz_slab", + }, + count = 1, + }, + [ "minecraft:acacia_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + [ 3 ] = "minecraft:acacia_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:acacia_planks", + [ 6 ] = "minecraft:acacia_planks", + }, + count = 3, + }, + [ "minecraft:sticky_piston" ] = { + ingredients = { + [ 1 ] = "minecraft:slime_ball", + [ 2 ] = "minecraft:piston", + }, + count = 1, + }, + [ "minecraft:stick" ] = { + ingredients = { + [ 1 ] = "minecraft:bamboo", + [ 2 ] = "minecraft:bamboo", + }, + count = 1, + }, + [ "minecraft:spyglass" ] = { + ingredients = { + [ 5 ] = "minecraft:copper_ingot", + [ 8 ] = "minecraft:copper_ingot", + [ 2 ] = "minecraft:amethyst_shard", + }, + count = 1, + }, + [ "minecraft:spruce_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_log", + [ 4 ] = "minecraft:spruce_log", + [ 3 ] = "minecraft:spruce_log", + [ 2 ] = "minecraft:spruce_log", + }, + count = 3, + }, + [ "minecraft:spruce_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + [ 3 ] = "minecraft:spruce_planks", + [ 2 ] = "minecraft:spruce_planks", + [ 5 ] = "minecraft:spruce_planks", + [ 4 ] = "minecraft:spruce_planks", + [ 6 ] = "minecraft:spruce_planks", + }, + count = 2, + }, + [ "minecraft:red_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:red_dye", + }, + count = 1, + }, + [ "minecraft:smooth_sandstone_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:smooth_sandstone", + [ 8 ] = "minecraft:smooth_sandstone", + [ 5 ] = "minecraft:smooth_sandstone", + [ 4 ] = "minecraft:smooth_sandstone", + [ 7 ] = "minecraft:smooth_sandstone", + [ 9 ] = "minecraft:smooth_sandstone", + }, + count = 4, + }, + [ "minecraft:spruce_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:spruce_planks", + [ 2 ] = "minecraft:spruce_planks", + [ 5 ] = "minecraft:spruce_planks", + [ 4 ] = "minecraft:spruce_planks", + [ 6 ] = "minecraft:spruce_planks", + }, + count = 3, + }, + [ "minecraft:polished_diorite_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_diorite", + [ 8 ] = "minecraft:polished_diorite", + [ 5 ] = "minecraft:polished_diorite", + [ 4 ] = "minecraft:polished_diorite", + [ 7 ] = "minecraft:polished_diorite", + [ 9 ] = "minecraft:polished_diorite", + }, + count = 4, + }, + [ "minecraft:iron_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:mangrove_door" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + [ 3 ] = "minecraft:mangrove_planks", + [ 2 ] = "minecraft:mangrove_planks", + [ 5 ] = "minecraft:mangrove_planks", + [ 4 ] = "minecraft:mangrove_planks", + [ 6 ] = "minecraft:mangrove_planks", + }, + count = 3, + }, + [ "minecraft:cobbled_deepslate_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:cobbled_deepslate", + [ 3 ] = "minecraft:cobbled_deepslate", + [ 2 ] = "minecraft:cobbled_deepslate", + [ 5 ] = "minecraft:cobbled_deepslate", + [ 4 ] = "minecraft:cobbled_deepslate", + [ 6 ] = "minecraft:cobbled_deepslate", + }, + count = 6, + }, + [ "minecraft:spruce_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + [ 2 ] = "minecraft:spruce_planks", + }, + count = 1, + }, + [ "minecraft:orange_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:orange_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:tinted_glass" ] = { + ingredients = { + [ 8 ] = "minecraft:amethyst_shard", + [ 2 ] = "minecraft:amethyst_shard", + [ 5 ] = "minecraft:glass", + [ 4 ] = "minecraft:amethyst_shard", + [ 6 ] = "minecraft:amethyst_shard", + }, + count = 2, + }, + [ "minecraft:spruce_door" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + [ 3 ] = "minecraft:spruce_planks", + [ 2 ] = "minecraft:spruce_planks", + [ 5 ] = "minecraft:spruce_planks", + [ 4 ] = "minecraft:spruce_planks", + [ 6 ] = "minecraft:spruce_planks", + }, + count = 3, + }, + [ "minecraft:spruce_chest_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:spruce_boat", + }, + count = 1, + }, + [ "minecraft:spruce_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + [ 3 ] = "minecraft:spruce_planks", + [ 5 ] = "minecraft:spruce_planks", + [ 4 ] = "minecraft:spruce_planks", + [ 6 ] = "minecraft:spruce_planks", + }, + count = 1, + }, + [ "minecraft:jack_o_lantern" ] = { + ingredients = { + [ 1 ] = "minecraft:carved_pumpkin", + [ 2 ] = "minecraft:torch", + }, + count = 1, + }, + [ "minecraft:wheat" ] = { + ingredients = { + [ 1 ] = "minecraft:hay_block", + }, + count = 9, + }, + [ "minecraft:iron_bars" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 16, + }, + [ "minecraft:soul_campfire" ] = { + ingredients = { + [ 9 ] = "minecraft:oak_log", + [ 8 ] = "minecraft:oak_log", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:soul_sand", + [ 4 ] = "minecraft:stick", + [ 7 ] = "minecraft:oak_log", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:quartz_block" ] = { + ingredients = { + [ 1 ] = "minecraft:quartz", + [ 4 ] = "minecraft:quartz", + [ 3 ] = "minecraft:quartz", + [ 2 ] = "minecraft:quartz", + }, + count = 1, + }, + [ "minecraft:snow_block" ] = { + ingredients = { + [ 1 ] = "minecraft:snowball", + [ 4 ] = "minecraft:snowball", + [ 3 ] = "minecraft:snowball", + [ 2 ] = "minecraft:snowball", + }, + count = 1, + }, + [ "minecraft:quartz_pillar" ] = { + ingredients = { + [ 1 ] = "minecraft:quartz_block", + [ 2 ] = "minecraft:quartz_block", + }, + count = 2, + }, + [ "minecraft:cut_sandstone" ] = { + ingredients = { + [ 1 ] = "minecraft:sandstone", + [ 4 ] = "minecraft:sandstone", + [ 3 ] = "minecraft:sandstone", + [ 2 ] = "minecraft:sandstone", + }, + count = 4, + }, + [ "minecraft:polished_granite_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_granite", + [ 8 ] = "minecraft:polished_granite", + [ 5 ] = "minecraft:polished_granite", + [ 4 ] = "minecraft:polished_granite", + [ 7 ] = "minecraft:polished_granite", + [ 9 ] = "minecraft:polished_granite", + }, + count = 4, + }, + [ "minecraft:snow" ] = { + ingredients = { + [ 1 ] = "minecraft:snow_block", + [ 3 ] = "minecraft:snow_block", + [ 2 ] = "minecraft:snow_block", + }, + count = 6, + }, + [ "minecraft:spruce_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:spruce_planks", + [ 8 ] = "minecraft:spruce_planks", + [ 5 ] = "minecraft:spruce_planks", + [ 4 ] = "minecraft:spruce_planks", + [ 7 ] = "minecraft:spruce_planks", + [ 9 ] = "minecraft:spruce_planks", + }, + count = 4, + }, + [ "minecraft:chiseled_stone_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:stone_brick_slab", + [ 2 ] = "minecraft:stone_brick_slab", + }, + count = 1, + }, + [ "minecraft:hopper" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 8 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:chest", + [ 4 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:smooth_sandstone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:smooth_sandstone", + [ 3 ] = "minecraft:smooth_sandstone", + [ 2 ] = "minecraft:smooth_sandstone", + }, + count = 6, + }, + [ "minecraft:smooth_red_sandstone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:smooth_red_sandstone", + [ 3 ] = "minecraft:smooth_red_sandstone", + [ 2 ] = "minecraft:smooth_red_sandstone", + }, + count = 6, + }, + [ "minecraft:smooth_quartz_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:smooth_quartz", + [ 8 ] = "minecraft:smooth_quartz", + [ 5 ] = "minecraft:smooth_quartz", + [ 4 ] = "minecraft:smooth_quartz", + [ 7 ] = "minecraft:smooth_quartz", + [ 9 ] = "minecraft:smooth_quartz", + }, + count = 4, + }, + [ "minecraft:oak_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + }, + count = 6, + }, + [ "minecraft:mangrove_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:mangrove_planks", + [ 5 ] = "minecraft:mangrove_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:stripped_birch_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:stripped_birch_log", + [ 4 ] = "minecraft:stripped_birch_log", + [ 3 ] = "minecraft:stripped_birch_log", + [ 2 ] = "minecraft:stripped_birch_log", + }, + count = 3, + }, + [ "minecraft:flower_banner_pattern" ] = { + ingredients = { + [ 1 ] = "minecraft:paper", + [ 2 ] = "minecraft:oxeye_daisy", + }, + count = 1, + }, + [ "minecraft:dark_oak_chest_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:dark_oak_boat", + }, + count = 1, + }, + [ "minecraft:slime_ball" ] = { + ingredients = { + [ 1 ] = "minecraft:slime_block", + }, + count = 9, + }, + [ "minecraft:netherite_block" ] = { + ingredients = { + [ 1 ] = "minecraft:netherite_ingot", + [ 3 ] = "minecraft:netherite_ingot", + [ 2 ] = "minecraft:netherite_ingot", + [ 5 ] = "minecraft:netherite_ingot", + [ 4 ] = "minecraft:netherite_ingot", + [ 7 ] = "minecraft:netherite_ingot", + [ 6 ] = "minecraft:netherite_ingot", + [ 9 ] = "minecraft:netherite_ingot", + [ 8 ] = "minecraft:netherite_ingot", + }, + count = 1, + }, + [ "minecraft:skull_banner_pattern" ] = { + ingredients = { + [ 1 ] = "minecraft:paper", + [ 2 ] = "minecraft:wither_skeleton_skull", + }, + count = 1, + }, + [ "minecraft:exposed_cut_copper_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:exposed_cut_copper", + [ 8 ] = "minecraft:exposed_cut_copper", + [ 5 ] = "minecraft:exposed_cut_copper", + [ 4 ] = "minecraft:exposed_cut_copper", + [ 7 ] = "minecraft:exposed_cut_copper", + [ 9 ] = "minecraft:exposed_cut_copper", + }, + count = 4, + }, + [ "minecraft:shulker_box" ] = { + ingredients = { + [ 1 ] = "minecraft:shulker_shell", + [ 3 ] = "minecraft:shulker_shell", + [ 2 ] = "minecraft:chest", + }, + count = 1, + }, + [ "minecraft:iron_shovel" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:light_gray_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:light_gray_dye", + }, + count = 1, + }, + [ "minecraft:scaffolding" ] = { + ingredients = { + [ 1 ] = "minecraft:bamboo", + [ 3 ] = "minecraft:bamboo", + [ 2 ] = "minecraft:string", + [ 9 ] = "minecraft:bamboo", + [ 4 ] = "minecraft:bamboo", + [ 7 ] = "minecraft:bamboo", + [ 6 ] = "minecraft:bamboo", + }, + count = 6, + }, + [ "minecraft:blue_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:blue_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:sandstone_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:sandstone", + [ 3 ] = "minecraft:sandstone", + [ 2 ] = "minecraft:sandstone", + [ 5 ] = "minecraft:sandstone", + [ 4 ] = "minecraft:sandstone", + [ 6 ] = "minecraft:sandstone", + }, + count = 6, + }, + [ "minecraft:red_nether_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:nether_brick", + [ 4 ] = "minecraft:nether_brick", + [ 3 ] = "minecraft:nether_wart", + [ 2 ] = "minecraft:nether_wart", + }, + count = 1, + }, + [ "minecraft:red_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:red_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:light_blue_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:light_blue_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:gray_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:gray_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:red_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:red_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:armor_stand" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 8 ] = "minecraft:smooth_stone_slab", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:barrel" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:oak_slab", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_slab", + [ 9 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:red_sandstone_slab" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:red_sandstone", + }, + [ 3 ] = { + item = "minecraft:red_sandstone", + }, + [ 2 ] = { + item = "minecraft:red_sandstone", + }, + }, + count = 6, + }, + [ "minecraft:acacia_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:acacia_planks", + [ 5 ] = "minecraft:acacia_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:red_sandstone" ] = { + ingredients = { + [ 1 ] = "minecraft:red_sand", + [ 4 ] = "minecraft:red_sand", + [ 3 ] = "minecraft:red_sand", + [ 2 ] = "minecraft:red_sand", + }, + count = 1, + }, + [ "minecraft:oak_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 3, + }, + [ "minecraft:respawn_anchor" ] = { + ingredients = { + [ 1 ] = "minecraft:crying_obsidian", + [ 3 ] = "minecraft:crying_obsidian", + [ 2 ] = "minecraft:crying_obsidian", + [ 5 ] = "minecraft:glowstone", + [ 4 ] = "minecraft:glowstone", + [ 7 ] = "minecraft:crying_obsidian", + [ 6 ] = "minecraft:glowstone", + [ 9 ] = "minecraft:crying_obsidian", + [ 8 ] = "minecraft:crying_obsidian", + }, + count = 1, + }, + [ "minecraft:purpur_pillar" ] = { + ingredients = { + [ 1 ] = "minecraft:purpur_slab", + [ 2 ] = "minecraft:purpur_slab", + }, + count = 1, + }, + [ "minecraft:red_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:red_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:acacia_button" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + }, + count = 1, + }, + [ "minecraft:lime_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:lime_dye", + }, + count = 1, + }, + [ "minecraft:red_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:red_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:red_wool", + [ 2 ] = "minecraft:red_wool", + [ 5 ] = "minecraft:red_wool", + [ 4 ] = "minecraft:red_wool", + [ 6 ] = "minecraft:red_wool", + }, + count = 1, + }, + [ "minecraft:oxidized_cut_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:oxidized_copper", + [ 4 ] = "minecraft:oxidized_copper", + [ 3 ] = "minecraft:oxidized_copper", + [ 2 ] = "minecraft:oxidized_copper", + }, + count = 4, + }, + [ "minecraft:redstone_torch" ] = { + ingredients = { + [ 1 ] = "minecraft:redstone", + [ 2 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:redstone_block" ] = { + ingredients = { + [ 1 ] = "minecraft:redstone", + [ 3 ] = "minecraft:redstone", + [ 2 ] = "minecraft:redstone", + [ 5 ] = "minecraft:redstone", + [ 4 ] = "minecraft:redstone", + [ 7 ] = "minecraft:redstone", + [ 6 ] = "minecraft:redstone", + [ 9 ] = "minecraft:redstone", + [ 8 ] = "minecraft:redstone", + }, + count = 1, + }, + [ "minecraft:spruce_fence_gate" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:spruce_planks", + [ 5 ] = "minecraft:spruce_planks", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:jungle_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_log", + [ 4 ] = "minecraft:jungle_log", + [ 3 ] = "minecraft:jungle_log", + [ 2 ] = "minecraft:jungle_log", + }, + count = 3, + }, + [ "minecraft:green_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:green_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:raw_gold_block" ] = { + ingredients = { + [ 1 ] = "minecraft:raw_gold", + [ 3 ] = "minecraft:raw_gold", + [ 2 ] = "minecraft:raw_gold", + [ 5 ] = "minecraft:raw_gold", + [ 4 ] = "minecraft:raw_gold", + [ 7 ] = "minecraft:raw_gold", + [ 6 ] = "minecraft:raw_gold", + [ 9 ] = "minecraft:raw_gold", + [ 8 ] = "minecraft:raw_gold", + }, + count = 1, + }, + [ "minecraft:brown_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:brown_dye", + }, + count = 1, + }, + [ "minecraft:chiseled_red_sandstone" ] = { + ingredients = { + [ 1 ] = "minecraft:red_sandstone_slab", + [ 2 ] = "minecraft:red_sandstone_slab", + }, + count = 1, + }, + [ "minecraft:raw_copper_block" ] = { + ingredients = { + [ 1 ] = "minecraft:raw_copper", + [ 3 ] = "minecraft:raw_copper", + [ 2 ] = "minecraft:raw_copper", + [ 5 ] = "minecraft:raw_copper", + [ 4 ] = "minecraft:raw_copper", + [ 7 ] = "minecraft:raw_copper", + [ 6 ] = "minecraft:raw_copper", + [ 9 ] = "minecraft:raw_copper", + [ 8 ] = "minecraft:raw_copper", + }, + count = 1, + }, + [ "minecraft:raw_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:raw_copper_block", + }, + count = 9, + }, + [ "minecraft:crossbow" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:tripwire_hook", + [ 4 ] = "minecraft:string", + [ 6 ] = "minecraft:string", + }, + count = 1, + }, + [ "minecraft:polished_deepslate" ] = { + ingredients = { + [ 1 ] = "minecraft:cobbled_deepslate", + [ 4 ] = "minecraft:cobbled_deepslate", + [ 3 ] = "minecraft:cobbled_deepslate", + [ 2 ] = "minecraft:cobbled_deepslate", + }, + count = 4, + }, + [ "minecraft:golden_chestplate" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 8 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:gold_ingot", + [ 9 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", + [ 4 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:rabbit_stew" ] = { + ingredients = { + [ 1 ] = "minecraft:baked_potato", + [ 3 ] = "minecraft:bowl", + [ 2 ] = "minecraft:cooked_rabbit", + [ 5 ] = "minecraft:red_mushroom", + [ 4 ] = "minecraft:carrot", + }, + count = 1, + }, + [ "minecraft:raw_iron_block" ] = { + ingredients = { + [ 1 ] = "minecraft:raw_iron", + [ 3 ] = "minecraft:raw_iron", + [ 2 ] = "minecraft:raw_iron", + [ 5 ] = "minecraft:raw_iron", + [ 4 ] = "minecraft:raw_iron", + [ 7 ] = "minecraft:raw_iron", + [ 6 ] = "minecraft:raw_iron", + [ 9 ] = "minecraft:raw_iron", + [ 8 ] = "minecraft:raw_iron", + }, + count = 1, + }, + [ "minecraft:diamond_hoe" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + [ 2 ] = "minecraft:diamond", + }, + count = 1, + }, + [ "minecraft:quartz_stairs" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:chiseled_quartz_block", + }, + [ 8 ] = { + item = "minecraft:chiseled_quartz_block", + }, + [ 5 ] = { + item = "minecraft:chiseled_quartz_block", + }, + [ 4 ] = { + item = "minecraft:chiseled_quartz_block", + }, + [ 7 ] = { + item = "minecraft:chiseled_quartz_block", + }, + [ 9 ] = { + item = "minecraft:chiseled_quartz_block", + }, + }, + count = 4, + }, + [ "minecraft:light_gray_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:light_gray_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:light_gray_wool", + [ 2 ] = "minecraft:light_gray_wool", + [ 5 ] = "minecraft:light_gray_wool", + [ 4 ] = "minecraft:light_gray_wool", + [ 6 ] = "minecraft:light_gray_wool", + }, + count = 1, + }, + [ "minecraft:golden_sword" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:cyan_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:cyan_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:candle" ] = { + ingredients = { + [ 1 ] = "minecraft:string", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:beetroot_soup" ] = { + ingredients = { + [ 1 ] = "minecraft:bowl", + [ 3 ] = "minecraft:beetroot", + [ 2 ] = "minecraft:beetroot", + [ 5 ] = "minecraft:beetroot", + [ 4 ] = "minecraft:beetroot", + [ 7 ] = "minecraft:beetroot", + [ 6 ] = "minecraft:beetroot", + }, + count = 1, + }, + [ "minecraft:mud_brick_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:mud_bricks", + [ 3 ] = "minecraft:mud_bricks", + [ 2 ] = "minecraft:mud_bricks", + [ 5 ] = "minecraft:mud_bricks", + [ 4 ] = "minecraft:mud_bricks", + [ 6 ] = "minecraft:mud_bricks", + }, + count = 6, + }, + [ "minecraft:green_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:green_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:activator_rail" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:redstone_torch", + [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", + [ 8 ] = "minecraft:stick", + }, + count = 6, + }, + [ "minecraft:amethyst_block" ] = { + ingredients = { + [ 1 ] = "minecraft:amethyst_shard", + [ 4 ] = "minecraft:amethyst_shard", + [ 3 ] = "minecraft:amethyst_shard", + [ 2 ] = "minecraft:amethyst_shard", + }, + count = 1, + }, + [ "minecraft:quartz_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:quartz_block", + [ 4 ] = "minecraft:quartz_block", + [ 3 ] = "minecraft:quartz_block", + [ 2 ] = "minecraft:quartz_block", + }, + count = 4, + }, + [ "minecraft:polished_diorite" ] = { + ingredients = { + [ 1 ] = "minecraft:diorite", + [ 4 ] = "minecraft:diorite", + [ 3 ] = "minecraft:diorite", + [ 2 ] = "minecraft:diorite", + }, + count = 4, + }, + [ "minecraft:green_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:green_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:composter" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_slab", + [ 8 ] = "minecraft:oak_slab", + [ 3 ] = "minecraft:oak_slab", + [ 9 ] = "minecraft:oak_slab", + [ 4 ] = "minecraft:oak_slab", + [ 7 ] = "minecraft:oak_slab", + [ 6 ] = "minecraft:oak_slab", + }, + count = 1, + }, + [ "minecraft:red_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:red_tulip", + }, + count = 1, + }, + [ "minecraft:jungle_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_log", + }, + count = 4, + }, + [ "minecraft:chain" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_nugget", + [ 3 ] = "minecraft:iron_nugget", + [ 2 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:iron_sword" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:exposed_cut_copper_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:exposed_cut_copper", + [ 3 ] = "minecraft:exposed_cut_copper", + [ 2 ] = "minecraft:exposed_cut_copper", + }, + count = 6, + }, + [ "minecraft:fishing_rod" ] = { + ingredients = { + [ 9 ] = "minecraft:string", + [ 3 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:string", + }, + count = 1, + }, + [ "minecraft:mangrove_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + [ 3 ] = "minecraft:mangrove_planks", + [ 2 ] = "minecraft:mangrove_planks", + }, + count = 6, + }, + [ "minecraft:diamond_axe" ] = { + ingredients = { + [ 1 ] = "minecraft:diamond", + [ 3 ] = "minecraft:diamond", + [ 2 ] = "minecraft:diamond", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:pink_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:pink_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:purple_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:blue_dye", + [ 2 ] = "minecraft:red_dye", + }, + count = 2, + }, + [ "minecraft:purple_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:purple_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:pink_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:pink_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:orange_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:orange_dye", + }, + count = 1, + }, + [ "minecraft:purple_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:purple_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:granite_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:granite", + [ 8 ] = "minecraft:granite", + [ 5 ] = "minecraft:granite", + [ 4 ] = "minecraft:granite", + [ 7 ] = "minecraft:granite", + [ 9 ] = "minecraft:granite", + }, + count = 4, + }, + [ "minecraft:dried_kelp_block" ] = { + ingredients = { + [ 1 ] = "minecraft:dried_kelp", + [ 3 ] = "minecraft:dried_kelp", + [ 2 ] = "minecraft:dried_kelp", + [ 5 ] = "minecraft:dried_kelp", + [ 4 ] = "minecraft:dried_kelp", + [ 7 ] = "minecraft:dried_kelp", + [ 6 ] = "minecraft:dried_kelp", + [ 9 ] = "minecraft:dried_kelp", + [ 8 ] = "minecraft:dried_kelp", + }, + count = 1, + }, + [ "minecraft:dark_oak_trapdoor" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + [ 3 ] = "minecraft:dark_oak_planks", + [ 2 ] = "minecraft:dark_oak_planks", + [ 5 ] = "minecraft:dark_oak_planks", + [ 4 ] = "minecraft:dark_oak_planks", + [ 6 ] = "minecraft:dark_oak_planks", + }, + count = 2, + }, + [ "minecraft:white_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:white_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:cyan_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:cyan_dye", + }, + count = 1, + }, + [ "minecraft:item_frame" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:leather", + [ 4 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", + [ 8 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:mangrove_chest_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:chest", + [ 2 ] = "minecraft:mangrove_boat", + }, + count = 1, + }, + [ "minecraft:enchanting_table" ] = { + ingredients = { + [ 9 ] = "minecraft:obsidian", + [ 8 ] = "minecraft:obsidian", + [ 2 ] = "minecraft:book", + [ 5 ] = "minecraft:obsidian", + [ 4 ] = "minecraft:diamond", + [ 7 ] = "minecraft:obsidian", + [ 6 ] = "minecraft:diamond", + }, + count = 1, + }, + [ "minecraft:lime_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:lime_dye", + }, + count = 1, + }, + [ "minecraft:black_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:black_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:black_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:black_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:heavy_weighted_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:gray_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:gray_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:gray_wool", + [ 2 ] = "minecraft:gray_wool", + [ 5 ] = "minecraft:gray_wool", + [ 4 ] = "minecraft:gray_wool", + [ 6 ] = "minecraft:gray_wool", + }, + count = 1, + }, + [ "minecraft:birch_sign" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:birch_planks", + [ 2 ] = "minecraft:birch_planks", + [ 5 ] = "minecraft:birch_planks", + [ 4 ] = "minecraft:birch_planks", + [ 6 ] = "minecraft:birch_planks", + }, + count = 3, + }, + [ "minecraft:blue_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:blue_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:blue_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:blue_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:polished_granite_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_granite", + [ 3 ] = "minecraft:polished_granite", + [ 2 ] = "minecraft:polished_granite", + }, + count = 6, + }, + [ "minecraft:mossy_cobblestone" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:vine", + }, + count = 1, + }, + [ "minecraft:smooth_quartz_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:smooth_quartz", + [ 3 ] = "minecraft:smooth_quartz", + [ 2 ] = "minecraft:smooth_quartz", + }, + count = 6, + }, + [ "minecraft:gray_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:gray_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:fermented_spider_eye" ] = { + ingredients = { + [ 1 ] = "minecraft:spider_eye", + [ 3 ] = "minecraft:sugar", + [ 2 ] = "minecraft:brown_mushroom", + }, + count = 1, + }, + [ "minecraft:gold_block" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", + [ 4 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + [ 9 ] = "minecraft:gold_ingot", + [ 8 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:polished_deepslate_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_deepslate", + [ 3 ] = "minecraft:polished_deepslate", + [ 2 ] = "minecraft:polished_deepslate", + [ 5 ] = "minecraft:polished_deepslate", + [ 4 ] = "minecraft:polished_deepslate", + [ 6 ] = "minecraft:polished_deepslate", + }, + count = 6, + }, + [ "minecraft:polished_blackstone_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone", + [ 3 ] = "minecraft:polished_blackstone", + [ 2 ] = "minecraft:polished_blackstone", + [ 5 ] = "minecraft:polished_blackstone", + [ 4 ] = "minecraft:polished_blackstone", + [ 6 ] = "minecraft:polished_blackstone", + }, + count = 6, + }, + [ "minecraft:flint_and_steel" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:flint", + }, + count = 1, + }, + [ "minecraft:polished_blackstone_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone", + [ 8 ] = "minecraft:polished_blackstone", + [ 5 ] = "minecraft:polished_blackstone", + [ 4 ] = "minecraft:polished_blackstone", + [ 7 ] = "minecraft:polished_blackstone", + [ 9 ] = "minecraft:polished_blackstone", + }, + count = 4, + }, + [ "minecraft:magma_block" ] = { + ingredients = { + [ 1 ] = "minecraft:magma_cream", + [ 4 ] = "minecraft:magma_cream", + [ 3 ] = "minecraft:magma_cream", + [ 2 ] = "minecraft:magma_cream", + }, + count = 1, + }, + [ "minecraft:prismarine_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine", + [ 3 ] = "minecraft:prismarine", + [ 2 ] = "minecraft:prismarine", + [ 5 ] = "minecraft:prismarine", + [ 4 ] = "minecraft:prismarine", + [ 6 ] = "minecraft:prismarine", + }, + count = 6, + }, + [ "minecraft:creeper_banner_pattern" ] = { + ingredients = { + [ 1 ] = "minecraft:paper", + [ 2 ] = "minecraft:creeper_head", + }, + count = 1, + }, + [ "minecraft:tnt" ] = { + ingredients = { + [ 1 ] = "minecraft:gunpowder", + [ 3 ] = "minecraft:gunpowder", + [ 2 ] = { + item = "minecraft:sand", + }, + [ 5 ] = "minecraft:gunpowder", + [ 4 ] = { + item = "minecraft:sand", + }, + [ 7 ] = "minecraft:gunpowder", + [ 6 ] = { + item = "minecraft:sand", + }, + [ 9 ] = "minecraft:gunpowder", + [ 8 ] = { + item = "minecraft:sand", + }, + }, + count = 1, + }, + [ "minecraft:acacia_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_log", + }, + count = 4, + }, + [ "minecraft:daylight_detector" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:quartz", + [ 4 ] = "minecraft:quartz", + [ 7 ] = "minecraft:oak_slab", + [ 6 ] = "minecraft:quartz", + [ 9 ] = "minecraft:oak_slab", + [ 8 ] = "minecraft:oak_slab", + }, + count = 1, + }, + [ "minecraft:magenta_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:magenta_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:waxed_cut_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:cut_copper", + [ 2 ] = "minecraft:honeycomb", + }, + count = 1, + }, + [ "minecraft:jungle_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:jungle_planks", + [ 3 ] = "minecraft:jungle_planks", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 4 ] = "minecraft:jungle_planks", + [ 6 ] = "minecraft:jungle_planks", + }, + count = 3, + }, + [ "minecraft:bucket" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:polished_blackstone_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_blackstone_bricks", + [ 3 ] = "minecraft:polished_blackstone_bricks", + [ 2 ] = "minecraft:polished_blackstone_bricks", + }, + count = 6, + }, + [ "minecraft:magenta_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:purple_dye", + [ 2 ] = "minecraft:pink_dye", + }, + count = 2, + }, + [ "minecraft:prismarine_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine_shard", + [ 3 ] = "minecraft:prismarine_shard", + [ 2 ] = "minecraft:prismarine_shard", + [ 5 ] = "minecraft:prismarine_shard", + [ 4 ] = "minecraft:prismarine_shard", + [ 7 ] = "minecraft:prismarine_shard", + [ 6 ] = "minecraft:prismarine_shard", + [ 9 ] = "minecraft:prismarine_shard", + [ 8 ] = "minecraft:prismarine_shard", + }, + count = 1, + }, + [ "minecraft:red_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:red_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:brick", + [ 4 ] = "minecraft:brick", + [ 3 ] = "minecraft:brick", + [ 2 ] = "minecraft:brick", + }, + count = 1, + }, + [ "minecraft:dark_oak_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + [ 8 ] = "minecraft:dark_oak_planks", + [ 5 ] = "minecraft:dark_oak_planks", + [ 4 ] = "minecraft:dark_oak_planks", + [ 7 ] = "minecraft:dark_oak_planks", + [ 9 ] = "minecraft:dark_oak_planks", + }, + count = 4, + }, + [ "minecraft:orange_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:orange_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:glowstone" ] = { + ingredients = { + [ 1 ] = "minecraft:glowstone_dust", + [ 4 ] = "minecraft:glowstone_dust", + [ 3 ] = "minecraft:glowstone_dust", + [ 2 ] = "minecraft:glowstone_dust", + }, + count = 1, + }, + [ "minecraft:quartz_slab" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:chiseled_quartz_block", + }, + [ 3 ] = { + item = "minecraft:chiseled_quartz_block", + }, + [ 2 ] = { + item = "minecraft:chiseled_quartz_block", + }, + }, + count = 6, + }, + [ "minecraft:cobblestone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 3 ] = "minecraft:cobblestone", + [ 2 ] = "minecraft:cobblestone", + }, + count = 6, + }, + [ "minecraft:crimson_door" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_planks", + [ 3 ] = "minecraft:crimson_planks", + [ 2 ] = "minecraft:crimson_planks", + [ 5 ] = "minecraft:crimson_planks", + [ 4 ] = "minecraft:crimson_planks", + [ 6 ] = "minecraft:crimson_planks", + }, + count = 3, + }, + [ "minecraft:light_blue_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:light_blue_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:oak_button" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:brown_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:brown_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:purple_stained_glass" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:purple_dye", + [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + [ 9 ] = "minecraft:glass", + [ 8 ] = "minecraft:glass", + }, + count = 8, + }, + [ "minecraft:iron_helmet" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:deepslate_tiles" ] = { + ingredients = { + [ 1 ] = "minecraft:deepslate_bricks", + [ 4 ] = "minecraft:deepslate_bricks", + [ 3 ] = "minecraft:deepslate_bricks", + [ 2 ] = "minecraft:deepslate_bricks", + }, + count = 4, + }, + [ "minecraft:pink_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:pink_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:pink_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:red_dye", + [ 2 ] = "minecraft:white_dye", + }, + count = 2, + }, + [ "minecraft:pink_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:pink_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:brick_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:bricks", + [ 8 ] = "minecraft:bricks", + [ 5 ] = "minecraft:bricks", + [ 4 ] = "minecraft:bricks", + [ 7 ] = "minecraft:bricks", + [ 9 ] = "minecraft:bricks", + }, + count = 4, + }, + [ "minecraft:pink_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:pink_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:pink_wool", + [ 2 ] = "minecraft:pink_wool", + [ 5 ] = "minecraft:pink_wool", + [ 4 ] = "minecraft:pink_wool", + [ 6 ] = "minecraft:pink_wool", + }, + count = 1, + }, + [ "minecraft:red_sandstone_stairs" ] = { + ingredients = { + [ 1 ] = { + item = "minecraft:red_sandstone", + }, + [ 8 ] = { + item = "minecraft:red_sandstone", + }, + [ 5 ] = { + item = "minecraft:red_sandstone", + }, + [ 4 ] = { + item = "minecraft:red_sandstone", + }, + [ 7 ] = { + item = "minecraft:red_sandstone", + }, + [ 9 ] = { + item = "minecraft:red_sandstone", + }, + }, + count = 4, + }, + [ "minecraft:painting" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:white_wool", + [ 4 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", + [ 8 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:bone_meal" ] = { + ingredients = { + [ 1 ] = "minecraft:bone_block", + }, + count = 9, + }, + [ "minecraft:brown_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:brown_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:packed_ice" ] = { + ingredients = { + [ 1 ] = "minecraft:ice", + [ 3 ] = "minecraft:ice", + [ 2 ] = "minecraft:ice", + [ 5 ] = "minecraft:ice", + [ 4 ] = "minecraft:ice", + [ 7 ] = "minecraft:ice", + [ 6 ] = "minecraft:ice", + [ 9 ] = "minecraft:ice", + [ 8 ] = "minecraft:ice", + }, + count = 1, + }, + [ "minecraft:cut_sandstone_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:cut_sandstone", + [ 3 ] = "minecraft:cut_sandstone", + [ 2 ] = "minecraft:cut_sandstone", + }, + count = 6, + }, + [ "minecraft:end_rod" ] = { + ingredients = { + [ 1 ] = "minecraft:blaze_rod", + [ 2 ] = "minecraft:popped_chorus_fruit", + }, + count = 4, + }, + [ "minecraft:birch_boat" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + [ 3 ] = "minecraft:birch_planks", + [ 5 ] = "minecraft:birch_planks", + [ 4 ] = "minecraft:birch_planks", + [ 6 ] = "minecraft:birch_planks", + }, + count = 1, + }, + [ "minecraft:orange_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:red_dye", + [ 2 ] = "minecraft:yellow_dye", + }, + count = 2, + }, + [ "minecraft:gray_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:gray_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:cut_copper" ] = { + ingredients = { + [ 1 ] = "minecraft:copper_block", + [ 4 ] = "minecraft:copper_block", + [ 3 ] = "minecraft:copper_block", + [ 2 ] = "minecraft:copper_block", + }, + count = 4, + }, + [ "minecraft:black_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:black_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:dark_oak_pressure_plate" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_planks", + [ 2 ] = "minecraft:dark_oak_planks", + }, + count = 1, + }, + [ "minecraft:deepslate_bricks" ] = { + ingredients = { + [ 1 ] = "minecraft:polished_deepslate", + [ 4 ] = "minecraft:polished_deepslate", + [ 3 ] = "minecraft:polished_deepslate", + [ 2 ] = "minecraft:polished_deepslate", + }, + count = 4, + }, + [ "minecraft:red_sandstone_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:red_sandstone", + [ 3 ] = "minecraft:red_sandstone", + [ 2 ] = "minecraft:red_sandstone", + [ 5 ] = "minecraft:red_sandstone", + [ 4 ] = "minecraft:red_sandstone", + [ 6 ] = "minecraft:red_sandstone", + }, + count = 6, + }, + [ "minecraft:lead" ] = { + ingredients = { + [ 1 ] = "minecraft:string", + [ 2 ] = "minecraft:string", + [ 5 ] = "minecraft:slime_ball", + [ 4 ] = "minecraft:string", + [ 9 ] = "minecraft:string", + }, + count = 2, + }, + [ "minecraft:nether_brick_fence" ] = { + ingredients = { + [ 1 ] = "minecraft:nether_bricks", + [ 3 ] = "minecraft:nether_bricks", + [ 2 ] = "minecraft:nether_brick", + [ 5 ] = "minecraft:nether_brick", + [ 4 ] = "minecraft:nether_bricks", + [ 6 ] = "minecraft:nether_bricks", + }, + count = 6, + }, + [ "minecraft:magenta_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:magenta_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:light_blue_carpet" ] = { + ingredients = { + [ 1 ] = "minecraft:white_carpet", + [ 3 ] = "minecraft:white_carpet", + [ 2 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:light_blue_dye", + [ 4 ] = "minecraft:white_carpet", + [ 7 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:white_carpet", + [ 9 ] = "minecraft:white_carpet", + [ 8 ] = "minecraft:white_carpet", + }, + count = 8, + }, + [ "minecraft:emerald" ] = { + ingredients = { + [ 1 ] = "minecraft:emerald_block", + }, + count = 9, + }, + [ "minecraft:magenta_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:magenta_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:magenta_wool", + [ 2 ] = "minecraft:magenta_wool", + [ 5 ] = "minecraft:magenta_wool", + [ 4 ] = "minecraft:magenta_wool", + [ 6 ] = "minecraft:magenta_wool", + }, + count = 1, + }, + [ "minecraft:green_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:green_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:crimson_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:crimson_planks", + [ 3 ] = "minecraft:crimson_planks", + [ 2 ] = "minecraft:crimson_planks", + }, + count = 6, + }, + [ "minecraft:granite_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:granite", + [ 3 ] = "minecraft:granite", + [ 2 ] = "minecraft:granite", + [ 5 ] = "minecraft:granite", + [ 4 ] = "minecraft:granite", + [ 6 ] = "minecraft:granite", + }, + count = 6, + }, + [ "minecraft:red_candle" ] = { + ingredients = { + [ 1 ] = "minecraft:candle", + [ 2 ] = "minecraft:red_dye", + }, + count = 1, + }, + [ "minecraft:lime_banner" ] = { + ingredients = { + [ 1 ] = "minecraft:lime_wool", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:lime_wool", + [ 2 ] = "minecraft:lime_wool", + [ 5 ] = "minecraft:lime_wool", + [ 4 ] = "minecraft:lime_wool", + [ 6 ] = "minecraft:lime_wool", + }, + count = 1, + }, + [ "minecraft:black_dye" ] = { + ingredients = { + [ 1 ] = "minecraft:wither_rose", + }, + count = 1, + }, + [ "minecraft:blackstone_wall" ] = { + ingredients = { + [ 1 ] = "minecraft:blackstone", + [ 3 ] = "minecraft:blackstone", + [ 2 ] = "minecraft:blackstone", + [ 5 ] = "minecraft:blackstone", + [ 4 ] = "minecraft:blackstone", + [ 6 ] = "minecraft:blackstone", + }, + count = 6, + }, + [ "minecraft:clay" ] = { + ingredients = { + [ 1 ] = "minecraft:clay_ball", + [ 4 ] = "minecraft:clay_ball", + [ 3 ] = "minecraft:clay_ball", + [ 2 ] = "minecraft:clay_ball", + }, + count = 1, + }, + [ "minecraft:mangrove_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:mangrove_planks", + [ 8 ] = "minecraft:mangrove_planks", + [ 5 ] = "minecraft:mangrove_planks", + [ 4 ] = "minecraft:mangrove_planks", + [ 7 ] = "minecraft:mangrove_planks", + [ 9 ] = "minecraft:mangrove_planks", + }, + count = 4, + }, + [ "minecraft:light_gray_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:light_gray_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:copper_block" ] = { + ingredients = { + [ 1 ] = "minecraft:copper_ingot", + [ 3 ] = "minecraft:copper_ingot", + [ 2 ] = "minecraft:copper_ingot", + [ 5 ] = "minecraft:copper_ingot", + [ 4 ] = "minecraft:copper_ingot", + [ 7 ] = "minecraft:copper_ingot", + [ 6 ] = "minecraft:copper_ingot", + [ 9 ] = "minecraft:copper_ingot", + [ 8 ] = "minecraft:copper_ingot", + }, + count = 1, + }, + [ "minecraft:lapis_block" ] = { + ingredients = { + [ 1 ] = "minecraft:lapis_lazuli", + [ 3 ] = "minecraft:lapis_lazuli", + [ 2 ] = "minecraft:lapis_lazuli", + [ 5 ] = "minecraft:lapis_lazuli", + [ 4 ] = "minecraft:lapis_lazuli", + [ 7 ] = "minecraft:lapis_lazuli", + [ 6 ] = "minecraft:lapis_lazuli", + [ 9 ] = "minecraft:lapis_lazuli", + [ 8 ] = "minecraft:lapis_lazuli", + }, + count = 1, + }, + [ "minecraft:shears" ] = { + ingredients = { + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:purple_stained_glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass_pane", + [ 3 ] = "minecraft:glass_pane", + [ 2 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:purple_dye", + [ 4 ] = "minecraft:glass_pane", + [ 7 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:glass_pane", + [ 9 ] = "minecraft:glass_pane", + [ 8 ] = "minecraft:glass_pane", + }, + count = 8, + }, + [ "minecraft:light_gray_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:light_gray_dye", + }, + count = 1, + }, + [ "minecraft:fletching_table" ] = { + ingredients = { + [ 1 ] = "minecraft:flint", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:flint", + [ 5 ] = "minecraft:oak_planks", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:ender_chest" ] = { + ingredients = { + [ 1 ] = "minecraft:obsidian", + [ 3 ] = "minecraft:obsidian", + [ 2 ] = "minecraft:obsidian", + [ 5 ] = "minecraft:ender_eye", + [ 4 ] = "minecraft:obsidian", + [ 7 ] = "minecraft:obsidian", + [ 6 ] = "minecraft:obsidian", + [ 9 ] = "minecraft:obsidian", + [ 8 ] = "minecraft:obsidian", + }, + count = 1, + }, + [ "minecraft:dark_oak_planks" ] = { + ingredients = { + [ 1 ] = "minecraft:dark_oak_log", + }, + count = 4, + }, + [ "minecraft:green_bed" ] = { + ingredients = { + [ 1 ] = "minecraft:white_bed", + [ 2 ] = "minecraft:green_dye", + }, + count = 1, + }, + [ "minecraft:light_blue_concrete_powder" ] = { + ingredients = { + [ 1 ] = "minecraft:light_blue_dye", + [ 3 ] = "minecraft:sand", + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 4 ] = "minecraft:sand", + [ 7 ] = "minecraft:gravel", + [ 6 ] = "minecraft:gravel", + [ 9 ] = "minecraft:gravel", + [ 8 ] = "minecraft:gravel", + }, + count = 8, + }, + [ "minecraft:music_disc_5" ] = { + ingredients = { + [ 1 ] = "minecraft:disc_fragment_5", + [ 3 ] = "minecraft:disc_fragment_5", + [ 2 ] = "minecraft:disc_fragment_5", + [ 5 ] = "minecraft:disc_fragment_5", + [ 4 ] = "minecraft:disc_fragment_5", + [ 7 ] = "minecraft:disc_fragment_5", + [ 6 ] = "minecraft:disc_fragment_5", + [ 9 ] = "minecraft:disc_fragment_5", + [ 8 ] = "minecraft:disc_fragment_5", + }, + count = 1, + }, + [ "minecraft:birch_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_planks", + [ 8 ] = "minecraft:birch_planks", + [ 5 ] = "minecraft:birch_planks", + [ 4 ] = "minecraft:birch_planks", + [ 7 ] = "minecraft:birch_planks", + [ 9 ] = "minecraft:birch_planks", + }, + count = 4, + }, + [ "minecraft:beehive" ] = { + ingredients = { + [ 1 ] = "minecraft:oak_planks", + [ 3 ] = "minecraft:oak_planks", + [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:honeycomb", + [ 4 ] = "minecraft:honeycomb", + [ 7 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:honeycomb", + [ 9 ] = "minecraft:oak_planks", + [ 8 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:lightning_rod" ] = { + ingredients = { + [ 1 ] = "minecraft:copper_ingot", + [ 3 ] = "minecraft:copper_ingot", + [ 2 ] = "minecraft:copper_ingot", + }, + count = 1, + }, + [ "minecraft:acacia_stairs" ] = { + ingredients = { + [ 1 ] = "minecraft:acacia_planks", + [ 8 ] = "minecraft:acacia_planks", + [ 5 ] = "minecraft:acacia_planks", + [ 4 ] = "minecraft:acacia_planks", + [ 7 ] = "minecraft:acacia_planks", + [ 9 ] = "minecraft:acacia_planks", + }, + count = 4, + }, + [ "minecraft:chiseled_deepslate" ] = { + ingredients = { + [ 1 ] = "minecraft:cobbled_deepslate_slab", + [ 2 ] = "minecraft:cobbled_deepslate_slab", + }, + count = 1, + }, + [ "minecraft:iron_pickaxe" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 8 ] = "minecraft:stick", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:iron_boots" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + }, + count = 1, + }, + [ "minecraft:brown_terracotta" ] = { + ingredients = { + [ 1 ] = "minecraft:terracotta", + [ 3 ] = "minecraft:terracotta", + [ 2 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:brown_dye", + [ 4 ] = "minecraft:terracotta", + [ 7 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:terracotta", + [ 9 ] = "minecraft:terracotta", + [ 8 ] = "minecraft:terracotta", + }, + count = 8, + }, + [ "minecraft:iron_axe" ] = { + ingredients = { + [ 1 ] = "minecraft:iron_ingot", + [ 3 ] = "minecraft:iron_ingot", + [ 2 ] = "minecraft:iron_ingot", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + }, + count = 1, + }, + [ "minecraft:conduit" ] = { + ingredients = { + [ 1 ] = "minecraft:nautilus_shell", + [ 3 ] = "minecraft:nautilus_shell", + [ 2 ] = "minecraft:nautilus_shell", + [ 5 ] = "minecraft:heart_of_the_sea", + [ 4 ] = "minecraft:nautilus_shell", + [ 7 ] = "minecraft:nautilus_shell", + [ 6 ] = "minecraft:nautilus_shell", + [ 9 ] = "minecraft:nautilus_shell", + [ 8 ] = "minecraft:nautilus_shell", + }, + count = 1, + }, + [ "minecraft:stone_hoe" ] = { + ingredients = { + [ 1 ] = "minecraft:cobblestone", + [ 4 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", + [ 2 ] = "minecraft:cobblestone", + }, + count = 1, + }, + [ "minecraft:grindstone" ] = { + ingredients = { + [ 1 ] = "minecraft:stick", + [ 3 ] = "minecraft:stick", + [ 2 ] = "minecraft:stone_slab", + [ 4 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + }, + count = 1, + }, + [ "minecraft:prismarine_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:prismarine", + [ 3 ] = "minecraft:prismarine", + [ 2 ] = "minecraft:prismarine", + }, + count = 6, + }, + [ "minecraft:mud_brick_slab" ] = { + ingredients = { + [ 1 ] = "minecraft:mud_bricks", + [ 3 ] = "minecraft:mud_bricks", + [ 2 ] = "minecraft:mud_bricks", + }, + count = 6, + }, + [ "minecraft:golden_apple" ] = { + ingredients = { + [ 1 ] = "minecraft:gold_ingot", + [ 3 ] = "minecraft:gold_ingot", + [ 2 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:apple", + [ 4 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:gold_ingot", + [ 9 ] = "minecraft:gold_ingot", + [ 8 ] = "minecraft:gold_ingot", + }, + count = 1, + }, + [ "minecraft:hopper_minecart" ] = { + ingredients = { + [ 1 ] = "minecraft:hopper", + [ 2 ] = "minecraft:minecart", + }, + count = 1, + }, + [ "minecraft:cyan_wool" ] = { + ingredients = { + [ 1 ] = "minecraft:cyan_dye", + [ 2 ] = "minecraft:white_wool", + }, + count = 1, + }, + [ "minecraft:coal" ] = { + ingredients = { + [ 1 ] = "minecraft:coal_block", + }, + count = 9, + }, + [ "minecraft:glass_pane" ] = { + ingredients = { + [ 1 ] = "minecraft:glass", + [ 3 ] = "minecraft:glass", + [ 2 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 4 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", + }, + count = 16, + }, + [ "minecraft:birch_wood" ] = { + ingredients = { + [ 1 ] = "minecraft:birch_log", + [ 4 ] = "minecraft:birch_log", + [ 3 ] = "minecraft:birch_log", + [ 2 ] = "minecraft:birch_log", + }, + count = 3, + }, + }, } \ No newline at end of file -- 2.49.1 From 9f8f56064c4b992b00068e1cea168d427389f73d Mon Sep 17 00:00:00 2001 From: rspx Date: Sun, 8 Jan 2023 15:18:25 +0100 Subject: [PATCH 15/26] Update minecraft.db --- recipeBook/etc/recipes/minecraft.db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipeBook/etc/recipes/minecraft.db b/recipeBook/etc/recipes/minecraft.db index 6563a3b..0b3fdeb 100644 --- a/recipeBook/etc/recipes/minecraft.db +++ b/recipeBook/etc/recipes/minecraft.db @@ -1,7 +1,7 @@ { name = "Minecraft", version = "1.19.3", - recepies = { + recipes = { [ "minecraft:sugar" ] = { ingredients = { [ 1 ] = "minecraft:sugar_cane", -- 2.49.1 From 4fe0035498563c2d2a56768398ed19531e2900ad Mon Sep 17 00:00:00 2001 From: rspx Date: Sun, 8 Jan 2023 16:25:23 +0100 Subject: [PATCH 16/26] Fixed item names --- core/apis/nameDB.lua | 10 +- core/etc/names/minecraft.json | 2101 +-------------------------------- 2 files changed, 4 insertions(+), 2107 deletions(-) diff --git a/core/apis/nameDB.lua b/core/apis/nameDB.lua index 784557e..cdf8eac 100644 --- a/core/apis/nameDB.lua +++ b/core/apis/nameDB.lua @@ -23,14 +23,10 @@ function nameDB:loadDirectory(directory) error('Unable to read ' .. fs.combine(directory, file)) end - for strId, block in pairs(blocks) do + for strId, blockName in pairs(blocks) do strId = string.format('%s:%s', mod, strId) - if type(block.name) == 'string' then - self.data[strId .. ':0'] = block.name - else - for nid,name in pairs(block.name) do - self.data[strId .. ':' .. (nid-1)] = name - end + if type(blockName) == 'string' then + self.data[strId] = blockName end end diff --git a/core/etc/names/minecraft.json b/core/etc/names/minecraft.json index 99db93e..b8d9a67 100644 --- a/core/etc/names/minecraft.json +++ b/core/etc/names/minecraft.json @@ -1,2100 +1 @@ -{ - "air": { - "id": 0, - "name": "Air", - }, - "stone": { - "id": 1, - "name": ["Stone", - "Granite", - "Polished Granite", - "Diorite", - "Polished Diorite", - "Andesite", - "Polished Andesite"], - }, - "grass": { - "id": 2, - "name": "Grass Block", - }, - "dirt": { - "id": 3, - "name": ["Dirt", - "Coarse Dirt", - "Podzol"], - }, - "cobblestone": { - "id": 4, - "name": "Cobblestone", - }, - "planks": { - "id": 5, - "name": ["Oak Wood Planks", - "Spruce Wood Planks", - "Birch Wood Planks", - "Jungle Wood Planks", - "Acacia Wood Planks", - "Dark Oak Wood Planks"], - }, - "sapling": { - "id": 6, - "name": ["Oak Sapling", - "Spruce Sapling", - "Birch Sapling", - "Jungle Sapling", - "Acacia Sapling", - "Dark Oak Sapling"], - "place": "sapling", - }, - "bedrock": { - "id": 7, - "name": "Bedrock", - }, - "flowing_water": { - "id": 8, - "name": "Water", - "place": "flatten", - }, - "water": { - "id": 9, - "name": "Water", - "place": "flatten", - }, - "flowing_lava": { - "id": 10, - "name": "Lava", - }, - "lava": { - "id": 11, - "name": "Lava", - }, - "sand": { - "id": 12, - "name": ["Sand", - "Red Sand"], - }, - "gravel": { - "id": 13, - "name": "Gravel", - }, - "gold_ore": { - "id": 14, - "name": "Gold Ore", - }, - "iron_ore": { - "id": 15, - "name": "Iron Ore", - }, - "coal_ore": { - "id": 16, - "name": "Coal Ore", - }, - "log": { - "id": 17, - "name": ["Oak Wood", - "Spruce Wood", - "Birch Wood", - "Jungle Wood"], - "place": "wood", - }, - "leaves": { - "id": 18, - "name": ["Oak Leaves", - "Spruce Leaves", - "Birch Leaves", - "Jungle Leaves"], - "place": "leaves", - }, - "sponge": { - "id": 19, - "name": ["Sponge", - "Wet Sponge"], - }, - "glass": { - "id": 20, - "name": "Glass", - }, - "lapis_ore": { - "id": 21, - "name": "Lapis Lazuli Ore", - }, - "lapis_block": { - "id": 22, - "name": "Lapis Lazuli Block", - }, - "dispenser": { - "id": 23, - "name": "Dispenser", - "place": "dispenser", - }, - "sandstone": { - "id": 24, - "name": ["Sandstone", - "Chiseled Sandstone", - "Smooth Sandstone"], - }, - "noteblock": { - "id": 25, - "name": "Note Block", - }, - "bed": { - "id": 26, - "name": "Bed", - "place": "bed", - }, - "golden_rail": { - "id": 27, - "name": "Powered Rail", - "place": "adp-rail", - }, - "detector_rail": { - "id": 28, - "name": "Detector Rail", - "place": "adp-rail", - }, - "sticky_piston": { - "id": 29, - "name": "Sticky Piston", - "place": "piston", - }, - "web": { - "id": 30, - "name": "Cobweb", - }, - "tallgrass": { - "id": 31, - "name": ["Shrub", - "Grass", - "Fern"], - }, - "deadbush": { - "id": 32, - "name": "Dead Bush", - }, - "piston": { - "id": 33, - "name": "Piston", - "place": "piston", - }, - "piston_head": { - "id": 34, - "name": "Piston Extension", - "place": "flatten", - }, - "wool": { - "id": 35, - "name": ["White Wool", - "Orange Wool", - "Magenta Wool", - "Light Blue Wool", - "Yellow Wool", - "Lime Wool", - "Pink Wool", - "Gray Wool", - "Light Gray Wool", - "Cyan Wool", - "Purple Wool", - "Blue Wool", - "Brown Wool", - "Green Wool", - "Red Wool", - "Black Wool"], - }, - "piston_extension": { - "id": 36, - "name": "Block moved by Piston", - "place": "flatten", - }, - "yellow_flower": { - "id": 37, - "name": "Dandelion", - }, - "red_flower": { - "id": 38, - "name": ["Poppy", - "Blue Orchid", - "Allium", - "Azure Bluet", - "Red Tulip", - "Orange Tulip", - "White Tulip", - "Pink Tulip", - "Oxeye Daisy"], - }, - "brown_mushroom": { - "id": 39, - "name": "Brown Mushroom", - }, - "red_mushroom": { - "id": 40, - "name": "Red Mushroom", - }, - "gold_block": { - "id": 41, - "name": "Block of Gold", - }, - "iron_block": { - "id": 42, - "name": "Block of Iron", - }, - "double_stone_slab": { - "id": 43, - "name": "Double Stone Slab", - }, - "stone_slab": { - "id": 44, - "name": ["Stone Slab", - "Sandstone Slab", - "Wooden Slab", - "Cobblestone Slab", - "Bricks Slab", - "Stone Bricks Slab", - "Nether Brick Slab", - "Quartz Slab"], - "place": "slab", - }, - "brick_block": { - "id": 45, - "name": "Bricks", - }, - "tnt": { - "id": 46, - "name": "TNT", - }, - "bookshelf": { - "id": 47, - "name": "Bookshelf", - }, - "mossy_cobblestone": { - "id": 48, - "name": "Moss Stone", - }, - "obsidian": { - "id": 49, - "name": "Obsidian", - }, - "torch": { - "id": 50, - "name": "Torch", - "place": "torch", - }, - "fire": { - "id": 51, - "name": "Fire", - "place": "flatten", - }, - "mob_spawner": { - "id": 52, - "name": "Monster Spawner", - }, - "oak_stairs": { - "id": 53, - "name": "Oak Wood Stairs", - "place": "stairs", - }, - "chest": { - "id": 54, - "name": "Chest", - "place": "chest-furnace", - }, - "redstone_wire": { - "id": 55, - "name": "Redstone Wire", - "place": "flatten", - }, - "diamond_ore": { - "id": 56, - "name": "Diamond Ore", - }, - "diamond_block": { - "id": 57, - "name": "Block of Diamond", - }, - "crafting_table": { - "id": 58, - "name": "Crafting Table", - }, - "wheat": { - "id": 59, - "name": "Wheat", - "place": "flatten", - }, - "farmland": { - "id": 60, - "name": "Farmland", - "place": "flatten", - }, - "furnace": { - "id": 61, - "name": "Furnace", - "place": "chest-furnace", - }, - "lit_furnace": { - "id": 62, - "name": "Burning Furnace", - "place": "chest-furnace", - }, - "standing_sign": { - "id": 63, - "name": "Sign", - "place": "signpost", - }, - "wooden_door": { - "id": 64, - "name": "Oak Door", - "place": "door", - }, - "ladder": { - "id": 65, - "name": "Ladder", - "place": "wallsign-ladder", - }, - "rail": { - "id": 66, - "name": "Rail", - "place": "rail", - }, - "stone_stairs": { - "id": 67, - "name": "Cobblestone Stairs", - "place": "stairs", - }, - "wall_sign": { - "id": 68, - "name": "Sign", - "place": "wallsign-ladder", - }, - "lever": { - "id": 69, - "name": "Lever", - "place": "lever", - }, - "stone_pressure_plate": { - "id": 70, - "name": "Stone Pressure Plate", - }, - "iron_door": { - "id": 71, - "name": "Iron Door", - "place": "door", - }, - "wooden_pressure_plate": { - "id": 72, - "name": "Wooden Pressure Plate", - }, - "redstone_ore": { - "id": 73, - "name": "Redstone Ore", - }, - "lit_redstone_ore": { - "id": 74, - "name": "Redstone Ore", - }, - "unlit_redstone_torch": { - "id": 75, - "name": "Redstone Torch (inactive)", - "place": "torch", - }, - "redstone_torch": { - "id": 76, - "name": "Redstone Torch (active)", - "place": "torch", - }, - "stone_button": { - "id": 77, - "name": "Stone Button", - "place": "button", - }, - "snow_layer": { - "id": 78, - "name": "Snow", - "place": "flatten", - }, - "ice": { - "id": 79, - "name": "Ice", - }, - "snow": { - "id": 80, - "name": "Snow", - }, - "cactus": { - "id": 81, - "name": "Cactus", - "place": "flatten", - }, - "clay": { - "id": 82, - "name": "Clay", - }, - "reeds": { - "id": 83, - "name": "Sugar Cane", - "place": "flatten", - }, - "jukebox": { - "id": 84, - "name": "Jukebox", - "place": "flatten", - }, - "fence": { - "id": 85, - "name": "Fence", - }, - "pumpkin": { - "id": 86, - "name": "Pumpkin", - "place": "pumpkin", - }, - "netherrack": { - "id": 87, - "name": "Netherrack", - }, - "soul_sand": { - "id": 88, - "name": "Soul Sand", - }, - "glowstone": { - "id": 89, - "name": "Glowstone", - }, - "portal": { - "id": 90, - "name": "Portal", - "place": "flatten", - }, - "lit_pumpkin": { - "id": 91, - "name": "Jack o'Lantern", - "place": "pumpkin", - }, - "cake": { - "id": 92, - "name": "Cake", - "place": "flatten", - }, - "unpowered_repeater": { - "id": 93, - "name": "Redstone Repeater (inactive)", - "place": "repeater", - }, - "powered_repeater": { - "id": 94, - "name": "Redstone Repeater (active)", - "place": "repeater", - }, - "stained_glass": { - "id": 95, - "name": ["White Stained Glass", - "Orange Stained Glass", - "Magenta Stained Glass", - "Light Blue Stained Glass", - "Yellow Stained Glass", - "Lime Stained Glass", - "Pink Stained Glass", - "Gray Stained Glass", - "Light Gray Stained Glass", - "Cyan Stained Glass", - "Purple Stained Glass", - "Blue Stained Glass", - "Brown Stained Glass", - "Green Stained Glass", - "Red Stained Glass", - "Black Stained Glass"], - }, - "trapdoor": { - "id": 96, - "name": "Trapdoor", - "place": "trapdoor", - }, - "monster_egg": { - "id": 97, - "name": ["Stone Monster Egg", - "Cobblestone Monster Egg", - "Stone Brick Monster Egg", - "Mossy Stone Brick Monster Egg", - "Cracked Stone Brick Monster Egg", - "Chiseled Stone Brick Monster Egg"], - }, - "stonebrick": { - "id": 98, - "name": ["Stone Bricks", - "Mossy Stone Bricks", - "Cracked Stone Bricks", - "Chiseled Stone Bricks"], - }, - "brown_mushroom_block": { - "id": 99, - "name": "Brown Mushroom (block)", - "place": "flatten", - }, - "red_mushroom_block": { - "id": 100, - "name": "Red Mushroom (block)", - "place": "flatten", - }, - "iron_bars": { - "id": 101, - "name": "Iron Bars", - }, - "glass_pane": { - "id": 102, - "name": "Glass Pane", - }, - "melon_block": { - "id": 103, - "name": "Melon", - }, - "pumpkin_stem": { - "id": 104, - "name": "Pumpkin Stem", - }, - "melon_stem": { - "id": 105, - "name": "Melon Stem", - }, - "vine": { - "id": 106, - "name": "Vines", - "place": "vine", - }, - "fence_gate": { - "id": 107, - "name": "Fence Gate", - "place": "gate", - }, - "brick_stairs": { - "id": 108, - "name": "Brick Stairs", - "place": "stairs", - }, - "stone_brick_stairs": { - "id": 109, - "name": "Stone Brick Stairs", - "place": "stairs", - }, - "mycelium": { - "id": 110, - "name": "Mycelium", - }, - "waterlily": { - "id": 111, - "name": "Lily Pad", - }, - "nether_brick": { - "id": 112, - "name": "Nether Brick", - }, - "nether_brick_fence": { - "id": 113, - "name": "Nether Brick Fence", - }, - "nether_brick_stairs": { - "id": 114, - "name": "Nether Brick Stairs", - "place": "stairs", - }, - "nether_wart": { - "id": 115, - "name": "Nether Wart", - "place": "flatten", - }, - "enchanting_table": { - "id": 116, - "name": "Enchantment Table", - }, - "brewing_stand": { - "id": 117, - "name": "Brewing Stand", - "place": "flatten", - }, - "cauldron": { - "id": 118, - "name": "Cauldron", - "place": "cauldron", - }, - "end_portal": { - "id": 119, - "name": "End Portal", - }, - "end_portal_frame": { - "id": 120, - "name": "End Portal Block", - "place": "flatten", - }, - "end_stone": { - "id": 121, - "name": "End Stone", - }, - "dragon_egg": { - "id": 122, - "name": "Dragon Egg", - }, - "redstone_lamp": { - "id": 123, - "name": "Redstone Lamp (inactive)", - }, - "lit_redstone_lamp": { - "id": 124, - "name": "Redstone Lamp (active)", - }, - "double_wooden_slab": { - "id": 125, - "name": "Double Wooden Slab", - }, - "wooden_slab": { - "id": 126, - "name": ["Oak Wood Slab", - "Spruce Wood Slab", - "Birch Wood Slab", - "Jungle Wood Slab", - "Acacia Wood Slab", - "Dark Oak Wood Slab"], - "place": "slab", - }, - "cocoa": { - "id": 127, - "name": "Cocoa", - "place": "cocoa", - }, - "sandstone_stairs": { - "id": 128, - "name": "Sandstone Stairs", - "place": "stairs", - }, - "emerald_ore": { - "id": 129, - "name": "Emerald Ore", - }, - "ender_chest": { - "id": 130, - "name": "Ender Chest", - "place": "chest-furnace", - }, - "tripwire_hook": { - "id": 131, - "name": "Tripwire Hook", - "place": "tripwire", - }, - "tripwire": { - "id": 132, - "name": "Tripwire", - "place": "flatten", - }, - "emerald_block": { - "id": 133, - "name": "Block of Emerald", - }, - "spruce_stairs": { - "id": 134, - "name": "Spruce Wood Stairs", - "place": "stairs", - }, - "birch_stairs": { - "id": 135, - "name": "Birch Wood Stairs", - "place": "stairs", - }, - "jungle_stairs": { - "id": 136, - "name": "Jungle Wood Stairs", - "place": "stairs", - }, - "command_block": { - "id": 137, - "name": "Command Block", - }, - "beacon": { - "id": 138, - "name": "Beacon", - }, - "cobblestone_wall": { - "id": 139, - "name": ["Cobblestone Wall", - "Mossy Cobblestone Wall"], - }, - "flower_pot": { - "id": 140, - "name": "Flower Pot", - "place": "flatten", - }, - "carrots": { - "id": 141, - "name": "Carrot", - "place": "flatten", - }, - "potatoes": { - "id": 142, - "name": "Potato", - "place": "flatten", - }, - "wooden_button": { - "id": 143, - "name": "Wooden Button", - "place": "button", - }, - "skull": { - "id": 144, - "name": ["Skeleton Skull", - "Wither Skeleton Skull", - "Zombie Head", - "Human Head", - "Creeper Head", - "Dragon Head"] - "place": "mobhead", - }, - "anvil": { - "id": 145, - "name": ["Anvil", - "Slightly Damaged Anvil", - "Very Damaged Anvil"], - "place": "anvil", - }, - "trapped_chest": { - "id": 146, - "name": "Trapped Chest", - "place": "chest-furnace", - }, - "light_weighted_pressure_plate": { - "id": 147, - "name": "Weighted Pressure Plate", - }, - "heavy_weighted_pressure_plate": { - "id": 148, - "name": "Weighted Pressure Plate", - }, - "unpowered_comparator": { - "id": 149, - "name": "Redstone Comparator", - "place": "comparator", - }, - "powered_comparator": { - "id": 150, - "name": "Redstone Comparator", - }, - "daylight_detector": { - "id": 151, - "name": "Daylight Sensor", - "place": "flatten", - }, - "redstone_block": { - "id": 152, - "name": "Block of Redstone", - }, - "quartz_ore": { - "id": 153, - "name": "Nether Quartz Ore", - }, - "hopper": { - "id": 154, - "name": "Hopper", - "place": "hopper", - }, - "quartz_block": { - "id": 155, - "name": ["Block of Quartz", - "Chiseled Quartz Block", - "Pillar Quartz Block"], - }, - "quartz_stairs": { - "id": 156, - "name": "Quartz Stairs", - "place": "stairs", - }, - "activator_rail": { - "id": 157, - "name": "Activator Rail", - "place": "adp-rail", - }, - "dropper": { - "id": 158, - "name": "Dropper", - "place": "dispenser", - }, - "stained_hardened_clay": { - "id": 159, - "name": ["White Stained Clay", - "Orange Stained Clay", - "Magenta Stained Clay", - "Light Blue Stained Clay", - "Yellow Stained Clay", - "Lime Stained Clay", - "Pink Stained Clay", - "Gray Stained Clay", - "Light Gray Stained Clay", - "Cyan Stained Clay", - "Purple Stained Clay", - "Blue Stained Clay", - "Brown Stained Clay", - "Green Stained Clay", - "Red Stained Clay", - "Black Stained Clay"], - }, - "stained_glass_pane": { - "id": 160, - "name": ["White Stained Glass Pane", - "Orange Stained Glass Pane", - "Magenta Stained Glass Pane", - "Light Blue Stained Glass Pane", - "Yellow Stained Glass Pane", - "Lime Stained Glass Pane", - "Pink Stained Glass Pane", - "Gray Stained Glass Pane", - "Light Gray Stained Glass Pane", - "Cyan Stained Glass Pane", - "Purple Stained Glass Pane", - "Blue Stained Glass Pane", - "Brown Stained Glass Pane", - "Green Stained Glass Pane", - "Red Stained Glass Pane", - "Black Stained Glass Pane"], - }, - "leaves2": { - "id": 161, - "name": ["Acacia Leaves", - "Dark Oak Leaves"], - "place": "leaves", - }, - "log2": { - "id": 162, - "name": ["Acacia Wood", - "Dark Oak Wood"], - "place": "wood", - }, - "acacia_stairs": { - "id": 163, - "name": "Acacia Wood Stairs", - "place": "stairs", - }, - "dark_oak_stairs": { - "id": 164, - "name": "Dark Oak Wood Stairs", - "place": "stairs", - }, - "slime": { - "id": 165, - "name": "Slime Block", - }, - "barrier": { - "id": 166, - "name": "Barrier", - }, - "iron_trapdoor": { - "id": 167, - "name": "Iron Trapdoor", - "place": "trapdoor", - }, - "prismarine": { - "id": 168, - "name": ["Prismarine", - "Prismarine Bricks", - "Dark Prismarine"], - }, - "sea_lantern": { - "id": 169, - "name": "Sea Lantern", - }, - "hay_block": { - "id": 170, - "name": "Hay Block", - "place": "hay-bale", - }, - "carpet": { - "id": 171, - "name": ["Carpet", - "Orange Carpet", - "Magenta Carpet", - "Light Blue Carpet", - "Yellow Carpet", - "Lime Carpet", - "Pink Carpet", - "Gray Carpet", - "Light Gray Carpet", - "Cyan Carpet", - "Purple Carpet", - "Blue Carpet", - "Brown Carpet", - "Green Carpet", - "Red Carpet", - "Black Carpet"], - }, - "hardened_clay": { - "id": 172, - "name": "Hardened Clay", - }, - "coal_block": { - "id": 173, - "name": "Block of Coal", - }, - "packed_ice": { - "id": 174, - "name": "Packed Ice", - }, - "double_plant": { - "id": 175, - "name": ["Sunflower", - "Lilac", - "Double Tallgrass", - "Large Fern", - "Rose Bush", - "Peony"], - "place": "largeplant", - }, - "standing_banner": { - "id": 176, - "name": "Banner", - "place": "signpost", - }, - "wall_banner": { - "id": 177, - "name": "Banner", - "place": "wallsign-ladder", - }, - "daylight_detector_inverted": { - "id": 178, - "name": "Inverted Daylight Sensor", - "place": "flatten", - }, - "red_sandstone": { - "id": 179, - "name": ["Red Sandstone", - "Chiseled Red Sandstone", - "Smooth Red Sandstone"], - }, - "red_sandstone_stairs": { - "id": 180, - "name": "Red Sandstone Stairs", - "place": "stairs", - }, - "double_stone_slab2": { - "id": 181, - "name": "Double Red Sandstone Slab", - }, - "stone_slab2": { - "id": 182, - "name": "Red Sandstone Slab", - "place": "slab", - }, - "spruce_fence_gate": { - "id": 183, - "name": "Spruce Fence Gate", - "place": "gate", - }, - "birch_fence_gate": { - "id": 184, - "name": "Birch Fence Gate", - "place": "gate", - }, - "jungle_fence_gate": { - "id": 185, - "name": "Jungle Fence Gate", - "place": "gate", - }, - "dark_oak_fence_gate": { - "id": 186, - "name": "Dark Oak Fence Gate", - "place": "gate", - }, - "acacia_fence_gate": { - "id": 187, - "name": "Acacia Fence Gate", - "place": "gate", - }, - "spruce_fence": { - "id": 188, - "name": "Spruce Fence", - }, - "birch_fence": { - "id": 189, - "name": "Birch Fence", - }, - "jungle_fence": { - "id": 190, - "name": "Jungle Fence", - }, - "dark_oak_fence": { - "id": 191, - "name": "Dark Oak Fence", - }, - "acacia_fence": { - "id": 192, - "name": "Acacia Fence", - }, - "spruce_door": { - "id": 193, - "name": "Spruce Door", - "place": "door", - }, - "birch_door": { - "id": 194, - "name": "Birch Door", - "place": "door", - }, - "jungle_door": { - "id": 195, - "name": "Jungle Door", - "place": "door", - }, - "acacia_door": { - "id": 196, - "name": "Acacia Door", - "place": "door", - }, - "dark_oak_door": { - "id": 197, - "name": "Dark Oak Door", - "place": "door", - }, - "end_rod": { - "id": 198 - "name": "End Rod", - "place": "end_rod", - }, - "chorus_plant": { - "id": 199 - "name": "Chorus Plant", - }, - "chorus_flower": { - "id": 200 - "name": "Chorus Flower", - }, - "purpur_block": { - "id": 201 - "name": "Purpur Block", - }, - "purpur_pillar": { - "id": 202 - "name": "Purpur Pillar", - }, - "purpur_stairs": { - "id": 203 - "name": "Purpur Stairs", - }, - "purpur_double_slab": { - "id": 204 - "name": "Double Purpur Slabs", - }, - "purpur_slab": { - "name": "Purpur Slab", - "id": 205, - "place": "slab", - }, - "end_bricks": { - "name": "End Stone Bricks", - "id": 206 - }, - "beetroots": { - "name": "Beetroot", - "id": 207 - }, - "grass_path": { - "name": "Path", - "id": 208 - }, - "end_gateway": { - "id": 209, - "name": "End Gateway" - }, - "repeating_command_block": { - "name": "Repeating Command Block", - "id": 210, - "place": "flatten", - }, - "chain_command_block": { - "name": "Chain Command Block", - "id": 211 - }, - "frosted_ice": { - "name": "Frosted Ice", - "id": 212 - }, - "magma": { - "id": 213, - "name": "Magma Block", - }, - "nether_wart_block": { - "id": 214, - "name": "Nether Wart Block", - }, - "red_nether_brick": { - "id": 215, - "name": "Red Nether Brick", - }, - "bone_block": { - "id": 216, - "name": "Bone Block", - }, - "structure_void": { - "id": 217, - "name": "Structure Void", - }, - "observer": { - "name": "Observer", - "id": 218 - }, - "white_shulker_box": { - "name": "White Shulker Box", - "id": 219 - }, - "orange_shulker_box": { - "name": "Orange Shulker Box", - "id": 220 - }, - "magenta_shulker_box": { - "name": "Magenta Shulker Box", - "id": 221 - }, - "light_blue_shulker_box": { - "name": "Light Blue Shulker Box", - "id": 222 - }, - "yellow_shulker_box": { - "name": "Yellow Shulker Box", - "id": 223 - }, - "lime_shulker_box": { - "name": "Lime Shulker Box", - "id": 224 - }, - "pink_shulker_box": { - "name": "Pink Shulker Box", - "id": 225 - }, - "gray_shulker_box": { - "name": "Gray Shulker Box", - "id": 226 - }, - "silver_shulker_box": { - "name": "Light Gray Shulker Box", - "id": 227 - }, - "cyan_shulker_box": { - "name": "Cyan Shulker Box", - "id": 228 - }, - "purple_shulker_box": { - "name": "Purple Shulker Box", - "id": 229 - }, - "blue_shulker_box": { - "name": "Blue Shulker Box", - "id": 230 - }, - "brown_shulker_box": { - "name": "Brown Shulker Box", - "id": 231 - }, - "green_shulker_box": { - "name": "Green Shulker Box", - "id": 232 - }, - "red_shulker_box": { - "name": "Red Shulker Box", - "id": 233 - }, - "black_shulker_box": { - "name": "Black Shulker Box", - "id": 234 - }, - "white_glazed_terracotta": { - "id": 235, - "name": "White glazed terracotta", - }, - "orange_glazed_terracotta": { - "id": 236, - "name": "Orange glazed terracotta", - }, - "magenta_glazed_terracotta": { - "id": 237, - "name": "Magenta glazed terracotta", - }, - "light_blue_glazed_terracotta": { - "id": 238, - "name": "Light blue glazed terracotta", - }, - "yellow_glazed_terracotta": { - "id": 239, - "name": "Yellow glazed terracotta", - }, - "lime_glazed_terracotta": { - "id": 240, - "name": "Lime glazed terracotta", - }, - "pink_glazed_terracotta": { - "id": 241, - "name": "Pink glazed terracotta", - }, - "gray_glazed_terracotta": { - "id": 242, - "name": "Gray glazed terracotta", - }, - "light_gray_glazed_terracotta": { - "id": 243, - "name": "Light gray glazed terracotta", - }, - "cyan_glazed_terracotta": { - "id": 244, - "name": "Cyan glazed terracotta", - }, - "purple_glazed_terracotta": { - "id": 245, - "name": "Purple glazed terracotta", - }, - "blue_glazed_terracotta": { - "id": 246, - "name": "Blue glazed terracotta", - }, - "brown_glazed_terracotta": { - "id": 247, - "name": "Brown glazed terracotta", - }, - "green_glazed_terracotta": { - "id": 248, - "name": "Green glazed terracotta", - }, - "red_glazed_terracotta": { - "id": 249, - "name": "Red glazed terracotta", - }, - "black_glazed_terracotta": { - "id": 250, - "name": "Black glazed terracotta", - }, - "concrete": { - "id": 251, - "name": ["White concrete", - "Orange concrete", - "Magenta concrete", - "Light blue concrete", - "Yellow concrete", - "Lime concrete", - "Pink concrete", - "Gray concrete", - "Silver concrete", - "Cyan concrete", - "Purple concrete", - "Blue concrete", - "Brown concrete", - "Green concrete", - "Red concrete", - "Black concrete"], - }, - "concrete_powder": { - "id": 252, - "name": ["White concrete powder", - "Orange concrete powder", - "Magenta concrete powder", - "Light blue concrete powder", - "Yellow concrete powder", - "Lime concrete powder", - "Pink concrete powder", - "Gray concrete powder", - "Silver concrete powder", - "Cyan concrete powder", - "Purple concrete powder", - "Blue concrete powder", - "Brown concrete powder", - "Green concrete powder", - "Red concrete powder", - "Black concrete powder"], - }, - "structure_block": { - "name": ["Structure Block (Save)", - "Structure Block (Load)", - "Structure Block (Corner)", - "Structure Block (Data)"], - "id": 255 - }, - "iron_shovel": { - "id": 256, - "name": "Iron Shovel" - }, - "iron_pickaxe": { - "id": 257, - "name": "Iron Pickaxe" - }, - "iron_axe": { - "id": 258, - "name": "Iron Axe" - }, - "flint_and_steel": { - "id": 259, - "name": "Flint and Steel" - }, - "apple": { - "id": 260, - "name": "Apple" - }, - "bow": { - "id": 261, - "name": "Bow" - }, - "arrow": { - "id": 262, - "name": "Arrow" - }, - "coal": { - "name": ["Coal", - "Charcoal"], - "id": 263 - }, - "diamond": { - "id": 264, - "name": "Diamond" - }, - "iron_ingot": { - "id": 265, - "name": "Iron Ingot" - }, - "gold_ingot": { - "id": 266, - "name": "Gold Ingot" - }, - "iron_sword": { - "id": 267, - "name": "Iron Sword" - }, - "wooden_sword": { - "id": 268, - "name": "Wooden Sword" - }, - "wooden_shovel": { - "id": 269, - "name": "Wooden Shovel" - }, - "wooden_pickaxe": { - "id": 270, - "name": "Wooden Pickaxe" - }, - "wooden_axe": { - "id": 271, - "name": "Wooden Axe" - }, - "stone_sword": { - "id": 272, - "name": "Stone Sword" - }, - "stone_shovel": { - "id": 273, - "name": "Stone Shovel" - }, - "stone_pickaxe": { - "id": 274, - "name": "Stone Pickaxe" - }, - "stone_axe": { - "id": 275, - "name": "Stone Axe" - }, - "diamond_sword": { - "id": 276, - "name": "Diamond Sword" - }, - "diamond_shovel": { - "id": 277, - "name": "Diamond Shovel" - }, - "diamond_pickaxe": { - "id": 278, - "name": "Diamond Pickaxe" - }, - "diamond_axe": { - "id": 279, - "name": "Diamond Axe" - }, - "stick": { - "id": 280, - "name": "Stick" - }, - "bowl": { - "id": 281, - "name": "Bowl" - }, - "mushroom_stew": { - "id": 282, - "name": "Mushroom Stew" - }, - "golden_sword": { - "id": 283, - "name": "Golden Sword" - }, - "golden_shovel": { - "id": 284, - "name": "Golden Shovel" - }, - "golden_pickaxe": { - "id": 285, - "name": "Golden Pickaxe" - }, - "golden_axe": { - "id": 286, - "name": "Golden Axe" - }, - "string": { - "id": 287, - "name": "String" - }, - "feather": { - "id": 288, - "name": "Feather" - }, - "gunpowder": { - "id": 289, - "name": "Gunpowder" - }, - "wooden_hoe": { - "id": 290, - "name": "Wooden Hoe" - }, - "stone_hoe": { - "id": 291, - "name": "Stone Hoe" - }, - "iron_hoe": { - "id": 292, - "name": "Iron Hoe" - }, - "diamond_hoe": { - "id": 293, - "name": "Diamond Hoe" - }, - "golden_hoe": { - "id": 294, - "name": "Golden Hoe" - }, - "wheat_seeds": { - "id": 295, - "name": "Wheat Seeds", - }, - "bread": { - "id": 297, - "name": "Bread" - }, - "leather_helmet": { - "id": 298, - "name": "Leather Helmet" - }, - "leather_chestplate": { - "id": 299, - "name": "Leather Tunic" - }, - "leather_leggings": { - "id": 300, - "name": "Leather Pants" - }, - "leather_boots": { - "id": 301, - "name": "Leather Boots" - }, - "chainmail_helmet": { - "id": 302, - "name": "Chainmail Helmet" - }, - "chainmail_chestplate": { - "id": 303, - "name": "Chainmail Chestplate" - }, - "chainmail_leggings": { - "id": 304, - "name": "Chainmail Leggings" - }, - "chainmail_boots": { - "id": 305, - "name": "Chainmail Boots" - }, - "iron_helmet": { - "id": 306, - "name": "Iron Helmet" - }, - "iron_chestplate": { - "id": 307, - "name": "Iron Chestplate" - }, - "iron_leggings": { - "id": 308, - "name": "Iron Leggings" - }, - "iron_boots": { - "id": 309, - "name": "Iron Boots" - }, - "diamond_helmet": { - "id": 310, - "name": "Diamond Helmet" - }, - "diamond_chestplate": { - "id": 311, - "name": "Diamond Chestplate" - }, - "diamond_leggings": { - "id": 312, - "name": "Diamond Leggings" - }, - "diamond_boots": { - "id": 313, - "name": "Diamond Boots" - }, - "golden_helmet": { - "id": 314, - "name": "Golden Helmet" - }, - "golden_chestplate": { - "id": 315, - "name": "Golden Chestplate" - }, - "golden_leggings": { - "id": 316, - "name": "Golden Leggings" - }, - "golden_boots": { - "id": 317, - "name": "Golden Boots" - }, - "flint": { - "id": 318, - "name": "Flint" - }, - "porkchop": { - "id": 319, - "name": "Raw Porkchop" - }, - "cooked_porkchop": { - "id": 320, - "name": "Cooked Porkchop" - }, - "painting": { - "id": 321, - "name": "Painting" - }, - "golden_apple": { - "id": 322, - "name": ["Enchanted Golden Apple", - "Enchanted Golden Apple" ] - }, - "sign": { - "id": 323, - "name": "Sign", - }, - "bucket": { - "id": 325, - "name": "Bucket" - }, - "water_bucket": { - "id": 326, - "name": "Water Bucket" - }, - "lava_bucket": { - "id": 327, - "name": "Lava Bucket" - }, - "minecart": { - "id": 328, - "name": "Minecart" - }, - "saddle": { - "id": 329, - "name": "Saddle" - }, - "redstone": { - "id": 331, - "name": "Redstone Dust", - }, - "snowball": { - "id": 332, - "name": "Snowball" - }, - "boat": { - "id": 333, - "name": "Oak Boat" - }, - "leather": { - "id": 334, - "name": "Leather" - }, - "milk_bucket": { - "id": 335, - "name": "Milk Bucket" - }, - "brick": { - "id": 336, - "name": "Brick" - }, - "clay_ball": { - "id": 337, - "name": "Clay" - }, - "paper": { - "id": 339, - "name": "Paper" - }, - "book": { - "id": 340, - "name": "Book" - }, - "slime_ball": { - "id": 341, - "name": "Slimeball" - }, - "chest_minecart": { - "id": 342, - "name": "Minecart with Chest" - }, - "furnace_minecart": { - "id": 343, - "name": "Minecart with Furnace" - }, - "egg": { - "id": 344, - "name": "Egg" - }, - "compass": { - "id": 345, - "name": "Compass" - }, - "fishing_rod": { - "id": 346, - "name": "Fishing Rod" - }, - "clock": { - "id": 347, - "name": "Clock" - }, - "glowstone_dust": { - "id": 348, - "name": "Glowstone Dust" - }, - "fish": { - "id": 349, - "name": ["Raw Fish", - "Raw Salmon", - "Clownfish", - "Pufferfish"] - }, - "cooked_fish": { - "id": 350, - "name": ["Cooked Fish", - "Cooked Salmon"] - }, - "dye": { - "id": 351, - "name": ["Ink Sack", - "Rose Red", - "Cactus Green", - "Cocoa Bean", - "Lapis Lazuli", - "Purple Dye", - "Cyan Dye", - "Light Gray Dye", - "Gray Dye", - "Pink Dye", - "Lime Dye", - "Dandelion Yellow", - "Light Blue Dye", - "Magenta Dye", - "Orange Dye", - "Bone Meal"] - }, - "bone": { - "id": 352, - "name": "Bone" - }, - "sugar": { - "id": 353, - "name": "Sugar" - }, - "bed-block": { - "id": 355, - "name": "Bed", - "place": "bed", - }, - "repeater": { - "id": 356, - "name": "Redstone Repeater", - "place": "repeater", - }, - "cookie": { - "id": 357, - "name": "Cookie" - }, - "filled_map": { - "id": 358, - "name": "Map" - }, - "shears": { - "id": 359, - "name": "Shears" - }, - "melon": { - "id": 360, - "name": "Melon" - }, - "pumpkin_seeds": { - "id": 361, - "name": "Pumpkin Seeds" - }, - "melon_seeds": { - "id": 362, - "name": "Melon Seeds" - }, - "beef": { - "id": 363, - "name": "Raw Beef" - }, - "cooked_beef": { - "id": 364, - "name": "Steak" - }, - "chicken": { - "id": 365, - "name": "Raw Chicken" - }, - "cooked_chicken": { - "id": 366, - "name": "Cooked Chicken" - }, - "rotten_flesh": { - "id": 367, - "name": "Rotten Flesh" - }, - "ender_pearl": { - "id": 368, - "name": "Ender Pearl" - }, - "blaze_rod": { - "id": 369, - "name": "Blaze Rod" - }, - "ghast_tear": { - "id": 370, - "name": "Ghast Tear" - }, - "gold_nugget": { - "id": 371, - "name": "Gold Nugget" - }, - "potion": { - "id": 373, - "name": "Potion" - }, - "glass_bottle": { - "id": 374, - "name": "Glass Bottle" - }, - "spider_eye": { - "id": 375, - "name": "Spider Eye" - }, - "fermented_spider_eye": { - "id": 376, - "name": "Fermented Spider Eye" - }, - "blaze_powder": { - "id": 377, - "name": "Blaze Powder" - }, - "magma_cream": { - "id": 378, - "name": "Magma Cream" - }, - "ender_eye": { - "id": 381, - "name": "Eye of Ender" - }, - "speckled_melon": { - "id": 382, - "name": "Glistering Melon" - }, - "spawn_egg": { - "id": 383, - "name": "Spawn Egg" - }, - "experience_bottle": { - "id": 384, - "name": "Bottle o' Enchanting" - }, - "fire_charge": { - "id": 385, - "name": "Fire Charge" - }, - "writable_book": { - "id": 386, - "name": "Book and Quill" - }, - "written_book": { - "id": 387, - "name": "Written Book" - }, - "emerald": { - "id": 388, - "name": "Emerald" - }, - "item_frame": { - "id": 389, - "name": "Item Frame" - }, - "carrot": { - "id": 391, - "name": "Carrot", - }, - "potato": { - "id": 392, - "name": "Potato", - }, - "baked_potato": { - "id": 393, - "name": "Baked Potato" - }, - "poisonous_potato": { - "id": 394, - "name": "Poisonous Potato" - }, - "map": { - "id": 395, - "name": "Empty Map" - }, - "golden_carrot": { - "id": 396, - "name": "Golden Carrot" - }, - "carrot_on_a_stick": { - "id": 398, - "name": "Carrot on a Stick" - }, - "nether_star": { - "id": 399, - "name": "Nether Star" - }, - "pumpkin_pie": { - "id": 400, - "name": "Pumpkin Pie" - }, - "fireworks": { - "id": 401, - "name": "Firework Rocket" - }, - "firework_charge": { - "id": 402, - "name": "Firework Star" - }, - "enchanted_book": { - "id": 403, - "name": "Enchanted Book" - }, - "comparator": { - "id": 404, - "name": "Redstone Comparator", - "place": "comparator", - }, - "netherbrick": { - "id": 405, - "name": "Nether Brick" - }, - "quartz": { - "id": 406, - "name": "Nether Quartz" - }, - "tnt_minecart": { - "id": 407, - "name": "Minecart with TNT" - }, - "hopper_minecart": { - "id": 408, - "name": "Minecart with Hopper" - }, - "prismarine_shard": { - "id": 409, - "name": "Prismarine Shard" - }, - "prismarine_crystals": { - "id": 410, - "name": "Prismarine Crystals" - }, - "rabbit": { - "id": 411, - "name": "Raw Rabbit" - }, - "cooked_rabbit": { - "id": 412, - "name": "Cooked Rabbit" - }, - "rabbit_stew": { - "id": 413, - "name": "Rabbit Stew" - }, - "rabbit_foot": { - "id": 414, - "name": "Rabbit's Foot" - }, - "rabbit_hide": { - "id": 415, - "name": "Rabbit Hide" - }, - "armor_stand": { - "id": 416, - "name": "Armor Stand" - }, - "iron_horse_armor": { - "id": 417, - "name": "Iron Horse Armor" - }, - "golden_horse_armor": { - "id": 418, - "name": "Golden Horse Armor" - }, - "diamond_horse_armor": { - "id": 419, - "name": "Diamond Horse Armor" - }, - "lead": { - "id": 420, - "name": "Lead" - }, - "name_tag": { - "id": 421, - "name": "Name Tag" - }, - "command_block_minecart": { - "id": 422, - "name": "Minecart with Command Block" - }, - "mutton": { - "id": 423, - "name": "Raw Mutton" - }, - "cooked_mutton": { - "id": 424, - "name": "Cooked Mutton" - }, - "banner": { - "id": 425, - "name": "Banner", - }, - "chorus_fruit": { - "id": 432, - "name": "Chorus Fruit" - }, - "popped_chorus_fruit": { - "id": 433, - "name": "Popped Chorus Fruit" - }, - "beetroot": { - "id": 434, - "name": "Beetroot" - }, - "beetroot_seeds": { - "id": 435, - "name": "Beetroot Seeds" - }, - "beetroot_soup": { - "id": 436, - "name": "Beetroot Soup" - }, - "dragon_breath": { - "id": 437, - "name": "Dragon's Breath" - }, - "splash_potion": { - "id": 438, - "name": "Splash Potion" - }, - "spectral_arrow": { - "id": 439, - "name": "Spectral Arrow" - }, - "tipped_arrow": { - "id": 440, - "name": "Tipped Arrow" - }, - "lingering_potion": { - "id": 441, - "name": "Lingering Potion" - }, - "shield": { - "id": 442, - "name": "Shield" - }, - "elytra": { - "id": 443, - "name": "Elytra" - }, - "spruce_boat": { - "id": 444, - "name": "Spruce Boat" - }, - "birch_boat": { - "id": 445, - "name": "Birch Boat" - }, - "jungle_boat": { - "id": 446, - "name": "Jungle Boat" - }, - "acacia_boat": { - "id": 447, - "name": "Acacia Boat" - }, - "dark_oak_boat": { - "id": 448, - "name": "Dark Oak Boat" - }, - "totem_of_undying": { - "id": 449, - "name": "Totem of Undying" - }, - "shulker_shell": { - "id": 450, - "name": "Shulker Shell" - }, - "iron_nugget": { - "id": 452, - "name": "Iron Nugget" - }, - "record_13": { - "id": 2256, - "name": "13 Disc" - }, - "record_cat": { - "id": 2257, - "name": "Cat Disc" - } - "record_blocks": { - "id": 2258, - "name": "Blocks Disc" - }, - "record_chirp": { - "id": 2259, - "name": "Chirp Disc" - }, - "record_far": { - "id": 2260, - "name": "Far Disc" - }, - "record_mall": { - "id": 2261, - "name": "Mall Disc" - }, - "record_mellohi": { - "id": 2262, - "name": "Mellohi Disc" - }, - "record_stal": { - "id": 2263, - "name": "Stal Disc" - }, - "record_strad": { - "id": 2264, - "name": "Strad Disc" - }, - "record_ward": { - "id": 2265, - "name": "Ward Disc" - }, - "record_11": { - "id": 2266, - "name": "11 Disc" - }, - "record_wait": { - "id": 2267, - "name": "Wait Disc" - }, -} +{"air": "Air", "barrier": "Barrier", "light": "Light", "stone": "Stone", "granite": "Granite", "polished_granite": "Polished Granite", "diorite": "Diorite", "polished_diorite": "Polished Diorite", "andesite": "Andesite", "polished_andesite": "Polished Andesite", "hay_block": "Hay Bale", "grass_block": "Grass Block", "dirt": "Dirt", "coarse_dirt": "Coarse Dirt", "podzol": "Podzol", "cobblestone": "Cobblestone", "oak_planks": "Oak Planks", "spruce_planks": "Spruce Planks", "birch_planks": "Birch Planks", "jungle_planks": "Jungle Planks", "acacia_planks": "Acacia Planks", "dark_oak_planks": "Dark Oak Planks", "mangrove_planks": "Mangrove Planks", "bamboo_planks": "Bamboo Planks", "bamboo_mosaic": "Bamboo Mosaic", "oak_sapling": "Oak Sapling", "spruce_sapling": "Spruce Sapling", "birch_sapling": "Birch Sapling", "jungle_sapling": "Jungle Sapling", "acacia_sapling": "Acacia Sapling", "dark_oak_sapling": "Dark Oak Sapling", "mangrove_propagule": "Mangrove Propagule", "oak_door": "Oak Door", "spruce_door": "Spruce Door", "birch_door": "Birch Door", "jungle_door": "Jungle Door", "acacia_door": "Acacia Door", "dark_oak_door": "Dark Oak Door", "mangrove_door": "Mangrove Door", "bamboo_door": "Bamboo Door", "bedrock": "Bedrock", "water": "Water", "lava": "Lava", "sand": "Sand", "red_sand": "Red Sand", "sandstone": "Sandstone", "chiseled_sandstone": "Chiseled Sandstone", "cut_sandstone": "Cut Sandstone", "red_sandstone": "Red Sandstone", "chiseled_red_sandstone": "Chiseled Red Sandstone", "cut_red_sandstone": "Cut Red Sandstone", "gravel": "Gravel", "gold_ore": "Gold Ore", "deepslate_gold_ore": "Deepslate Gold Ore", "nether_gold_ore": "Nether Gold Ore", "iron_ore": "Iron Ore", "deepslate_iron_ore": "Deepslate Iron Ore", "coal_ore": "Coal Ore", "deepslate_coal_ore": "Deepslate Coal Ore", "oak_wood": "Oak Wood", "spruce_wood": "Spruce Wood", "birch_wood": "Birch Wood", "jungle_wood": "Jungle Wood", "acacia_wood": "Acacia Wood", "dark_oak_wood": "Dark Oak Wood", "mangrove_wood": "Mangrove Wood", "oak_log": "Oak Log", "spruce_log": "Spruce Log", "birch_log": "Birch Log", "jungle_log": "Jungle Log", "acacia_log": "Acacia Log", "dark_oak_log": "Dark Oak Log", "mangrove_log": "Mangrove Log", "mangrove_roots": "Mangrove Roots", "muddy_mangrove_roots": "Muddy Mangrove Roots", "bamboo_block": "Block of Bamboo", "stripped_oak_log": "Stripped Oak Log", "stripped_spruce_log": "Stripped Spruce Log", "stripped_birch_log": "Stripped Birch Log", "stripped_jungle_log": "Stripped Jungle Log", "stripped_acacia_log": "Stripped Acacia Log", "stripped_dark_oak_log": "Stripped Dark Oak Log", "stripped_mangrove_log": "Stripped Mangrove Log", "stripped_bamboo_block": "Block of Stripped Bamboo", "stripped_oak_wood": "Stripped Oak Wood", "stripped_spruce_wood": "Stripped Spruce Wood", "stripped_birch_wood": "Stripped Birch Wood", "stripped_jungle_wood": "Stripped Jungle Wood", "stripped_acacia_wood": "Stripped Acacia Wood", "stripped_dark_oak_wood": "Stripped Dark Oak Wood", "stripped_mangrove_wood": "Stripped Mangrove Wood", "oak_leaves": "Oak Leaves", "spruce_leaves": "Spruce Leaves", "birch_leaves": "Birch Leaves", "jungle_leaves": "Jungle Leaves", "acacia_leaves": "Acacia Leaves", "dark_oak_leaves": "Dark Oak Leaves", "mangrove_leaves": "Mangrove Leaves", "dead_bush": "Dead Bush", "grass": "Grass", "fern": "Fern", "sponge": "Sponge", "wet_sponge": "Wet Sponge", "glass": "Glass", "kelp_plant": "Kelp Plant", "kelp": "Kelp", "dried_kelp_block": "Dried Kelp Block", "white_stained_glass": "White Stained Glass", "orange_stained_glass": "Orange Stained Glass", "magenta_stained_glass": "Magenta Stained Glass", "light_blue_stained_glass": "Light Blue Stained Glass", "yellow_stained_glass": "Yellow Stained Glass", "lime_stained_glass": "Lime Stained Glass", "pink_stained_glass": "Pink Stained Glass", "gray_stained_glass": "Gray Stained Glass", "light_gray_stained_glass": "Light Gray Stained Glass", "cyan_stained_glass": "Cyan Stained Glass", "purple_stained_glass": "Purple Stained Glass", "blue_stained_glass": "Blue Stained Glass", "brown_stained_glass": "Brown Stained Glass", "green_stained_glass": "Green Stained Glass", "red_stained_glass": "Red Stained Glass", "black_stained_glass": "Black Stained Glass", "white_stained_glass_pane": "White Stained Glass Pane", "orange_stained_glass_pane": "Orange Stained Glass Pane", "magenta_stained_glass_pane": "Magenta Stained Glass Pane", "light_blue_stained_glass_pane": "Light Blue Stained Glass Pane", "yellow_stained_glass_pane": "Yellow Stained Glass Pane", "lime_stained_glass_pane": "Lime Stained Glass Pane", "pink_stained_glass_pane": "Pink Stained Glass Pane", "gray_stained_glass_pane": "Gray Stained Glass Pane", "light_gray_stained_glass_pane": "Light Gray Stained Glass Pane", "cyan_stained_glass_pane": "Cyan Stained Glass Pane", "purple_stained_glass_pane": "Purple Stained Glass Pane", "blue_stained_glass_pane": "Blue Stained Glass Pane", "brown_stained_glass_pane": "Brown Stained Glass Pane", "green_stained_glass_pane": "Green Stained Glass Pane", "red_stained_glass_pane": "Red Stained Glass Pane", "black_stained_glass_pane": "Black Stained Glass Pane", "glass_pane": "Glass Pane", "dandelion": "Dandelion", "poppy": "Poppy", "blue_orchid": "Blue Orchid", "allium": "Allium", "azure_bluet": "Azure Bluet", "red_tulip": "Red Tulip", "orange_tulip": "Orange Tulip", "white_tulip": "White Tulip", "pink_tulip": "Pink Tulip", "oxeye_daisy": "Oxeye Daisy", "cornflower": "Cornflower", "lily_of_the_valley": "Lily of the Valley", "wither_rose": "Wither Rose", "sunflower": "Sunflower", "lilac": "Lilac", "tall_grass": "Tall Grass", "tall_seagrass": "Tall Seagrass", "large_fern": "Large Fern", "rose_bush": "Rose Bush", "peony": "Peony", "seagrass": "Seagrass", "sea_pickle": "Sea Pickle", "brown_mushroom": "Brown Mushroom", "red_mushroom_block": "Red Mushroom Block", "brown_mushroom_block": "Brown Mushroom Block", "mushroom_stem": "Mushroom Stem", "gold_block": "Block of Gold", "iron_block": "Block of Iron", "smooth_stone": "Smooth Stone", "smooth_sandstone": "Smooth Sandstone", "smooth_red_sandstone": "Smooth Red Sandstone", "smooth_quartz": "Smooth Quartz Block", "stone_slab": "Stone Slab", "smooth_stone_slab": "Smooth Stone Slab", "sandstone_slab": "Sandstone Slab", "red_sandstone_slab": "Red Sandstone Slab", "cut_sandstone_slab": "Cut Sandstone Slab", "cut_red_sandstone_slab": "Cut Red Sandstone Slab", "petrified_oak_slab": "Petrified Oak Slab", "cobblestone_slab": "Cobblestone Slab", "brick_slab": "Brick Slab", "stone_brick_slab": "Stone Brick Slab", "mud_brick_slab": "Mud Brick Slab", "nether_brick_slab": "Nether Brick Slab", "quartz_slab": "Quartz Slab", "oak_slab": "Oak Slab", "spruce_slab": "Spruce Slab", "birch_slab": "Birch Slab", "jungle_slab": "Jungle Slab", "acacia_slab": "Acacia Slab", "dark_oak_slab": "Dark Oak Slab", "mangrove_slab": "Mangrove Slab", "bamboo_slab": "Bamboo Slab", "bamboo_mosaic_slab": "Bamboo Mosaic Slab", "dark_prismarine_slab": "Dark Prismarine Slab", "prismarine_slab": "Prismarine Slab", "prismarine_brick_slab": "Prismarine Brick Slab", "bricks": "Bricks", "tnt": "TNT", "bookshelf": "Bookshelf", "chiseled_bookshelf": "Chiseled Bookshelf", "mossy_cobblestone": "Mossy Cobblestone", "obsidian": "Obsidian", "torch": "Torch", "wall_torch": "Wall Torch", "soul_torch": "Soul Torch", "soul_wall_torch": "Soul Wall Torch", "fire": "Fire", "spawner": "Monster Spawner", "respawn_anchor": "Respawn Anchor", "oak_stairs": "Oak Stairs", "spruce_stairs": "Spruce Stairs", "birch_stairs": "Birch Stairs", "jungle_stairs": "Jungle Stairs", "acacia_stairs": "Acacia Stairs", "dark_oak_stairs": "Dark Oak Stairs", "mangrove_stairs": "Mangrove Stairs", "bamboo_stairs": "Bamboo Stairs", "bamboo_mosaic_stairs": "Bamboo Mosaic Stairs", "dark_prismarine_stairs": "Dark Prismarine Stairs", "prismarine_stairs": "Prismarine Stairs", "prismarine_brick_stairs": "Prismarine Brick Stairs", "chest": "Chest", "trapped_chest": "Trapped Chest", "redstone_wire": "Redstone Wire", "diamond_ore": "Diamond Ore", "deepslate_diamond_ore": "Deepslate Diamond Ore", "coal_block": "Block of Coal", "diamond_block": "Block of Diamond", "crafting_table": "Crafting Table", "wheat": "Wheat", "farmland": "Farmland", "furnace": "Furnace", "oak_sign": "Oak Sign", "spruce_sign": "Spruce Sign", "birch_sign": "Birch Sign", "acacia_sign": "Acacia Sign", "jungle_sign": "Jungle Sign", "dark_oak_sign": "Dark Oak Sign", "mangrove_sign": "Mangrove Sign", "bamboo_sign": "Bamboo Sign", "oak_wall_sign": "Oak Wall Sign", "spruce_wall_sign": "Spruce Wall Sign", "birch_wall_sign": "Birch Wall Sign", "acacia_wall_sign": "Acacia Wall Sign", "jungle_wall_sign": "Jungle Wall Sign", "dark_oak_wall_sign": "Dark Oak Wall Sign", "mangrove_wall_sign": "Mangrove Wall Sign", "bamboo_wall_sign": "Bamboo Wall Sign", "oak_hanging_sign": "Oak Hanging Sign", "spruce_hanging_sign": "Spruce Hanging Sign", "birch_hanging_sign": "Birch Hanging Sign", "acacia_hanging_sign": "Acacia Hanging Sign", "jungle_hanging_sign": "Jungle Hanging Sign", "crimson_hanging_sign": "Crimson Hanging Sign", "warped_hanging_sign": "Warped Hanging Sign", "dark_oak_hanging_sign": "Dark Oak Hanging Sign", "mangrove_hanging_sign": "Mangrove Hanging Sign", "bamboo_hanging_sign": "Bamboo Hanging Sign", "oak_wall_hanging_sign": "Oak Wall Hanging Sign", "spruce_wall_hanging_sign": "Spruce Wall Hanging Sign", "birch_wall_hanging_sign": "Birch Wall Hanging Sign", "acacia_wall_hanging_sign": "Acacia Wall Hanging Sign", "jungle_wall_hanging_sign": "Jungle Wall Hanging Sign", "dark_oak_wall_hanging_sign": "Dark Oak Wall Hanging Sign", "mangrove_wall_hanging_sign": "Mangrove Wall Hanging Sign", "crimson_wall_hanging_sign": "Crimson Wall Hanging Sign", "warped_wall_hanging_sign": "Warped Wall Hanging Sign", "bamboo_wall_hanging_sign": "Bamboo Wall Hanging Sign", "ladder": "Ladder", "scaffolding": "Scaffolding", "rail": "Rail", "powered_rail": "Powered Rail", "activator_rail": "Activator Rail", "detector_rail": "Detector Rail", "cobblestone_stairs": "Cobblestone Stairs", "sandstone_stairs": "Sandstone Stairs", "red_sandstone_stairs": "Red Sandstone Stairs", "lever": "Lever", "stone_pressure_plate": "Stone Pressure Plate", "oak_pressure_plate": "Oak Pressure Plate", "spruce_pressure_plate": "Spruce Pressure Plate", "birch_pressure_plate": "Birch Pressure Plate", "jungle_pressure_plate": "Jungle Pressure Plate", "acacia_pressure_plate": "Acacia Pressure Plate", "dark_oak_pressure_plate": "Dark Oak Pressure Plate", "mangrove_pressure_plate": "Mangrove Pressure Plate", "bamboo_pressure_plate": "Bamboo Pressure Plate", "light_weighted_pressure_plate": "Light Weighted Pressure Plate", "heavy_weighted_pressure_plate": "Heavy Weighted Pressure Plate", "iron_door": "Iron Door", "redstone_ore": "Redstone Ore", "deepslate_redstone_ore": "Deepslate Redstone Ore", "redstone_torch": "Redstone Torch", "redstone_wall_torch": "Redstone Wall Torch", "stone_button": "Stone Button", "oak_button": "Oak Button", "spruce_button": "Spruce Button", "birch_button": "Birch Button", "jungle_button": "Jungle Button", "acacia_button": "Acacia Button", "dark_oak_button": "Dark Oak Button", "mangrove_button": "Mangrove Button", "bamboo_button": "Bamboo Button", "snow": "Snow", "white_carpet": "White Carpet", "orange_carpet": "Orange Carpet", "magenta_carpet": "Magenta Carpet", "light_blue_carpet": "Light Blue Carpet", "yellow_carpet": "Yellow Carpet", "lime_carpet": "Lime Carpet", "pink_carpet": "Pink Carpet", "gray_carpet": "Gray Carpet", "light_gray_carpet": "Light Gray Carpet", "cyan_carpet": "Cyan Carpet", "purple_carpet": "Purple Carpet", "blue_carpet": "Blue Carpet", "brown_carpet": "Brown Carpet", "green_carpet": "Green Carpet", "red_carpet": "Red Carpet", "black_carpet": "Black Carpet", "ice": "Ice", "frosted_ice": "Frosted Ice", "packed_ice": "Packed Ice", "blue_ice": "Blue Ice", "cactus": "Cactus", "clay": "Clay", "white_terracotta": "White Terracotta", "orange_terracotta": "Orange Terracotta", "magenta_terracotta": "Magenta Terracotta", "light_blue_terracotta": "Light Blue Terracotta", "yellow_terracotta": "Yellow Terracotta", "lime_terracotta": "Lime Terracotta", "pink_terracotta": "Pink Terracotta", "gray_terracotta": "Gray Terracotta", "light_gray_terracotta": "Light Gray Terracotta", "cyan_terracotta": "Cyan Terracotta", "purple_terracotta": "Purple Terracotta", "blue_terracotta": "Blue Terracotta", "brown_terracotta": "Brown Terracotta", "green_terracotta": "Green Terracotta", "red_terracotta": "Red Terracotta", "black_terracotta": "Black Terracotta", "terracotta": "Terracotta", "sugar_cane": "Sugar Cane", "jukebox": "Jukebox", "oak_fence": "Oak Fence", "spruce_fence": "Spruce Fence", "birch_fence": "Birch Fence", "jungle_fence": "Jungle Fence", "acacia_fence": "Acacia Fence", "dark_oak_fence": "Dark Oak Fence", "mangrove_fence": "Mangrove Fence", "bamboo_fence": "Bamboo Fence", "oak_fence_gate": "Oak Fence Gate", "spruce_fence_gate": "Spruce Fence Gate", "birch_fence_gate": "Birch Fence Gate", "jungle_fence_gate": "Jungle Fence Gate", "acacia_fence_gate": "Acacia Fence Gate", "dark_oak_fence_gate": "Dark Oak Fence Gate", "mangrove_fence_gate": "Mangrove Fence Gate", "bamboo_fence_gate": "Bamboo Fence Gate", "pumpkin_stem": "Pumpkin Stem", "attached_pumpkin_stem": "Attached Pumpkin Stem", "pumpkin": "Pumpkin", "carved_pumpkin": "Carved Pumpkin", "jack_o_lantern": "Jack o'Lantern", "netherrack": "Netherrack", "soul_sand": "Soul Sand", "glowstone": "Glowstone", "nether_portal": "Nether Portal", "white_wool": "White Wool", "orange_wool": "Orange Wool", "magenta_wool": "Magenta Wool", "light_blue_wool": "Light Blue Wool", "yellow_wool": "Yellow Wool", "lime_wool": "Lime Wool", "pink_wool": "Pink Wool", "gray_wool": "Gray Wool", "light_gray_wool": "Light Gray Wool", "cyan_wool": "Cyan Wool", "purple_wool": "Purple Wool", "blue_wool": "Blue Wool", "brown_wool": "Brown Wool", "green_wool": "Green Wool", "red_wool": "Red Wool", "black_wool": "Black Wool", "lapis_ore": "Lapis Lazuli Ore", "deepslate_lapis_ore": "Deepslate Lapis Lazuli Ore", "lapis_block": "Block of Lapis Lazuli", "dispenser": "Dispenser", "dropper": "Dropper", "note_block": "Note Block", "cake": "Cake", "set_spawn": "Respawn point set", "oak_trapdoor": "Oak Trapdoor", "spruce_trapdoor": "Spruce Trapdoor", "birch_trapdoor": "Birch Trapdoor", "jungle_trapdoor": "Jungle Trapdoor", "acacia_trapdoor": "Acacia Trapdoor", "dark_oak_trapdoor": "Dark Oak Trapdoor", "mangrove_trapdoor": "Mangrove Trapdoor", "bamboo_trapdoor": "Bamboo Trapdoor", "iron_trapdoor": "Iron Trapdoor", "cobweb": "Cobweb", "stone_bricks": "Stone Bricks", "mossy_stone_bricks": "Mossy Stone Bricks", "cracked_stone_bricks": "Cracked Stone Bricks", "chiseled_stone_bricks": "Chiseled Stone Bricks", "packed_mud": "Packed Mud", "mud_bricks": "Mud Bricks", "infested_stone": "Infested Stone", "infested_cobblestone": "Infested Cobblestone", "infested_stone_bricks": "Infested Stone Bricks", "infested_mossy_stone_bricks": "Infested Mossy Stone Bricks", "infested_cracked_stone_bricks": "Infested Cracked Stone Bricks", "infested_chiseled_stone_bricks": "Infested Chiseled Stone Bricks", "piston": "Piston", "sticky_piston": "Sticky Piston", "iron_bars": "Iron Bars", "melon": "Melon", "brick_stairs": "Brick Stairs", "stone_brick_stairs": "Stone Brick Stairs", "mud_brick_stairs": "Mud Brick Stairs", "vine": "Vines", "nether_bricks": "Nether Bricks", "nether_brick_fence": "Nether Brick Fence", "nether_brick_stairs": "Nether Brick Stairs", "nether_wart": "Nether Wart", "warped_wart_block": "Warped Wart Block", "warped_stem": "Warped Stem", "stripped_warped_stem": "Stripped Warped Stem", "warped_hyphae": "Warped Hyphae", "stripped_warped_hyphae": "Stripped Warped Hyphae", "crimson_stem": "Crimson Stem", "stripped_crimson_stem": "Stripped Crimson Stem", "crimson_hyphae": "Crimson Hyphae", "stripped_crimson_hyphae": "Stripped Crimson Hyphae", "warped_nylium": "Warped Nylium", "crimson_nylium": "Crimson Nylium", "warped_fungus": "Warped Fungus", "crimson_fungus": "Crimson Fungus", "crimson_roots": "Crimson Roots", "warped_roots": "Warped Roots", "nether_sprouts": "Nether Sprouts", "shroomlight": "Shroomlight", "weeping_vines": "Weeping Vines", "weeping_vines_plant": "Weeping Vines Plant", "twisting_vines": "Twisting Vines", "twisting_vines_plant": "Twisting Vines Plant", "soul_soil": "Soul Soil", "basalt": "Basalt", "polished_basalt": "Polished Basalt", "warped_planks": "Warped Planks", "warped_slab": "Warped Slab", "warped_pressure_plate": "Warped Pressure Plate", "warped_fence": "Warped Fence", "warped_trapdoor": "Warped Trapdoor", "warped_fence_gate": "Warped Fence Gate", "warped_stairs": "Warped Stairs", "warped_button": "Warped Button", "warped_door": "Warped Door", "warped_sign": "Warped Sign", "warped_wall_sign": "Warped Wall Sign", "crimson_planks": "Crimson Planks", "crimson_slab": "Crimson Slab", "crimson_pressure_plate": "Crimson Pressure Plate", "crimson_fence": "Crimson Fence", "crimson_trapdoor": "Crimson Trapdoor", "crimson_fence_gate": "Crimson Fence Gate", "crimson_stairs": "Crimson Stairs", "crimson_button": "Crimson Button", "crimson_door": "Crimson Door", "crimson_sign": "Crimson Sign", "crimson_wall_sign": "Crimson Wall Sign", "soul_fire": "Soul Fire", "cauldron": "Cauldron", "water_cauldron": "Water Cauldron", "lava_cauldron": "Lava Cauldron", "powder_snow_cauldron": "Powder Snow Cauldron", "enchanting_table": "Enchanting Table", "anvil": "Anvil", "chipped_anvil": "Chipped Anvil", "damaged_anvil": "Damaged Anvil", "end_stone": "End Stone", "end_portal_frame": "End Portal Frame", "mycelium": "Mycelium", "lily_pad": "Lily Pad", "dragon_egg": "Dragon Egg", "redstone_lamp": "Redstone Lamp", "cocoa": "Cocoa", "ender_chest": "Ender Chest", "emerald_ore": "Emerald Ore", "deepslate_emerald_ore": "Deepslate Emerald Ore", "emerald_block": "Block of Emerald", "redstone_block": "Block of Redstone", "tripwire": "Tripwire", "tripwire_hook": "Tripwire Hook", "command_block": "Command Block", "repeating_command_block": "Repeating Command Block", "chain_command_block": "Chain Command Block", "beacon": "Beacon", "cobblestone_wall": "Cobblestone Wall", "mossy_cobblestone_wall": "Mossy Cobblestone Wall", "carrots": "Carrots", "potatoes": "Potatoes", "daylight_detector": "Daylight Detector", "nether_quartz_ore": "Nether Quartz Ore", "hopper": "Hopper", "quartz_block": "Block of Quartz", "chiseled_quartz_block": "Chiseled Quartz Block", "quartz_pillar": "Quartz Pillar", "quartz_stairs": "Quartz Stairs", "slime_block": "Slime Block", "prismarine": "Prismarine", "prismarine_bricks": "Prismarine Bricks", "dark_prismarine": "Dark Prismarine", "sea_lantern": "Sea Lantern", "end_rod": "End Rod", "chorus_plant": "Chorus Plant", "chorus_flower": "Chorus Flower", "purpur_block": "Purpur Block", "purpur_pillar": "Purpur Pillar", "purpur_stairs": "Purpur Stairs", "purpur_slab": "Purpur Slab", "end_stone_bricks": "End Stone Bricks", "beetroots": "Beetroots", "dirt_path": "Dirt Path", "magma_block": "Magma Block", "nether_wart_block": "Nether Wart Block", "red_nether_bricks": "Red Nether Bricks", "bone_block": "Bone Block", "observer": "Observer", "shulker_box": "Shulker Box", "white_shulker_box": "White Shulker Box", "orange_shulker_box": "Orange Shulker Box", "magenta_shulker_box": "Magenta Shulker Box", "light_blue_shulker_box": "Light Blue Shulker Box", "yellow_shulker_box": "Yellow Shulker Box", "lime_shulker_box": "Lime Shulker Box", "pink_shulker_box": "Pink Shulker Box", "gray_shulker_box": "Gray Shulker Box", "light_gray_shulker_box": "Light Gray Shulker Box", "cyan_shulker_box": "Cyan Shulker Box", "purple_shulker_box": "Purple Shulker Box", "blue_shulker_box": "Blue Shulker Box", "brown_shulker_box": "Brown Shulker Box", "green_shulker_box": "Green Shulker Box", "red_shulker_box": "Red Shulker Box", "black_shulker_box": "Black Shulker Box", "white_glazed_terracotta": "White Glazed Terracotta", "orange_glazed_terracotta": "Orange Glazed Terracotta", "magenta_glazed_terracotta": "Magenta Glazed Terracotta", "light_blue_glazed_terracotta": "Light Blue Glazed Terracotta", "yellow_glazed_terracotta": "Yellow Glazed Terracotta", "lime_glazed_terracotta": "Lime Glazed Terracotta", "pink_glazed_terracotta": "Pink Glazed Terracotta", "gray_glazed_terracotta": "Gray Glazed Terracotta", "light_gray_glazed_terracotta": "Light Gray Glazed Terracotta", "cyan_glazed_terracotta": "Cyan Glazed Terracotta", "purple_glazed_terracotta": "Purple Glazed Terracotta", "blue_glazed_terracotta": "Blue Glazed Terracotta", "brown_glazed_terracotta": "Brown Glazed Terracotta", "green_glazed_terracotta": "Green Glazed Terracotta", "red_glazed_terracotta": "Red Glazed Terracotta", "black_glazed_terracotta": "Black Glazed Terracotta", "black_concrete": "Black Concrete", "red_concrete": "Red Concrete", "green_concrete": "Green Concrete", "brown_concrete": "Brown Concrete", "blue_concrete": "Blue Concrete", "purple_concrete": "Purple Concrete", "cyan_concrete": "Cyan Concrete", "light_gray_concrete": "Light Gray Concrete", "gray_concrete": "Gray Concrete", "pink_concrete": "Pink Concrete", "lime_concrete": "Lime Concrete", "yellow_concrete": "Yellow Concrete", "light_blue_concrete": "Light Blue Concrete", "magenta_concrete": "Magenta Concrete", "orange_concrete": "Orange Concrete", "white_concrete": "White Concrete", "black_concrete_powder": "Black Concrete Powder", "red_concrete_powder": "Red Concrete Powder", "green_concrete_powder": "Green Concrete Powder", "brown_concrete_powder": "Brown Concrete Powder", "blue_concrete_powder": "Blue Concrete Powder", "purple_concrete_powder": "Purple Concrete Powder", "cyan_concrete_powder": "Cyan Concrete Powder", "light_gray_concrete_powder": "Light Gray Concrete Powder", "gray_concrete_powder": "Gray Concrete Powder", "pink_concrete_powder": "Pink Concrete Powder", "lime_concrete_powder": "Lime Concrete Powder", "yellow_concrete_powder": "Yellow Concrete Powder", "light_blue_concrete_powder": "Light Blue Concrete Powder", "magenta_concrete_powder": "Magenta Concrete Powder", "orange_concrete_powder": "Orange Concrete Powder", "white_concrete_powder": "White Concrete Powder", "turtle_egg": "Turtle Egg", "piston_head": "Piston Head", "moving_piston": "Moving Piston", "red_mushroom": "Red Mushroom", "snow_block": "Snow Block", "attached_melon_stem": "Attached Melon Stem", "melon_stem": "Melon Stem", "brewing_stand": "Brewing Stand", "end_portal": "End Portal", "flower_pot": "Flower Pot", "potted_oak_sapling": "Potted Oak Sapling", "potted_spruce_sapling": "Potted Spruce Sapling", "potted_birch_sapling": "Potted Birch Sapling", "potted_jungle_sapling": "Potted Jungle Sapling", "potted_acacia_sapling": "Potted Acacia Sapling", "potted_dark_oak_sapling": "Potted Dark Oak Sapling", "potted_mangrove_propagule": "Potted Mangrove Propagule", "potted_fern": "Potted Fern", "potted_dandelion": "Potted Dandelion", "potted_poppy": "Potted Poppy", "potted_blue_orchid": "Potted Blue Orchid", "potted_allium": "Potted Allium", "potted_azure_bluet": "Potted Azure Bluet", "potted_red_tulip": "Potted Red Tulip", "potted_orange_tulip": "Potted Orange Tulip", "potted_white_tulip": "Potted White Tulip", "potted_pink_tulip": "Potted Pink Tulip", "potted_oxeye_daisy": "Potted Oxeye Daisy", "potted_cornflower": "Potted Cornflower", "potted_lily_of_the_valley": "Potted Lily of the Valley", "potted_wither_rose": "Potted Wither Rose", "potted_red_mushroom": "Potted Red Mushroom", "potted_brown_mushroom": "Potted Brown Mushroom", "potted_dead_bush": "Potted Dead Bush", "potted_cactus": "Potted Cactus", "potted_bamboo": "Potted Bamboo", "potted_crimson_fungus": "Potted Crimson Fungus", "potted_warped_fungus": "Potted Warped Fungus", "potted_crimson_roots": "Potted Crimson Roots", "potted_warped_roots": "Potted Warped Roots", "potted_azalea_bush": "Potted Azalea", "potted_flowering_azalea_bush": "Potted Flowering Azalea", "skeleton_wall_skull": "Skeleton Wall Skull", "skeleton_skull": "Skeleton Skull", "wither_skeleton_wall_skull": "Wither Skeleton Wall Skull", "wither_skeleton_skull": "Wither Skeleton Skull", "zombie_wall_head": "Zombie Wall Head", "zombie_head": "Zombie Head", "player_wall_head": "Player Wall Head", "player_head": "Player Head", "creeper_wall_head": "Creeper Wall Head", "creeper_head": "Creeper Head", "dragon_wall_head": "Dragon Wall Head", "dragon_head": "Dragon Head", "piglin_wall_head": "Piglin Wall Head", "piglin_head": "Piglin Head", "end_gateway": "End Gateway", "structure_void": "Structure Void", "structure_block": "Structure Block", "void_air": "Void Air", "cave_air": "Cave Air", "bubble_column": "Bubble Column", "dead_tube_coral_block": "Dead Tube Coral Block", "dead_brain_coral_block": "Dead Brain Coral Block", "dead_bubble_coral_block": "Dead Bubble Coral Block", "dead_fire_coral_block": "Dead Fire Coral Block", "dead_horn_coral_block": "Dead Horn Coral Block", "tube_coral_block": "Tube Coral Block", "brain_coral_block": "Brain Coral Block", "bubble_coral_block": "Bubble Coral Block", "fire_coral_block": "Fire Coral Block", "horn_coral_block": "Horn Coral Block", "tube_coral": "Tube Coral", "brain_coral": "Brain Coral", "bubble_coral": "Bubble Coral", "fire_coral": "Fire Coral", "horn_coral": "Horn Coral", "dead_tube_coral": "Dead Tube Coral", "dead_brain_coral": "Dead Brain Coral", "dead_bubble_coral": "Dead Bubble Coral", "dead_fire_coral": "Dead Fire Coral", "dead_horn_coral": "Dead Horn Coral", "tube_coral_fan": "Tube Coral Fan", "brain_coral_fan": "Brain Coral Fan", "bubble_coral_fan": "Bubble Coral Fan", "fire_coral_fan": "Fire Coral Fan", "horn_coral_fan": "Horn Coral Fan", "dead_tube_coral_fan": "Dead Tube Coral Fan", "dead_brain_coral_fan": "Dead Brain Coral Fan", "dead_bubble_coral_fan": "Dead Bubble Coral Fan", "dead_fire_coral_fan": "Dead Fire Coral Fan", "dead_horn_coral_fan": "Dead Horn Coral Fan", "tube_coral_wall_fan": "Tube Coral Wall Fan", "brain_coral_wall_fan": "Brain Coral Wall Fan", "bubble_coral_wall_fan": "Bubble Coral Wall Fan", "fire_coral_wall_fan": "Fire Coral Wall Fan", "horn_coral_wall_fan": "Horn Coral Wall Fan", "dead_tube_coral_wall_fan": "Dead Tube Coral Wall Fan", "dead_brain_coral_wall_fan": "Dead Brain Coral Wall Fan", "dead_bubble_coral_wall_fan": "Dead Bubble Coral Wall Fan", "dead_fire_coral_wall_fan": "Dead Fire Coral Wall Fan", "dead_horn_coral_wall_fan": "Dead Horn Coral Wall Fan", "loom": "Loom", "conduit": "Conduit", "bamboo": "Bamboo", "bamboo_sapling": "Bamboo Shoot", "jigsaw": "Jigsaw Block", "composter": "Composter", "target": "Target", "polished_granite_stairs": "Polished Granite Stairs", "smooth_red_sandstone_stairs": "Smooth Red Sandstone Stairs", "mossy_stone_brick_stairs": "Mossy Stone Brick Stairs", "polished_diorite_stairs": "Polished Diorite Stairs", "mossy_cobblestone_stairs": "Mossy Cobblestone Stairs", "end_stone_brick_stairs": "End Stone Brick Stairs", "stone_stairs": "Stone Stairs", "smooth_sandstone_stairs": "Smooth Sandstone Stairs", "smooth_quartz_stairs": "Smooth Quartz Stairs", "granite_stairs": "Granite Stairs", "andesite_stairs": "Andesite Stairs", "red_nether_brick_stairs": "Red Nether Brick Stairs", "polished_andesite_stairs": "Polished Andesite Stairs", "diorite_stairs": "Diorite Stairs", "polished_granite_slab": "Polished Granite Slab", "smooth_red_sandstone_slab": "Smooth Red Sandstone Slab", "mossy_stone_brick_slab": "Mossy Stone Brick Slab", "polished_diorite_slab": "Polished Diorite Slab", "mossy_cobblestone_slab": "Mossy Cobblestone Slab", "end_stone_brick_slab": "End Stone Brick Slab", "smooth_sandstone_slab": "Smooth Sandstone Slab", "smooth_quartz_slab": "Smooth Quartz Slab", "granite_slab": "Granite Slab", "andesite_slab": "Andesite Slab", "red_nether_brick_slab": "Red Nether Brick Slab", "polished_andesite_slab": "Polished Andesite Slab", "diorite_slab": "Diorite Slab", "brick_wall": "Brick Wall", "prismarine_wall": "Prismarine Wall", "red_sandstone_wall": "Red Sandstone Wall", "mossy_stone_brick_wall": "Mossy Stone Brick Wall", "granite_wall": "Granite Wall", "stone_brick_wall": "Stone Brick Wall", "mud_brick_wall": "Mud Brick Wall", "nether_brick_wall": "Nether Brick Wall", "andesite_wall": "Andesite Wall", "red_nether_brick_wall": "Red Nether Brick Wall", "sandstone_wall": "Sandstone Wall", "end_stone_brick_wall": "End Stone Brick Wall", "diorite_wall": "Diorite Wall", "barrel": "Barrel", "smoker": "Smoker", "blast_furnace": "Blast Furnace", "cartography_table": "Cartography Table", "fletching_table": "Fletching Table", "smithing_table": "Smithing Table", "grindstone": "Grindstone", "lectern": "Lectern", "stonecutter": "Stonecutter", "bell": "Bell", "ominous_banner": "Ominous Banner", "lantern": "Lantern", "soul_lantern": "Soul Lantern", "sweet_berry_bush": "Sweet Berry Bush", "campfire": "Campfire", "soul_campfire": "Soul Campfire", "beehive": "Beehive", "bee_nest": "Bee Nest", "honey_block": "Honey Block", "honeycomb_block": "Honeycomb Block", "lodestone": "Lodestone", "netherite_block": "Block of Netherite", "ancient_debris": "Ancient Debris", "crying_obsidian": "Crying Obsidian", "blackstone": "Blackstone", "blackstone_slab": "Blackstone Slab", "blackstone_stairs": "Blackstone Stairs", "blackstone_wall": "Blackstone Wall", "polished_blackstone_bricks": "Polished Blackstone Bricks", "polished_blackstone_brick_slab": "Polished Blackstone Brick Slab", "polished_blackstone_brick_stairs": "Polished Blackstone Brick Stairs", "polished_blackstone_brick_wall": "Polished Blackstone Brick Wall", "chiseled_polished_blackstone": "Chiseled Polished Blackstone", "cracked_polished_blackstone_bricks": "Cracked Polished Blackstone Bricks", "gilded_blackstone": "Gilded Blackstone", "polished_blackstone": "Polished Blackstone", "polished_blackstone_wall": "Polished Blackstone Wall", "polished_blackstone_slab": "Polished Blackstone Slab", "polished_blackstone_stairs": "Polished Blackstone Stairs", "polished_blackstone_pressure_plate": "Polished Blackstone Pressure Plate", "polished_blackstone_button": "Polished Blackstone Button", "cracked_nether_bricks": "Cracked Nether Bricks", "chiseled_nether_bricks": "Chiseled Nether Bricks", "quartz_bricks": "Quartz Bricks", "chain": "Chain", "candle": "Candle", "white_candle": "White Candle", "orange_candle": "Orange Candle", "magenta_candle": "Magenta Candle", "light_blue_candle": "Light Blue Candle", "yellow_candle": "Yellow Candle", "lime_candle": "Lime Candle", "pink_candle": "Pink Candle", "gray_candle": "Gray Candle", "light_gray_candle": "Light Gray Candle", "cyan_candle": "Cyan Candle", "purple_candle": "Purple Candle", "blue_candle": "Blue Candle", "brown_candle": "Brown Candle", "green_candle": "Green Candle", "red_candle": "Red Candle", "black_candle": "Black Candle", "candle_cake": "Cake with Candle", "white_candle_cake": "Cake with White Candle", "orange_candle_cake": "Cake with Orange Candle", "magenta_candle_cake": "Cake with Magenta Candle", "light_blue_candle_cake": "Cake with Light Blue Candle", "yellow_candle_cake": "Cake with Yellow Candle", "lime_candle_cake": "Cake with Lime Candle", "pink_candle_cake": "Cake with Pink Candle", "gray_candle_cake": "Cake with Gray Candle", "light_gray_candle_cake": "Cake with Light Gray Candle", "cyan_candle_cake": "Cake with Cyan Candle", "purple_candle_cake": "Cake with Purple Candle", "blue_candle_cake": "Cake with Blue Candle", "brown_candle_cake": "Cake with Brown Candle", "green_candle_cake": "Cake with Green Candle", "red_candle_cake": "Cake with Red Candle", "black_candle_cake": "Cake with Black Candle", "amethyst_block": "Block of Amethyst", "small_amethyst_bud": "Small Amethyst Bud", "medium_amethyst_bud": "Medium Amethyst Bud", "large_amethyst_bud": "Large Amethyst Bud", "amethyst_cluster": "Amethyst Cluster", "budding_amethyst": "Budding Amethyst", "calcite": "Calcite", "tuff": "Tuff", "tinted_glass": "Tinted Glass", "dripstone_block": "Dripstone Block", "pointed_dripstone": "Pointed Dripstone", "copper_ore": "Copper Ore", "deepslate_copper_ore": "Deepslate Copper Ore", "copper_block": "Block of Copper", "exposed_copper": "Exposed Copper", "weathered_copper": "Weathered Copper", "oxidized_copper": "Oxidized Copper", "cut_copper": "Cut Copper", "exposed_cut_copper": "Exposed Cut Copper", "weathered_cut_copper": "Weathered Cut Copper", "oxidized_cut_copper": "Oxidized Cut Copper", "cut_copper_stairs": "Cut Copper Stairs", "exposed_cut_copper_stairs": "Exposed Cut Copper Stairs", "weathered_cut_copper_stairs": "Weathered Cut Copper Stairs", "oxidized_cut_copper_stairs": "Oxidized Cut Copper Stairs", "cut_copper_slab": "Cut Copper Slab", "exposed_cut_copper_slab": "Exposed Cut Copper Slab", "weathered_cut_copper_slab": "Weathered Cut Copper Slab", "oxidized_cut_copper_slab": "Oxidized Cut Copper Slab", "waxed_copper_block": "Waxed Block of Copper", "waxed_exposed_copper": "Waxed Exposed Copper", "waxed_weathered_copper": "Waxed Weathered Copper", "waxed_oxidized_copper": "Waxed Oxidized Copper", "waxed_cut_copper": "Waxed Cut Copper", "waxed_exposed_cut_copper": "Waxed Exposed Cut Copper", "waxed_weathered_cut_copper": "Waxed Weathered Cut Copper", "waxed_oxidized_cut_copper": "Waxed Oxidized Cut Copper", "waxed_cut_copper_stairs": "Waxed Cut Copper Stairs", "waxed_exposed_cut_copper_stairs": "Waxed Exposed Cut Copper Stairs", "waxed_weathered_cut_copper_stairs": "Waxed Weathered Cut Copper Stairs", "waxed_oxidized_cut_copper_stairs": "Waxed Oxidized Cut Copper Stairs", "waxed_cut_copper_slab": "Waxed Cut Copper Slab", "waxed_exposed_cut_copper_slab": "Waxed Exposed Cut Copper Slab", "waxed_weathered_cut_copper_slab": "Waxed Weathered Cut Copper Slab", "waxed_oxidized_cut_copper_slab": "Waxed Oxidized Cut Copper Slab", "lightning_rod": "Lightning Rod", "cave_vines": "Cave Vines", "cave_vines_plant": "Cave Vines Plant", "spore_blossom": "Spore Blossom", "azalea": "Azalea", "flowering_azalea": "Flowering Azalea", "azalea_leaves": "Azalea Leaves", "flowering_azalea_leaves": "Flowering Azalea Leaves", "moss_carpet": "Moss Carpet", "moss_block": "Moss Block", "big_dripleaf": "Big Dripleaf", "big_dripleaf_stem": "Big Dripleaf Stem", "small_dripleaf": "Small Dripleaf", "rooted_dirt": "Rooted Dirt", "mud": "Mud", "hanging_roots": "Hanging Roots", "powder_snow": "Powder Snow", "glow_lichen": "Glow Lichen", "sculk_sensor": "Sculk Sensor", "deepslate": "Deepslate", "cobbled_deepslate": "Cobbled Deepslate", "cobbled_deepslate_slab": "Cobbled Deepslate Slab", "cobbled_deepslate_stairs": "Cobbled Deepslate Stairs", "cobbled_deepslate_wall": "Cobbled Deepslate Wall", "chiseled_deepslate": "Chiseled Deepslate", "polished_deepslate": "Polished Deepslate", "polished_deepslate_slab": "Polished Deepslate Slab", "polished_deepslate_stairs": "Polished Deepslate Stairs", "polished_deepslate_wall": "Polished Deepslate Wall", "deepslate_bricks": "Deepslate Bricks", "deepslate_brick_slab": "Deepslate Brick Slab", "deepslate_brick_stairs": "Deepslate Brick Stairs", "deepslate_brick_wall": "Deepslate Brick Wall", "deepslate_tiles": "Deepslate Tiles", "deepslate_tile_slab": "Deepslate Tile Slab", "deepslate_tile_stairs": "Deepslate Tile Stairs", "deepslate_tile_wall": "Deepslate Tile Wall", "cracked_deepslate_bricks": "Cracked Deepslate Bricks", "cracked_deepslate_tiles": "Cracked Deepslate Tiles", "infested_deepslate": "Infested Deepslate", "smooth_basalt": "Smooth Basalt", "raw_iron_block": "Block of Raw Iron", "raw_copper_block": "Block of Raw Copper", "raw_gold_block": "Block of Raw Gold", "sculk": "Sculk", "sculk_catalyst": "Sculk Catalyst", "sculk_shrieker": "Sculk Shrieker", "sculk_vein": "Sculk Vein", "ochre_froglight": "Ochre Froglight", "verdant_froglight": "Verdant Froglight", "pearlescent_froglight": "Pearlescent Froglight", "frogspawn": "Frogspawn", "reinforced_deepslate": "Reinforced Deepslate", "name_tag": "Name Tag", "lead": "Lead", "iron_shovel": "Iron Shovel", "iron_pickaxe": "Iron Pickaxe", "iron_axe": "Iron Axe", "flint_and_steel": "Flint and Steel", "apple": "Apple", "cookie": "Cookie", "bow": "Bow", "bundle": "Bundle", "arrow": "Arrow", "spectral_arrow": "Spectral Arrow", "tipped_arrow": "Tipped Arrow", "dried_kelp": "Dried Kelp", "coal": "Coal", "charcoal": "Charcoal", "raw_copper": "Raw Copper", "raw_iron": "Raw Iron", "raw_gold": "Raw Gold", "diamond": "Diamond", "emerald": "Emerald", "iron_ingot": "Iron Ingot", "copper_ingot": "Copper Ingot", "gold_ingot": "Gold Ingot", "iron_sword": "Iron Sword", "wooden_sword": "Wooden Sword", "wooden_shovel": "Wooden Shovel", "wooden_pickaxe": "Wooden Pickaxe", "wooden_axe": "Wooden Axe", "stone_sword": "Stone Sword", "stone_shovel": "Stone Shovel", "stone_pickaxe": "Stone Pickaxe", "stone_axe": "Stone Axe", "diamond_sword": "Diamond Sword", "diamond_shovel": "Diamond Shovel", "diamond_pickaxe": "Diamond Pickaxe", "diamond_axe": "Diamond Axe", "stick": "Stick", "bowl": "Bowl", "mushroom_stew": "Mushroom Stew", "golden_sword": "Golden Sword", "golden_shovel": "Golden Shovel", "golden_pickaxe": "Golden Pickaxe", "golden_axe": "Golden Axe", "string": "String", "feather": "Feather", "gunpowder": "Gunpowder", "wooden_hoe": "Wooden Hoe", "stone_hoe": "Stone Hoe", "iron_hoe": "Iron Hoe", "diamond_hoe": "Diamond Hoe", "golden_hoe": "Golden Hoe", "wheat_seeds": "Wheat Seeds", "pumpkin_seeds": "Pumpkin Seeds", "melon_seeds": "Melon Seeds", "melon_slice": "Melon Slice", "bread": "Bread", "leather_helmet": "Leather Cap", "leather_chestplate": "Leather Tunic", "leather_leggings": "Leather Pants", "leather_boots": "Leather Boots", "chainmail_helmet": "Chainmail Helmet", "chainmail_chestplate": "Chainmail Chestplate", "chainmail_leggings": "Chainmail Leggings", "chainmail_boots": "Chainmail Boots", "iron_helmet": "Iron Helmet", "iron_chestplate": "Iron Chestplate", "iron_leggings": "Iron Leggings", "iron_boots": "Iron Boots", "diamond_helmet": "Diamond Helmet", "diamond_chestplate": "Diamond Chestplate", "diamond_leggings": "Diamond Leggings", "diamond_boots": "Diamond Boots", "golden_helmet": "Golden Helmet", "golden_chestplate": "Golden Chestplate", "golden_leggings": "Golden Leggings", "golden_boots": "Golden Boots", "flint": "Flint", "porkchop": "Raw Porkchop", "cooked_porkchop": "Cooked Porkchop", "chicken": "Raw Chicken", "cooked_chicken": "Cooked Chicken", "mutton": "Raw Mutton", "cooked_mutton": "Cooked Mutton", "rabbit": "Raw Rabbit", "cooked_rabbit": "Cooked Rabbit", "rabbit_stew": "Rabbit Stew", "rabbit_foot": "Rabbit's Foot", "rabbit_hide": "Rabbit Hide", "beef": "Raw Beef", "cooked_beef": "Steak", "painting": "Painting", "item_frame": "Item Frame", "golden_apple": "Golden Apple", "enchanted_golden_apple": "Enchanted Golden Apple", "sign": "Sign", "bucket": "Bucket", "water_bucket": "Water Bucket", "lava_bucket": "Lava Bucket", "pufferfish_bucket": "Bucket of Pufferfish", "salmon_bucket": "Bucket of Salmon", "cod_bucket": "Bucket of Cod", "tropical_fish_bucket": "Bucket of Tropical Fish", "powder_snow_bucket": "Powder Snow Bucket", "axolotl_bucket": "Bucket of Axolotl", "tadpole_bucket": "Bucket of Tadpole", "minecart": "Minecart", "saddle": "Saddle", "redstone": "Redstone Dust", "snowball": "Snowball", "oak_boat": "Oak Boat", "oak_chest_boat": "Oak Boat with Chest", "spruce_boat": "Spruce Boat", "spruce_chest_boat": "Spruce Boat with Chest", "birch_boat": "Birch Boat", "birch_chest_boat": "Birch Boat with Chest", "jungle_boat": "Jungle Boat", "jungle_chest_boat": "Jungle Boat with Chest", "acacia_boat": "Acacia Boat", "acacia_chest_boat": "Acacia Boat with Chest", "dark_oak_boat": "Dark Oak Boat", "dark_oak_chest_boat": "Dark Oak Boat with Chest", "mangrove_boat": "Mangrove Boat", "mangrove_chest_boat": "Mangrove Boat with Chest", "bamboo_raft": "Bamboo Raft", "bamboo_chest_raft": "Bamboo Raft with Chest", "leather": "Leather", "milk_bucket": "Milk Bucket", "brick": "Brick", "clay_ball": "Clay Ball", "paper": "Paper", "book": "Book", "slime_ball": "Slimeball", "chest_minecart": "Minecart with Chest", "furnace_minecart": "Minecart with Furnace", "tnt_minecart": "Minecart with TNT", "hopper_minecart": "Minecart with Hopper", "command_block_minecart": "Minecart with Command Block", "egg": "Egg", "compass": "Compass", "recovery_compass": "Recovery Compass", "fishing_rod": "Fishing Rod", "clock": "Clock", "glowstone_dust": "Glowstone Dust", "cod": "Raw Cod", "salmon": "Raw Salmon", "pufferfish": "Pufferfish", "tropical_fish": "Tropical Fish", "cooked_cod": "Cooked Cod", "cooked_salmon": "Cooked Salmon", "music_disc_13": "Music Disc", "music_disc_cat": "Music Disc", "music_disc_blocks": "Music Disc", "music_disc_chirp": "Music Disc", "music_disc_far": "Music Disc", "music_disc_mall": "Music Disc", "music_disc_mellohi": "Music Disc", "music_disc_stal": "Music Disc", "music_disc_strad": "Music Disc", "music_disc_ward": "Music Disc", "music_disc_11": "Music Disc", "music_disc_wait": "Music Disc", "music_disc_pigstep": "Music Disc", "music_disc_otherside": "Music Disc", "music_disc_5": "Music Disc", "bone": "Bone", "ink_sac": "Ink Sac", "red_dye": "Red Dye", "green_dye": "Green Dye", "cocoa_beans": "Cocoa Beans", "lapis_lazuli": "Lapis Lazuli", "purple_dye": "Purple Dye", "cyan_dye": "Cyan Dye", "light_gray_dye": "Light Gray Dye", "gray_dye": "Gray Dye", "pink_dye": "Pink Dye", "lime_dye": "Lime Dye", "yellow_dye": "Yellow Dye", "light_blue_dye": "Light Blue Dye", "magenta_dye": "Magenta Dye", "orange_dye": "Orange Dye", "bone_meal": "Bone Meal", "blue_dye": "Blue Dye", "black_dye": "Black Dye", "brown_dye": "Brown Dye", "white_dye": "White Dye", "sugar": "Sugar", "amethyst_shard": "Amethyst Shard", "spyglass": "Spyglass", "glow_berries": "Glow Berries", "disc_fragment_5": "Disc Fragment", "black_bed": "Black Bed", "red_bed": "Red Bed", "green_bed": "Green Bed", "brown_bed": "Brown Bed", "blue_bed": "Blue Bed", "purple_bed": "Purple Bed", "cyan_bed": "Cyan Bed", "light_gray_bed": "Light Gray Bed", "gray_bed": "Gray Bed", "pink_bed": "Pink Bed", "lime_bed": "Lime Bed", "yellow_bed": "Yellow Bed", "light_blue_bed": "Light Blue Bed", "magenta_bed": "Magenta Bed", "orange_bed": "Orange Bed", "white_bed": "White Bed", "repeater": "Redstone Repeater", "comparator": "Redstone Comparator", "filled_map": "Map", "shears": "Shears", "rotten_flesh": "Rotten Flesh", "ender_pearl": "Ender Pearl", "blaze_rod": "Blaze Rod", "ghast_tear": "Ghast Tear", "potion": "Potion", "splash_potion": "Splash Potion", "lingering_potion": "Lingering Potion", "end_crystal": "End Crystal", "gold_nugget": "Gold Nugget", "glass_bottle": "Glass Bottle", "spider_eye": "Spider Eye", "fermented_spider_eye": "Fermented Spider Eye", "blaze_powder": "Blaze Powder", "magma_cream": "Magma Cream", "ender_eye": "Eye of Ender", "glistering_melon_slice": "Glistering Melon Slice", "allay_spawn_egg": "Allay Spawn Egg", "axolotl_spawn_egg": "Axolotl Spawn Egg", "bat_spawn_egg": "Bat Spawn Egg", "bee_spawn_egg": "Bee Spawn Egg", "blaze_spawn_egg": "Blaze Spawn Egg", "cat_spawn_egg": "Cat Spawn Egg", "camel_spawn_egg": "Camel Spawn Egg", "cave_spider_spawn_egg": "Cave Spider Spawn Egg", "chicken_spawn_egg": "Chicken Spawn Egg", "cod_spawn_egg": "Cod Spawn Egg", "cow_spawn_egg": "Cow Spawn Egg", "creeper_spawn_egg": "Creeper Spawn Egg", "dolphin_spawn_egg": "Dolphin Spawn Egg", "donkey_spawn_egg": "Donkey Spawn Egg", "drowned_spawn_egg": "Drowned Spawn Egg", "elder_guardian_spawn_egg": "Elder Guardian Spawn Egg", "ender_dragon_spawn_egg": "Ender Dragon Spawn Egg", "enderman_spawn_egg": "Enderman Spawn Egg", "endermite_spawn_egg": "Endermite Spawn Egg", "evoker_spawn_egg": "Evoker Spawn Egg", "ghast_spawn_egg": "Ghast Spawn Egg", "glow_squid_spawn_egg": "Glow Squid Spawn Egg", "guardian_spawn_egg": "Guardian Spawn Egg", "hoglin_spawn_egg": "Hoglin Spawn Egg", "horse_spawn_egg": "Horse Spawn Egg", "husk_spawn_egg": "Husk Spawn Egg", "iron_golem_spawn_egg": "Iron Golem Spawn Egg", "ravager_spawn_egg": "Ravager Spawn Egg", "llama_spawn_egg": "Llama Spawn Egg", "magma_cube_spawn_egg": "Magma Cube Spawn Egg", "mooshroom_spawn_egg": "Mooshroom Spawn Egg", "mule_spawn_egg": "Mule Spawn Egg", "ocelot_spawn_egg": "Ocelot Spawn Egg", "panda_spawn_egg": "Panda Spawn Egg", "parrot_spawn_egg": "Parrot Spawn Egg", "pig_spawn_egg": "Pig Spawn Egg", "piglin_spawn_egg": "Piglin Spawn Egg", "piglin_brute_spawn_egg": "Piglin Brute Spawn Egg", "pillager_spawn_egg": "Pillager Spawn Egg", "phantom_spawn_egg": "Phantom Spawn Egg", "polar_bear_spawn_egg": "Polar Bear Spawn Egg", "pufferfish_spawn_egg": "Pufferfish Spawn Egg", "rabbit_spawn_egg": "Rabbit Spawn Egg", "fox_spawn_egg": "Fox Spawn Egg", "frog_spawn_egg": "Frog Spawn Egg", "salmon_spawn_egg": "Salmon Spawn Egg", "sheep_spawn_egg": "Sheep Spawn Egg", "shulker_spawn_egg": "Shulker Spawn Egg", "silverfish_spawn_egg": "Silverfish Spawn Egg", "skeleton_spawn_egg": "Skeleton Spawn Egg", "skeleton_horse_spawn_egg": "Skeleton Horse Spawn Egg", "slime_spawn_egg": "Slime Spawn Egg", "snow_golem_spawn_egg": "Snow Golem Spawn Egg", "spider_spawn_egg": "Spider Spawn Egg", "squid_spawn_egg": "Squid Spawn Egg", "stray_spawn_egg": "Stray Spawn Egg", "strider_spawn_egg": "Strider Spawn Egg", "tadpole_spawn_egg": "Tadpole Spawn Egg", "trader_llama_spawn_egg": "Trader Llama Spawn Egg", "tropical_fish_spawn_egg": "Tropical Fish Spawn Egg", "turtle_spawn_egg": "Turtle Spawn Egg", "vex_spawn_egg": "Vex Spawn Egg", "villager_spawn_egg": "Villager Spawn Egg", "wandering_trader_spawn_egg": "Wandering Trader Spawn Egg", "vindicator_spawn_egg": "Vindicator Spawn Egg", "warden_spawn_egg": "Warden Spawn Egg", "witch_spawn_egg": "Witch Spawn Egg", "wither_spawn_egg": "Wither Spawn Egg", "wither_skeleton_spawn_egg": "Wither Skeleton Spawn Egg", "wolf_spawn_egg": "Wolf Spawn Egg", "zoglin_spawn_egg": "Zoglin Spawn Egg", "zombie_spawn_egg": "Zombie Spawn Egg", "zombie_horse_spawn_egg": "Zombie Horse Spawn Egg", "zombified_piglin_spawn_egg": "Zombified Piglin Spawn Egg", "zombie_villager_spawn_egg": "Zombie Villager Spawn Egg", "goat_spawn_egg": "Goat Spawn Egg", "experience_bottle": "Bottle o' Enchanting", "fire_charge": "Fire Charge", "writable_book": "Book and Quill", "written_book": "Written Book", "map": "Empty Map", "carrot": "Carrot", "golden_carrot": "Golden Carrot", "potato": "Potato", "baked_potato": "Baked Potato", "poisonous_potato": "Poisonous Potato", "carrot_on_a_stick": "Carrot on a Stick", "nether_star": "Nether Star", "pumpkin_pie": "Pumpkin Pie", "enchanted_book": "Enchanted Book", "firework_rocket": "Firework Rocket", "firework_star": "Firework Star", "nether_brick": "Nether Brick", "quartz": "Nether Quartz", "armor_stand": "Armor Stand", "iron_horse_armor": "Iron Horse Armor", "golden_horse_armor": "Golden Horse Armor", "diamond_horse_armor": "Diamond Horse Armor", "leather_horse_armor": "Leather Horse Armor", "prismarine_shard": "Prismarine Shard", "prismarine_crystals": "Prismarine Crystals", "chorus_fruit": "Chorus Fruit", "popped_chorus_fruit": "Popped Chorus Fruit", "beetroot": "Beetroot", "beetroot_seeds": "Beetroot Seeds", "beetroot_soup": "Beetroot Soup", "dragon_breath": "Dragon's Breath", "elytra": "Elytra", "totem_of_undying": "Totem of Undying", "shulker_shell": "Shulker Shell", "iron_nugget": "Iron Nugget", "knowledge_book": "Knowledge Book", "debug_stick": "Debug Stick", "trident": "Trident", "scute": "Scute", "turtle_helmet": "Turtle Shell", "phantom_membrane": "Phantom Membrane", "nautilus_shell": "Nautilus Shell", "heart_of_the_sea": "Heart of the Sea", "crossbow": "Crossbow", "suspicious_stew": "Suspicious Stew", "creeper_banner_pattern": "Banner Pattern", "skull_banner_pattern": "Banner Pattern", "flower_banner_pattern": "Banner Pattern", "mojang_banner_pattern": "Banner Pattern", "globe_banner_pattern": "Banner Pattern", "piglin_banner_pattern": "Banner Pattern", "sweet_berries": "Sweet Berries", "honey_bottle": "Honey Bottle", "honeycomb": "Honeycomb", "lodestone_compass": "Lodestone Compass", "netherite_scrap": "Netherite Scrap", "netherite_ingot": "Netherite Ingot", "netherite_helmet": "Netherite Helmet", "netherite_chestplate": "Netherite Chestplate", "netherite_leggings": "Netherite Leggings", "netherite_boots": "Netherite Boots", "netherite_axe": "Netherite Axe", "netherite_pickaxe": "Netherite Pickaxe", "netherite_hoe": "Netherite Hoe", "netherite_shovel": "Netherite Shovel", "netherite_sword": "Netherite Sword", "warped_fungus_on_a_stick": "Warped Fungus on a Stick", "glow_ink_sac": "Glow Ink Sac", "glow_item_frame": "Glow Item Frame", "echo_shard": "Echo Shard", "goat_horn": "Goat Horn", "black_banner": "Black Banner", "red_banner": "Red Banner", "green_banner": "Green Banner", "brown_banner": "Brown Banner", "blue_banner": "Blue Banner", "purple_banner": "Purple Banner", "cyan_banner": "Cyan Banner", "light_gray_banner": "Light Gray Banner", "gray_banner": "Gray Banner", "pink_banner": "Pink Banner", "lime_banner": "Lime Banner", "yellow_banner": "Yellow Banner", "light_blue_banner": "Light Blue Banner", "magenta_banner": "Magenta Banner", "orange_banner": "Orange Banner", "white_banner": "White Banner", "shield": "Shield"} \ No newline at end of file -- 2.49.1 From 0db0e582256f9efe41652172159e4c64d817047a Mon Sep 17 00:00:00 2001 From: rspx Date: Sun, 8 Jan 2023 18:42:50 +0100 Subject: [PATCH 17/26] Update minecraft.db --- recipeBook/etc/recipes/minecraft.db | 2380 +++++++++++++-------------- 1 file changed, 1190 insertions(+), 1190 deletions(-) diff --git a/recipeBook/etc/recipes/minecraft.db b/recipeBook/etc/recipes/minecraft.db index 0b3fdeb..f74da3b 100644 --- a/recipeBook/etc/recipes/minecraft.db +++ b/recipeBook/etc/recipes/minecraft.db @@ -11,11 +11,11 @@ [ "minecraft:cobblestone_stairs" ] = { ingredients = { [ 1 ] = "minecraft:cobblestone", - [ 8 ] = "minecraft:cobblestone", - [ 5 ] = "minecraft:cobblestone", - [ 4 ] = "minecraft:cobblestone", - [ 7 ] = "minecraft:cobblestone", [ 9 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:cobblestone", + [ 11 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:cobblestone", }, count = 4, }, @@ -40,7 +40,7 @@ [ 3 ] = "minecraft:crimson_planks", [ 2 ] = "minecraft:crimson_planks", [ 5 ] = "minecraft:crimson_planks", - [ 4 ] = "minecraft:crimson_planks", + [ 7 ] = "minecraft:crimson_planks", [ 6 ] = "minecraft:crimson_planks", }, count = 2, @@ -48,8 +48,8 @@ [ "minecraft:diorite" ] = { ingredients = { [ 1 ] = "minecraft:cobblestone", - [ 4 ] = "minecraft:cobblestone", - [ 3 ] = "minecraft:quartz", + [ 6 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:quartz", [ 2 ] = "minecraft:quartz", }, count = 2, @@ -64,8 +64,8 @@ [ "minecraft:coarse_dirt" ] = { ingredients = { [ 1 ] = "minecraft:dirt", - [ 4 ] = "minecraft:dirt", - [ 3 ] = "minecraft:gravel", + [ 6 ] = "minecraft:dirt", + [ 5 ] = "minecraft:gravel", [ 2 ] = "minecraft:gravel", }, count = 4, @@ -73,23 +73,23 @@ [ "minecraft:oxidized_cut_copper_stairs" ] = { ingredients = { [ 1 ] = "minecraft:oxidized_cut_copper", - [ 8 ] = "minecraft:oxidized_cut_copper", - [ 5 ] = "minecraft:oxidized_cut_copper", - [ 4 ] = "minecraft:oxidized_cut_copper", - [ 7 ] = "minecraft:oxidized_cut_copper", [ 9 ] = "minecraft:oxidized_cut_copper", + [ 5 ] = "minecraft:oxidized_cut_copper", + [ 10 ] = "minecraft:oxidized_cut_copper", + [ 11 ] = "minecraft:oxidized_cut_copper", + [ 6 ] = "minecraft:oxidized_cut_copper", }, count = 4, }, [ "minecraft:anvil" ] = { ingredients = { [ 1 ] = "minecraft:iron_block", - [ 8 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_block", [ 2 ] = "minecraft:iron_block", - [ 5 ] = "minecraft:iron_ingot", - [ 7 ] = "minecraft:iron_ingot", [ 9 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", }, count = 1, }, @@ -113,12 +113,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:lime_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:lime_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -128,7 +128,7 @@ [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 2, @@ -136,11 +136,11 @@ [ "minecraft:weathered_cut_copper_stairs" ] = { ingredients = { [ 1 ] = "minecraft:weathered_cut_copper", - [ 8 ] = "minecraft:weathered_cut_copper", - [ 5 ] = "minecraft:weathered_cut_copper", - [ 4 ] = "minecraft:weathered_cut_copper", - [ 7 ] = "minecraft:weathered_cut_copper", [ 9 ] = "minecraft:weathered_cut_copper", + [ 5 ] = "minecraft:weathered_cut_copper", + [ 10 ] = "minecraft:weathered_cut_copper", + [ 11 ] = "minecraft:weathered_cut_copper", + [ 6 ] = "minecraft:weathered_cut_copper", }, count = 4, }, @@ -149,23 +149,23 @@ [ 1 ] = "minecraft:gold_nugget", [ 3 ] = "minecraft:gold_nugget", [ 2 ] = "minecraft:gold_nugget", - [ 5 ] = "minecraft:carrot", - [ 4 ] = "minecraft:gold_nugget", + [ 5 ] = "minecraft:gold_nugget", [ 7 ] = "minecraft:gold_nugget", - [ 6 ] = "minecraft:gold_nugget", + [ 6 ] = "minecraft:carrot", [ 9 ] = "minecraft:gold_nugget", - [ 8 ] = "minecraft:gold_nugget", + [ 11 ] = "minecraft:gold_nugget", + [ 10 ] = "minecraft:gold_nugget", }, count = 1, }, [ "minecraft:mossy_cobblestone_stairs" ] = { ingredients = { [ 1 ] = "minecraft:mossy_cobblestone", - [ 8 ] = "minecraft:mossy_cobblestone", - [ 5 ] = "minecraft:mossy_cobblestone", - [ 4 ] = "minecraft:mossy_cobblestone", - [ 7 ] = "minecraft:mossy_cobblestone", [ 9 ] = "minecraft:mossy_cobblestone", + [ 5 ] = "minecraft:mossy_cobblestone", + [ 10 ] = "minecraft:mossy_cobblestone", + [ 11 ] = "minecraft:mossy_cobblestone", + [ 6 ] = "minecraft:mossy_cobblestone", }, count = 4, }, @@ -188,12 +188,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:magenta_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:magenta_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -202,12 +202,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:nether_star", - [ 4 ] = "minecraft:glass", - [ 7 ] = "minecraft:obsidian", - [ 6 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", + [ 6 ] = "minecraft:nether_star", [ 9 ] = "minecraft:obsidian", - [ 8 ] = "minecraft:obsidian", + [ 11 ] = "minecraft:obsidian", + [ 10 ] = "minecraft:obsidian", }, count = 1, }, @@ -217,7 +217,7 @@ [ 3 ] = "minecraft:end_stone_bricks", [ 2 ] = "minecraft:end_stone_bricks", [ 5 ] = "minecraft:end_stone_bricks", - [ 4 ] = "minecraft:end_stone_bricks", + [ 7 ] = "minecraft:end_stone_bricks", [ 6 ] = "minecraft:end_stone_bricks", }, count = 6, @@ -225,8 +225,8 @@ [ "minecraft:leather" ] = { ingredients = { [ 1 ] = "minecraft:rabbit_hide", - [ 4 ] = "minecraft:rabbit_hide", - [ 3 ] = "minecraft:rabbit_hide", + [ 6 ] = "minecraft:rabbit_hide", + [ 5 ] = "minecraft:rabbit_hide", [ 2 ] = "minecraft:rabbit_hide", }, count = 1, @@ -234,11 +234,11 @@ [ "minecraft:end_stone_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:end_stone_bricks", - [ 8 ] = "minecraft:end_stone_bricks", - [ 5 ] = "minecraft:end_stone_bricks", - [ 4 ] = "minecraft:end_stone_bricks", - [ 7 ] = "minecraft:end_stone_bricks", [ 9 ] = "minecraft:end_stone_bricks", + [ 5 ] = "minecraft:end_stone_bricks", + [ 10 ] = "minecraft:end_stone_bricks", + [ 11 ] = "minecraft:end_stone_bricks", + [ 6 ] = "minecraft:end_stone_bricks", }, count = 4, }, @@ -247,19 +247,19 @@ [ 1 ] = "minecraft:scute", [ 3 ] = "minecraft:scute", [ 2 ] = "minecraft:scute", - [ 4 ] = "minecraft:scute", - [ 6 ] = "minecraft:scute", + [ 5 ] = "minecraft:scute", + [ 7 ] = "minecraft:scute", }, count = 1, }, [ "minecraft:blue_banner" ] = { ingredients = { [ 1 ] = "minecraft:blue_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:blue_wool", [ 2 ] = "minecraft:blue_wool", [ 5 ] = "minecraft:blue_wool", - [ 4 ] = "minecraft:blue_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:blue_wool", [ 6 ] = "minecraft:blue_wool", }, count = 1, @@ -269,12 +269,12 @@ [ 1 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", - [ 5 ] = "minecraft:diamond", - [ 4 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", [ 7 ] = "minecraft:oak_planks", - [ 6 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:diamond", [ 9 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:oak_planks", + [ 11 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", }, count = 1, }, @@ -283,12 +283,12 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:green_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:green_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, @@ -297,21 +297,21 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:black_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:black_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, [ "minecraft:golden_axe" ] = { ingredients = { [ 1 ] = "minecraft:gold_ingot", - [ 3 ] = "minecraft:gold_ingot", [ 2 ] = "minecraft:gold_ingot", - [ 4 ] = "minecraft:stick", + [ 5 ] = "minecraft:gold_ingot", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", }, count = 1, @@ -329,19 +329,19 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:lime_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:lime_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, [ "minecraft:warped_fungus_on_a_stick" ] = { ingredients = { [ 1 ] = "minecraft:fishing_rod", - [ 4 ] = "minecraft:warped_fungus", + [ 6 ] = "minecraft:warped_fungus", }, count = 1, }, @@ -355,16 +355,16 @@ [ "minecraft:diamond_boots" ] = { ingredients = { [ 1 ] = "minecraft:diamond", - [ 4 ] = "minecraft:diamond", + [ 7 ] = "minecraft:diamond", [ 3 ] = "minecraft:diamond", - [ 6 ] = "minecraft:diamond", + [ 5 ] = "minecraft:diamond", }, count = 1, }, [ "minecraft:chiseled_nether_bricks" ] = { ingredients = { [ 1 ] = "minecraft:nether_brick_slab", - [ 2 ] = "minecraft:nether_brick_slab", + [ 5 ] = "minecraft:nether_brick_slab", }, count = 1, }, @@ -385,11 +385,11 @@ [ "minecraft:diamond_chestplate" ] = { ingredients = { [ 1 ] = "minecraft:diamond", - [ 8 ] = "minecraft:diamond", + [ 11 ] = "minecraft:diamond", [ 3 ] = "minecraft:diamond", - [ 9 ] = "minecraft:diamond", + [ 10 ] = "minecraft:diamond", [ 5 ] = "minecraft:diamond", - [ 4 ] = "minecraft:diamond", + [ 9 ] = "minecraft:diamond", [ 7 ] = "minecraft:diamond", [ 6 ] = "minecraft:diamond", }, @@ -398,11 +398,11 @@ [ "minecraft:dark_prismarine_stairs" ] = { ingredients = { [ 1 ] = "minecraft:dark_prismarine", - [ 8 ] = "minecraft:dark_prismarine", - [ 5 ] = "minecraft:dark_prismarine", - [ 4 ] = "minecraft:dark_prismarine", - [ 7 ] = "minecraft:dark_prismarine", [ 9 ] = "minecraft:dark_prismarine", + [ 5 ] = "minecraft:dark_prismarine", + [ 10 ] = "minecraft:dark_prismarine", + [ 11 ] = "minecraft:dark_prismarine", + [ 6 ] = "minecraft:dark_prismarine", }, count = 4, }, @@ -415,10 +415,10 @@ [ "minecraft:oak_door" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 3, @@ -426,12 +426,12 @@ [ "minecraft:cauldron" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 8 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", [ 9 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", [ 7 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", }, count = 1, }, @@ -444,11 +444,11 @@ }, [ "minecraft:redstone_lamp" ] = { ingredients = { - [ 8 ] = "minecraft:redstone", [ 2 ] = "minecraft:redstone", - [ 5 ] = "minecraft:glowstone", - [ 4 ] = "minecraft:redstone", - [ 6 ] = "minecraft:redstone", + [ 5 ] = "minecraft:redstone", + [ 10 ] = "minecraft:redstone", + [ 7 ] = "minecraft:redstone", + [ 6 ] = "minecraft:glowstone", }, count = 1, }, @@ -458,7 +458,7 @@ [ 3 ] = "minecraft:birch_planks", [ 2 ] = "minecraft:birch_planks", [ 5 ] = "minecraft:birch_planks", - [ 4 ] = "minecraft:birch_planks", + [ 7 ] = "minecraft:birch_planks", [ 6 ] = "minecraft:birch_planks", }, count = 2, @@ -466,8 +466,8 @@ [ "minecraft:stonecutter" ] = { ingredients = { [ 5 ] = "minecraft:stone", - [ 4 ] = "minecraft:stone", [ 6 ] = "minecraft:stone", + [ 7 ] = "minecraft:stone", [ 2 ] = "minecraft:iron_ingot", }, count = 1, @@ -478,7 +478,7 @@ [ 3 ] = "minecraft:redstone_torch", [ 2 ] = "minecraft:redstone", [ 5 ] = "minecraft:stone", - [ 4 ] = "minecraft:stone", + [ 7 ] = "minecraft:stone", [ 6 ] = "minecraft:stone", }, count = 1, @@ -489,11 +489,11 @@ [ 3 ] = "minecraft:wheat", [ 2 ] = "minecraft:wheat", [ 5 ] = "minecraft:wheat", - [ 4 ] = "minecraft:wheat", [ 7 ] = "minecraft:wheat", [ 6 ] = "minecraft:wheat", [ 9 ] = "minecraft:wheat", - [ 8 ] = "minecraft:wheat", + [ 11 ] = "minecraft:wheat", + [ 10 ] = "minecraft:wheat", }, count = 1, }, @@ -502,12 +502,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:cyan_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:cyan_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -524,16 +524,16 @@ [ 1 ] = "minecraft:diamond", [ 3 ] = "minecraft:diamond", [ 2 ] = "minecraft:diamond", - [ 4 ] = "minecraft:diamond", - [ 6 ] = "minecraft:diamond", + [ 5 ] = "minecraft:diamond", + [ 7 ] = "minecraft:diamond", }, count = 1, }, [ "minecraft:sandstone" ] = { ingredients = { [ 1 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", - [ 3 ] = "minecraft:sand", + [ 6 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", }, count = 1, @@ -541,8 +541,8 @@ [ "minecraft:purpur_block" ] = { ingredients = { [ 1 ] = "minecraft:popped_chorus_fruit", - [ 4 ] = "minecraft:popped_chorus_fruit", - [ 3 ] = "minecraft:popped_chorus_fruit", + [ 6 ] = "minecraft:popped_chorus_fruit", + [ 5 ] = "minecraft:popped_chorus_fruit", [ 2 ] = "minecraft:popped_chorus_fruit", }, count = 4, @@ -550,7 +550,7 @@ [ "minecraft:golden_hoe" ] = { ingredients = { [ 1 ] = "minecraft:gold_ingot", - [ 4 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", [ 2 ] = "minecraft:gold_ingot", }, @@ -576,22 +576,22 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, [ "minecraft:shield" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:iron_ingot", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 1, @@ -601,19 +601,19 @@ [ 1 ] = { item = "minecraft:purpur_block", }, - [ 8 ] = { + [ 9 ] = { item = "minecraft:purpur_block", }, [ 5 ] = { item = "minecraft:purpur_block", }, - [ 4 ] = { + [ 10 ] = { item = "minecraft:purpur_block", }, - [ 7 ] = { + [ 11 ] = { item = "minecraft:purpur_block", }, - [ 9 ] = { + [ 6 ] = { item = "minecraft:purpur_block", }, }, @@ -629,11 +629,11 @@ [ "minecraft:iron_chestplate" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 8 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", - [ 9 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", [ 5 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", [ 7 ] = "minecraft:iron_ingot", [ 6 ] = "minecraft:iron_ingot", }, @@ -653,7 +653,7 @@ [ 3 ] = "minecraft:andesite", [ 2 ] = "minecraft:andesite", [ 5 ] = "minecraft:andesite", - [ 4 ] = "minecraft:andesite", + [ 7 ] = "minecraft:andesite", [ 6 ] = "minecraft:andesite", }, count = 6, @@ -662,11 +662,11 @@ ingredients = { [ 1 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", [ 9 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:iron_ingot", [ 7 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:stick", }, count = 16, }, @@ -675,12 +675,12 @@ [ 1 ] = "minecraft:paper", [ 3 ] = "minecraft:paper", [ 2 ] = "minecraft:paper", - [ 5 ] = "minecraft:compass", - [ 4 ] = "minecraft:paper", + [ 5 ] = "minecraft:paper", [ 7 ] = "minecraft:paper", - [ 6 ] = "minecraft:paper", + [ 6 ] = "minecraft:compass", [ 9 ] = "minecraft:paper", - [ 8 ] = "minecraft:paper", + [ 11 ] = "minecraft:paper", + [ 10 ] = "minecraft:paper", }, count = 1, }, @@ -694,11 +694,11 @@ [ "minecraft:black_banner" ] = { ingredients = { [ 1 ] = "minecraft:black_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:black_wool", [ 2 ] = "minecraft:black_wool", [ 5 ] = "minecraft:black_wool", - [ 4 ] = "minecraft:black_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:black_wool", [ 6 ] = "minecraft:black_wool", }, count = 1, @@ -728,12 +728,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:magenta_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:magenta_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -748,12 +748,12 @@ [ "minecraft:comparator" ] = { ingredients = { [ 9 ] = "minecraft:stone", - [ 8 ] = "minecraft:stone", + [ 11 ] = "minecraft:stone", [ 2 ] = "minecraft:redstone_torch", - [ 5 ] = "minecraft:quartz", - [ 4 ] = "minecraft:redstone_torch", - [ 7 ] = "minecraft:stone", - [ 6 ] = "minecraft:redstone_torch", + [ 5 ] = "minecraft:redstone_torch", + [ 10 ] = "minecraft:stone", + [ 7 ] = "minecraft:redstone_torch", + [ 6 ] = "minecraft:quartz", }, count = 1, }, @@ -763,19 +763,19 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, [ "minecraft:crimson_hyphae" ] = { ingredients = { [ 1 ] = "minecraft:crimson_stem", - [ 4 ] = "minecraft:crimson_stem", - [ 3 ] = "minecraft:crimson_stem", + [ 6 ] = "minecraft:crimson_stem", + [ 5 ] = "minecraft:crimson_stem", [ 2 ] = "minecraft:crimson_stem", }, count = 3, @@ -792,7 +792,7 @@ [ 1 ] = "minecraft:acacia_planks", [ 3 ] = "minecraft:acacia_planks", [ 5 ] = "minecraft:acacia_planks", - [ 4 ] = "minecraft:acacia_planks", + [ 7 ] = "minecraft:acacia_planks", [ 6 ] = "minecraft:acacia_planks", }, count = 1, @@ -800,24 +800,24 @@ [ "minecraft:jungle_stairs" ] = { ingredients = { [ 1 ] = "minecraft:jungle_planks", - [ 8 ] = "minecraft:jungle_planks", - [ 5 ] = "minecraft:jungle_planks", - [ 4 ] = "minecraft:jungle_planks", - [ 7 ] = "minecraft:jungle_planks", [ 9 ] = "minecraft:jungle_planks", + [ 5 ] = "minecraft:jungle_planks", + [ 10 ] = "minecraft:jungle_planks", + [ 11 ] = "minecraft:jungle_planks", + [ 6 ] = "minecraft:jungle_planks", }, count = 4, }, [ "minecraft:chest" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:oak_planks", + [ 11 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", [ 9 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", [ 7 ] = "minecraft:oak_planks", - [ 6 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", }, count = 1, }, @@ -840,9 +840,9 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:jungle_planks", - [ 5 ] = "minecraft:jungle_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:jungle_planks", }, count = 1, }, @@ -852,7 +852,7 @@ [ 3 ] = "minecraft:mangrove_planks", [ 2 ] = "minecraft:mangrove_planks", [ 5 ] = "minecraft:mangrove_planks", - [ 4 ] = "minecraft:mangrove_planks", + [ 7 ] = "minecraft:mangrove_planks", [ 6 ] = "minecraft:mangrove_planks", }, count = 2, @@ -862,9 +862,9 @@ [ 1 ] = "minecraft:mangrove_planks", [ 3 ] = "minecraft:mangrove_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:mangrove_planks", - [ 6 ] = "minecraft:mangrove_planks", + [ 5 ] = "minecraft:mangrove_planks", + [ 7 ] = "minecraft:mangrove_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, @@ -881,7 +881,7 @@ [ 3 ] = "minecraft:nether_bricks", [ 2 ] = "minecraft:nether_bricks", [ 5 ] = "minecraft:nether_bricks", - [ 4 ] = "minecraft:nether_bricks", + [ 7 ] = "minecraft:nether_bricks", [ 6 ] = "minecraft:nether_bricks", }, count = 6, @@ -892,7 +892,7 @@ [ 3 ] = "minecraft:bricks", [ 2 ] = "minecraft:bricks", [ 5 ] = "minecraft:bricks", - [ 4 ] = "minecraft:bricks", + [ 7 ] = "minecraft:bricks", [ 6 ] = "minecraft:bricks", }, count = 6, @@ -900,13 +900,13 @@ [ "minecraft:powered_rail" ] = { ingredients = { [ 1 ] = "minecraft:gold_ingot", - [ 8 ] = "minecraft:redstone", + [ 11 ] = "minecraft:gold_ingot", [ 3 ] = "minecraft:gold_ingot", + [ 10 ] = "minecraft:redstone", + [ 5 ] = "minecraft:gold_ingot", [ 9 ] = "minecraft:gold_ingot", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:gold_ingot", [ 7 ] = "minecraft:gold_ingot", - [ 6 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:stick", }, count = 6, }, @@ -922,12 +922,12 @@ [ 1 ] = "minecraft:prismarine_shard", [ 3 ] = "minecraft:prismarine_shard", [ 2 ] = "minecraft:prismarine_shard", - [ 5 ] = "minecraft:black_dye", - [ 4 ] = "minecraft:prismarine_shard", + [ 5 ] = "minecraft:prismarine_shard", [ 7 ] = "minecraft:prismarine_shard", - [ 6 ] = "minecraft:prismarine_shard", + [ 6 ] = "minecraft:black_dye", [ 9 ] = "minecraft:prismarine_shard", - [ 8 ] = "minecraft:prismarine_shard", + [ 11 ] = "minecraft:prismarine_shard", + [ 10 ] = "minecraft:prismarine_shard", }, count = 1, }, @@ -936,18 +936,18 @@ [ 1 ] = "minecraft:diamond", [ 3 ] = "minecraft:diamond", [ 2 ] = "minecraft:diamond", - [ 9 ] = "minecraft:diamond", - [ 4 ] = "minecraft:diamond", + [ 5 ] = "minecraft:diamond", + [ 11 ] = "minecraft:diamond", [ 7 ] = "minecraft:diamond", - [ 6 ] = "minecraft:diamond", + [ 9 ] = "minecraft:diamond", }, count = 1, }, [ "minecraft:white_wool" ] = { ingredients = { [ 1 ] = "minecraft:string", - [ 4 ] = "minecraft:string", - [ 3 ] = "minecraft:string", + [ 6 ] = "minecraft:string", + [ 5 ] = "minecraft:string", [ 2 ] = "minecraft:string", }, count = 1, @@ -964,10 +964,10 @@ [ 1 ] = "minecraft:leather", [ 3 ] = "minecraft:leather", [ 2 ] = "minecraft:leather", - [ 9 ] = "minecraft:leather", - [ 4 ] = "minecraft:leather", + [ 5 ] = "minecraft:leather", + [ 11 ] = "minecraft:leather", [ 7 ] = "minecraft:leather", - [ 6 ] = "minecraft:leather", + [ 9 ] = "minecraft:leather", }, count = 1, }, @@ -977,7 +977,7 @@ [ 3 ] = "minecraft:deepslate_tiles", [ 2 ] = "minecraft:deepslate_tiles", [ 5 ] = "minecraft:deepslate_tiles", - [ 4 ] = "minecraft:deepslate_tiles", + [ 7 ] = "minecraft:deepslate_tiles", [ 6 ] = "minecraft:deepslate_tiles", }, count = 6, @@ -993,12 +993,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:orange_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:orange_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -1021,7 +1021,7 @@ [ 1 ] = "minecraft:mangrove_planks", [ 3 ] = "minecraft:mangrove_planks", [ 5 ] = "minecraft:mangrove_planks", - [ 4 ] = "minecraft:mangrove_planks", + [ 7 ] = "minecraft:mangrove_planks", [ 6 ] = "minecraft:mangrove_planks", }, count = 1, @@ -1029,10 +1029,10 @@ [ "minecraft:cartography_table" ] = { ingredients = { [ 1 ] = "minecraft:paper", - [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:paper", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 1, @@ -1068,11 +1068,11 @@ [ "minecraft:crimson_sign" ] = { ingredients = { [ 1 ] = "minecraft:crimson_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:crimson_planks", [ 2 ] = "minecraft:crimson_planks", [ 5 ] = "minecraft:crimson_planks", - [ 4 ] = "minecraft:crimson_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:crimson_planks", [ 6 ] = "minecraft:crimson_planks", }, count = 3, @@ -1090,11 +1090,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -1110,12 +1110,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:brown_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:brown_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -1144,9 +1144,9 @@ }, [ "minecraft:golden_shovel" ] = { ingredients = { + [ 5 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:gold_ingot", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:stick", }, count = 1, }, @@ -1162,7 +1162,7 @@ [ 1 ] = "minecraft:jungle_planks", [ 3 ] = "minecraft:jungle_planks", [ 5 ] = "minecraft:jungle_planks", - [ 4 ] = "minecraft:jungle_planks", + [ 7 ] = "minecraft:jungle_planks", [ 6 ] = "minecraft:jungle_planks", }, count = 1, @@ -1173,11 +1173,11 @@ [ 3 ] = "minecraft:cobblestone", [ 2 ] = "minecraft:cobblestone", [ 5 ] = "minecraft:redstone", - [ 4 ] = "minecraft:redstone", - [ 7 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:quartz", + [ 7 ] = "minecraft:quartz", + [ 6 ] = "minecraft:redstone", [ 9 ] = "minecraft:cobblestone", - [ 8 ] = "minecraft:cobblestone", + [ 11 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:cobblestone", }, count = 1, }, @@ -1200,11 +1200,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -1213,12 +1213,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:blue_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:blue_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -1248,11 +1248,11 @@ [ "minecraft:diorite_stairs" ] = { ingredients = { [ 1 ] = "minecraft:diorite", - [ 8 ] = "minecraft:diorite", - [ 5 ] = "minecraft:diorite", - [ 4 ] = "minecraft:diorite", - [ 7 ] = "minecraft:diorite", [ 9 ] = "minecraft:diorite", + [ 5 ] = "minecraft:diorite", + [ 10 ] = "minecraft:diorite", + [ 11 ] = "minecraft:diorite", + [ 6 ] = "minecraft:diorite", }, count = 4, }, @@ -1266,8 +1266,8 @@ [ "minecraft:loom" ] = { ingredients = { [ 1 ] = "minecraft:string", - [ 4 ] = "minecraft:oak_planks", - [ 3 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:string", }, count = 1, @@ -1275,11 +1275,11 @@ [ "minecraft:green_banner" ] = { ingredients = { [ 1 ] = "minecraft:green_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:green_wool", [ 2 ] = "minecraft:green_wool", [ 5 ] = "minecraft:green_wool", - [ 4 ] = "minecraft:green_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:green_wool", [ 6 ] = "minecraft:green_wool", }, count = 1, @@ -1289,16 +1289,16 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:crimson_planks", - [ 5 ] = "minecraft:crimson_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:crimson_planks", }, count = 1, }, [ "minecraft:carrot_on_a_stick" ] = { ingredients = { [ 1 ] = "minecraft:fishing_rod", - [ 4 ] = "minecraft:carrot", + [ 6 ] = "minecraft:carrot", }, count = 1, }, @@ -1314,19 +1314,19 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:yellow_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:yellow_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, [ "minecraft:iron_hoe" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", [ 2 ] = "minecraft:iron_ingot", }, @@ -1335,11 +1335,11 @@ [ "minecraft:blackstone_stairs" ] = { ingredients = { [ 1 ] = "minecraft:blackstone", - [ 8 ] = "minecraft:blackstone", - [ 5 ] = "minecraft:blackstone", - [ 4 ] = "minecraft:blackstone", - [ 7 ] = "minecraft:blackstone", [ 9 ] = "minecraft:blackstone", + [ 5 ] = "minecraft:blackstone", + [ 10 ] = "minecraft:blackstone", + [ 11 ] = "minecraft:blackstone", + [ 6 ] = "minecraft:blackstone", }, count = 4, }, @@ -1367,11 +1367,11 @@ [ "minecraft:light_blue_banner" ] = { ingredients = { [ 1 ] = "minecraft:light_blue_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:light_blue_wool", [ 2 ] = "minecraft:light_blue_wool", [ 5 ] = "minecraft:light_blue_wool", - [ 4 ] = "minecraft:light_blue_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:light_blue_wool", [ 6 ] = "minecraft:light_blue_wool", }, count = 1, @@ -1381,10 +1381,10 @@ [ 1 ] = "minecraft:gold_ingot", [ 3 ] = "minecraft:gold_ingot", [ 2 ] = "minecraft:gold_ingot", - [ 9 ] = "minecraft:gold_ingot", - [ 4 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", + [ 11 ] = "minecraft:gold_ingot", [ 7 ] = "minecraft:gold_ingot", - [ 6 ] = "minecraft:gold_ingot", + [ 9 ] = "minecraft:gold_ingot", }, count = 1, }, @@ -1407,12 +1407,12 @@ [ 1 ] = "minecraft:iron_nugget", [ 3 ] = "minecraft:iron_nugget", [ 2 ] = "minecraft:iron_nugget", - [ 5 ] = "minecraft:torch", - [ 4 ] = "minecraft:iron_nugget", + [ 5 ] = "minecraft:iron_nugget", [ 7 ] = "minecraft:iron_nugget", - [ 6 ] = "minecraft:iron_nugget", + [ 6 ] = "minecraft:torch", [ 9 ] = "minecraft:iron_nugget", - [ 8 ] = "minecraft:iron_nugget", + [ 11 ] = "minecraft:iron_nugget", + [ 10 ] = "minecraft:iron_nugget", }, count = 1, }, @@ -1433,24 +1433,24 @@ [ "minecraft:detector_rail" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 8 ] = "minecraft:redstone", + [ 11 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:redstone", + [ 5 ] = "minecraft:iron_ingot", [ 9 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:stone_pressure_plate", - [ 4 ] = "minecraft:iron_ingot", [ 7 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:stone_pressure_plate", }, count = 6, }, [ "minecraft:leather_chestplate" ] = { ingredients = { [ 1 ] = "minecraft:leather", - [ 8 ] = "minecraft:leather", + [ 11 ] = "minecraft:leather", [ 3 ] = "minecraft:leather", - [ 9 ] = "minecraft:leather", + [ 10 ] = "minecraft:leather", [ 5 ] = "minecraft:leather", - [ 4 ] = "minecraft:leather", + [ 9 ] = "minecraft:leather", [ 7 ] = "minecraft:leather", [ 6 ] = "minecraft:leather", }, @@ -1459,8 +1459,8 @@ [ "minecraft:mangrove_wood" ] = { ingredients = { [ 1 ] = "minecraft:mangrove_log", - [ 4 ] = "minecraft:mangrove_log", - [ 3 ] = "minecraft:mangrove_log", + [ 6 ] = "minecraft:mangrove_log", + [ 5 ] = "minecraft:mangrove_log", [ 2 ] = "minecraft:mangrove_log", }, count = 3, @@ -1476,11 +1476,11 @@ [ "minecraft:deepslate_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:deepslate_bricks", - [ 8 ] = "minecraft:deepslate_bricks", - [ 5 ] = "minecraft:deepslate_bricks", - [ 4 ] = "minecraft:deepslate_bricks", - [ 7 ] = "minecraft:deepslate_bricks", [ 9 ] = "minecraft:deepslate_bricks", + [ 5 ] = "minecraft:deepslate_bricks", + [ 10 ] = "minecraft:deepslate_bricks", + [ 11 ] = "minecraft:deepslate_bricks", + [ 6 ] = "minecraft:deepslate_bricks", }, count = 4, }, @@ -1500,8 +1500,8 @@ [ "minecraft:polished_blackstone" ] = { ingredients = { [ 1 ] = "minecraft:blackstone", - [ 4 ] = "minecraft:blackstone", - [ 3 ] = "minecraft:blackstone", + [ 6 ] = "minecraft:blackstone", + [ 5 ] = "minecraft:blackstone", [ 2 ] = "minecraft:blackstone", }, count = 4, @@ -1518,8 +1518,8 @@ [ 1 ] = "minecraft:gold_ingot", [ 3 ] = "minecraft:gold_ingot", [ 2 ] = "minecraft:gold_ingot", - [ 4 ] = "minecraft:gold_ingot", - [ 6 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", }, count = 1, }, @@ -1528,7 +1528,7 @@ [ 1 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 1, @@ -1536,8 +1536,8 @@ [ "minecraft:end_stone_bricks" ] = { ingredients = { [ 1 ] = "minecraft:end_stone", - [ 4 ] = "minecraft:end_stone", - [ 3 ] = "minecraft:end_stone", + [ 6 ] = "minecraft:end_stone", + [ 5 ] = "minecraft:end_stone", [ 2 ] = "minecraft:end_stone", }, count = 4, @@ -1548,7 +1548,7 @@ [ 3 ] = "minecraft:acacia_planks", [ 2 ] = "minecraft:acacia_planks", [ 5 ] = "minecraft:acacia_planks", - [ 4 ] = "minecraft:acacia_planks", + [ 7 ] = "minecraft:acacia_planks", [ 6 ] = "minecraft:acacia_planks", }, count = 2, @@ -1559,7 +1559,7 @@ [ 3 ] = "minecraft:mossy_stone_bricks", [ 2 ] = "minecraft:mossy_stone_bricks", [ 5 ] = "minecraft:mossy_stone_bricks", - [ 4 ] = "minecraft:mossy_stone_bricks", + [ 7 ] = "minecraft:mossy_stone_bricks", [ 6 ] = "minecraft:mossy_stone_bricks", }, count = 6, @@ -1569,12 +1569,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:cyan_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:cyan_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -1584,21 +1584,21 @@ [ 3 ] = "minecraft:nether_wart", [ 2 ] = "minecraft:nether_wart", [ 5 ] = "minecraft:nether_wart", - [ 4 ] = "minecraft:nether_wart", [ 7 ] = "minecraft:nether_wart", [ 6 ] = "minecraft:nether_wart", [ 9 ] = "minecraft:nether_wart", - [ 8 ] = "minecraft:nether_wart", + [ 11 ] = "minecraft:nether_wart", + [ 10 ] = "minecraft:nether_wart", }, count = 1, }, [ "minecraft:soul_torch" ] = { ingredients = { + [ 5 ] = "minecraft:stick", + [ 9 ] = "minecraft:soul_sand", [ 1 ] = { item = "minecraft:coal", }, - [ 3 ] = "minecraft:soul_sand", - [ 2 ] = "minecraft:stick", }, count = 4, }, @@ -1607,20 +1607,20 @@ [ 1 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", - [ 5 ] = "minecraft:redstone", - [ 4 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", [ 7 ] = "minecraft:oak_planks", - [ 6 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:redstone", [ 9 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:oak_planks", + [ 11 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", }, count = 1, }, [ "minecraft:diamond_shovel" ] = { ingredients = { + [ 5 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:diamond", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:stick", }, count = 1, }, @@ -1629,17 +1629,17 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:warped_planks", - [ 5 ] = "minecraft:warped_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:warped_planks", }, count = 1, }, [ "minecraft:polished_blackstone_bricks" ] = { ingredients = { [ 1 ] = "minecraft:polished_blackstone", - [ 4 ] = "minecraft:polished_blackstone", - [ 3 ] = "minecraft:polished_blackstone", + [ 6 ] = "minecraft:polished_blackstone", + [ 5 ] = "minecraft:polished_blackstone", [ 2 ] = "minecraft:polished_blackstone", }, count = 4, @@ -1649,9 +1649,9 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:birch_planks", - [ 5 ] = "minecraft:birch_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:birch_planks", }, count = 1, }, @@ -1660,12 +1660,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:yellow_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:yellow_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -1675,7 +1675,7 @@ [ 3 ] = "minecraft:mossy_cobblestone", [ 2 ] = "minecraft:mossy_cobblestone", [ 5 ] = "minecraft:mossy_cobblestone", - [ 4 ] = "minecraft:mossy_cobblestone", + [ 7 ] = "minecraft:mossy_cobblestone", [ 6 ] = "minecraft:mossy_cobblestone", }, count = 6, @@ -1686,22 +1686,22 @@ [ 3 ] = "minecraft:emerald", [ 2 ] = "minecraft:emerald", [ 5 ] = "minecraft:emerald", - [ 4 ] = "minecraft:emerald", [ 7 ] = "minecraft:emerald", [ 6 ] = "minecraft:emerald", [ 9 ] = "minecraft:emerald", - [ 8 ] = "minecraft:emerald", + [ 11 ] = "minecraft:emerald", + [ 10 ] = "minecraft:emerald", }, count = 1, }, [ "minecraft:prismarine_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:prismarine_bricks", - [ 8 ] = "minecraft:prismarine_bricks", - [ 5 ] = "minecraft:prismarine_bricks", - [ 4 ] = "minecraft:prismarine_bricks", - [ 7 ] = "minecraft:prismarine_bricks", [ 9 ] = "minecraft:prismarine_bricks", + [ 5 ] = "minecraft:prismarine_bricks", + [ 10 ] = "minecraft:prismarine_bricks", + [ 11 ] = "minecraft:prismarine_bricks", + [ 6 ] = "minecraft:prismarine_bricks", }, count = 4, }, @@ -1715,11 +1715,11 @@ [ "minecraft:cyan_banner" ] = { ingredients = { [ 1 ] = "minecraft:cyan_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:cyan_wool", [ 2 ] = "minecraft:cyan_wool", [ 5 ] = "minecraft:cyan_wool", - [ 4 ] = "minecraft:cyan_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:cyan_wool", [ 6 ] = "minecraft:cyan_wool", }, count = 1, @@ -1755,8 +1755,8 @@ [ "minecraft:stripped_dark_oak_wood" ] = { ingredients = { [ 1 ] = "minecraft:stripped_dark_oak_log", - [ 4 ] = "minecraft:stripped_dark_oak_log", - [ 3 ] = "minecraft:stripped_dark_oak_log", + [ 6 ] = "minecraft:stripped_dark_oak_log", + [ 5 ] = "minecraft:stripped_dark_oak_log", [ 2 ] = "minecraft:stripped_dark_oak_log", }, count = 3, @@ -1780,12 +1780,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:purple_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:purple_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -1794,7 +1794,7 @@ [ 1 ] = "minecraft:dark_oak_planks", [ 3 ] = "minecraft:dark_oak_planks", [ 5 ] = "minecraft:dark_oak_planks", - [ 4 ] = "minecraft:dark_oak_planks", + [ 7 ] = "minecraft:dark_oak_planks", [ 6 ] = "minecraft:dark_oak_planks", }, count = 1, @@ -1804,12 +1804,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:orange_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:orange_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -1818,19 +1818,19 @@ [ 1 ] = { item = "minecraft:sandstone", }, - [ 8 ] = { + [ 9 ] = { item = "minecraft:sandstone", }, [ 5 ] = { item = "minecraft:sandstone", }, - [ 4 ] = { + [ 10 ] = { item = "minecraft:sandstone", }, - [ 7 ] = { + [ 11 ] = { item = "minecraft:sandstone", }, - [ 9 ] = { + [ 6 ] = { item = "minecraft:sandstone", }, }, @@ -1839,10 +1839,10 @@ [ "minecraft:smithing_table" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:iron_ingot", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 1, @@ -1850,25 +1850,25 @@ [ "minecraft:dark_oak_wood" ] = { ingredients = { [ 1 ] = "minecraft:dark_oak_log", - [ 4 ] = "minecraft:dark_oak_log", - [ 3 ] = "minecraft:dark_oak_log", + [ 6 ] = "minecraft:dark_oak_log", + [ 5 ] = "minecraft:dark_oak_log", [ 2 ] = "minecraft:dark_oak_log", }, count = 3, }, [ "minecraft:arrow" ] = { ingredients = { + [ 5 ] = "minecraft:stick", + [ 9 ] = "minecraft:feather", [ 1 ] = "minecraft:flint", - [ 3 ] = "minecraft:feather", - [ 2 ] = "minecraft:stick", }, count = 4, }, [ "minecraft:polished_granite" ] = { ingredients = { [ 1 ] = "minecraft:granite", - [ 4 ] = "minecraft:granite", - [ 3 ] = "minecraft:granite", + [ 6 ] = "minecraft:granite", + [ 5 ] = "minecraft:granite", [ 2 ] = "minecraft:granite", }, count = 4, @@ -1876,10 +1876,10 @@ [ "minecraft:golden_pickaxe" ] = { ingredients = { [ 1 ] = "minecraft:gold_ingot", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:gold_ingot", [ 2 ] = "minecraft:gold_ingot", - [ 5 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", }, count = 1, }, @@ -1893,11 +1893,11 @@ [ "minecraft:jungle_sign" ] = { ingredients = { [ 1 ] = "minecraft:jungle_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:jungle_planks", [ 2 ] = "minecraft:jungle_planks", [ 5 ] = "minecraft:jungle_planks", - [ 4 ] = "minecraft:jungle_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:jungle_planks", [ 6 ] = "minecraft:jungle_planks", }, count = 3, @@ -1905,29 +1905,29 @@ [ "minecraft:exposed_cut_copper" ] = { ingredients = { [ 1 ] = "minecraft:exposed_copper", - [ 4 ] = "minecraft:exposed_copper", - [ 3 ] = "minecraft:exposed_copper", + [ 6 ] = "minecraft:exposed_copper", + [ 5 ] = "minecraft:exposed_copper", [ 2 ] = "minecraft:exposed_copper", }, count = 4, }, [ "minecraft:spectral_arrow" ] = { ingredients = { - [ 8 ] = "minecraft:glowstone_dust", [ 2 ] = "minecraft:glowstone_dust", - [ 5 ] = "minecraft:arrow", - [ 4 ] = "minecraft:glowstone_dust", - [ 6 ] = "minecraft:glowstone_dust", + [ 5 ] = "minecraft:glowstone_dust", + [ 10 ] = "minecraft:glowstone_dust", + [ 7 ] = "minecraft:glowstone_dust", + [ 6 ] = "minecraft:arrow", }, count = 2, }, [ "minecraft:acacia_door" ] = { ingredients = { [ 1 ] = "minecraft:acacia_planks", - [ 3 ] = "minecraft:acacia_planks", [ 2 ] = "minecraft:acacia_planks", [ 5 ] = "minecraft:acacia_planks", - [ 4 ] = "minecraft:acacia_planks", + [ 10 ] = "minecraft:acacia_planks", + [ 9 ] = "minecraft:acacia_planks", [ 6 ] = "minecraft:acacia_planks", }, count = 3, @@ -1943,22 +1943,22 @@ [ "minecraft:crimson_stairs" ] = { ingredients = { [ 1 ] = "minecraft:crimson_planks", - [ 8 ] = "minecraft:crimson_planks", - [ 5 ] = "minecraft:crimson_planks", - [ 4 ] = "minecraft:crimson_planks", - [ 7 ] = "minecraft:crimson_planks", [ 9 ] = "minecraft:crimson_planks", + [ 5 ] = "minecraft:crimson_planks", + [ 10 ] = "minecraft:crimson_planks", + [ 11 ] = "minecraft:crimson_planks", + [ 6 ] = "minecraft:crimson_planks", }, count = 4, }, [ "minecraft:cut_copper_stairs" ] = { ingredients = { [ 1 ] = "minecraft:cut_copper", - [ 8 ] = "minecraft:cut_copper", - [ 5 ] = "minecraft:cut_copper", - [ 4 ] = "minecraft:cut_copper", - [ 7 ] = "minecraft:cut_copper", [ 9 ] = "minecraft:cut_copper", + [ 5 ] = "minecraft:cut_copper", + [ 10 ] = "minecraft:cut_copper", + [ 11 ] = "minecraft:cut_copper", + [ 6 ] = "minecraft:cut_copper", }, count = 4, }, @@ -1967,23 +1967,23 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:black_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:black_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, [ "minecraft:prismarine_stairs" ] = { ingredients = { [ 1 ] = "minecraft:prismarine", - [ 8 ] = "minecraft:prismarine", - [ 5 ] = "minecraft:prismarine", - [ 4 ] = "minecraft:prismarine", - [ 7 ] = "minecraft:prismarine", [ 9 ] = "minecraft:prismarine", + [ 5 ] = "minecraft:prismarine", + [ 10 ] = "minecraft:prismarine", + [ 11 ] = "minecraft:prismarine", + [ 6 ] = "minecraft:prismarine", }, count = 4, }, @@ -1992,9 +1992,9 @@ [ 1 ] = "minecraft:warped_planks", [ 3 ] = "minecraft:warped_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:warped_planks", - [ 6 ] = "minecraft:warped_planks", + [ 5 ] = "minecraft:warped_planks", + [ 7 ] = "minecraft:warped_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, @@ -2003,12 +2003,12 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:light_gray_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:light_gray_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, @@ -2023,8 +2023,8 @@ [ "minecraft:stripped_crimson_hyphae" ] = { ingredients = { [ 1 ] = "minecraft:stripped_crimson_stem", - [ 4 ] = "minecraft:stripped_crimson_stem", - [ 3 ] = "minecraft:stripped_crimson_stem", + [ 6 ] = "minecraft:stripped_crimson_stem", + [ 5 ] = "minecraft:stripped_crimson_stem", [ 2 ] = "minecraft:stripped_crimson_stem", }, count = 3, @@ -2043,7 +2043,7 @@ [ 3 ] = "minecraft:red_nether_bricks", [ 2 ] = "minecraft:red_nether_bricks", [ 5 ] = "minecraft:red_nether_bricks", - [ 4 ] = "minecraft:red_nether_bricks", + [ 7 ] = "minecraft:red_nether_bricks", [ 6 ] = "minecraft:red_nether_bricks", }, count = 6, @@ -2053,12 +2053,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:light_gray_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:light_gray_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -2068,22 +2068,22 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, [ "minecraft:acacia_sign" ] = { ingredients = { [ 1 ] = "minecraft:acacia_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:acacia_planks", [ 2 ] = "minecraft:acacia_planks", [ 5 ] = "minecraft:acacia_planks", - [ 4 ] = "minecraft:acacia_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:acacia_planks", [ 6 ] = "minecraft:acacia_planks", }, count = 3, @@ -2093,12 +2093,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:pink_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:pink_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -2115,19 +2115,19 @@ [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", [ 5 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", [ 7 ] = "minecraft:iron_ingot", [ 6 ] = "minecraft:iron_ingot", [ 9 ] = "minecraft:iron_ingot", - [ 8 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", }, count = 1, }, [ "minecraft:diamond_sword" ] = { ingredients = { + [ 5 ] = "minecraft:diamond", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:diamond", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:diamond", }, count = 1, }, @@ -2136,7 +2136,7 @@ [ 1 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", [ 5 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", [ 6 ] = "minecraft:iron_ingot", }, count = 1, @@ -2147,11 +2147,11 @@ [ 3 ] = "minecraft:diamond", [ 2 ] = "minecraft:diamond", [ 5 ] = "minecraft:diamond", - [ 4 ] = "minecraft:diamond", [ 7 ] = "minecraft:diamond", [ 6 ] = "minecraft:diamond", [ 9 ] = "minecraft:diamond", - [ 8 ] = "minecraft:diamond", + [ 11 ] = "minecraft:diamond", + [ 10 ] = "minecraft:diamond", }, count = 1, }, @@ -2168,12 +2168,12 @@ [ 1 ] = "minecraft:cobblestone", [ 3 ] = "minecraft:cobblestone", [ 2 ] = "minecraft:cobblestone", - [ 5 ] = "minecraft:bow", - [ 4 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", [ 7 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:bow", [ 9 ] = "minecraft:cobblestone", - [ 8 ] = "minecraft:redstone", + [ 11 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:redstone", }, count = 1, }, @@ -2187,11 +2187,11 @@ [ "minecraft:nether_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:nether_bricks", - [ 8 ] = "minecraft:nether_bricks", - [ 5 ] = "minecraft:nether_bricks", - [ 4 ] = "minecraft:nether_bricks", - [ 7 ] = "minecraft:nether_bricks", [ 9 ] = "minecraft:nether_bricks", + [ 5 ] = "minecraft:nether_bricks", + [ 10 ] = "minecraft:nether_bricks", + [ 11 ] = "minecraft:nether_bricks", + [ 6 ] = "minecraft:nether_bricks", }, count = 4, }, @@ -2201,7 +2201,7 @@ [ 3 ] = "minecraft:glass_bottle", [ 2 ] = "minecraft:glass_bottle", [ 5 ] = "minecraft:glass_bottle", - [ 4 ] = "minecraft:glass_bottle", + [ 6 ] = "minecraft:glass_bottle", }, count = 4, }, @@ -2216,8 +2216,8 @@ [ "minecraft:stripped_acacia_wood" ] = { ingredients = { [ 1 ] = "minecraft:stripped_acacia_log", - [ 4 ] = "minecraft:stripped_acacia_log", - [ 3 ] = "minecraft:stripped_acacia_log", + [ 6 ] = "minecraft:stripped_acacia_log", + [ 5 ] = "minecraft:stripped_acacia_log", [ 2 ] = "minecraft:stripped_acacia_log", }, count = 3, @@ -2227,12 +2227,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:lime_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:lime_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -2242,19 +2242,19 @@ [ 3 ] = "minecraft:coal", [ 2 ] = "minecraft:coal", [ 5 ] = "minecraft:coal", - [ 4 ] = "minecraft:coal", [ 7 ] = "minecraft:coal", [ 6 ] = "minecraft:coal", [ 9 ] = "minecraft:coal", - [ 8 ] = "minecraft:coal", + [ 11 ] = "minecraft:coal", + [ 10 ] = "minecraft:coal", }, count = 1, }, [ "minecraft:honey_block" ] = { ingredients = { [ 1 ] = "minecraft:honey_bottle", - [ 4 ] = "minecraft:honey_bottle", - [ 3 ] = "minecraft:honey_bottle", + [ 6 ] = "minecraft:honey_bottle", + [ 5 ] = "minecraft:honey_bottle", [ 2 ] = "minecraft:honey_bottle", }, count = 1, @@ -2262,8 +2262,8 @@ [ "minecraft:polished_andesite" ] = { ingredients = { [ 1 ] = "minecraft:andesite", - [ 4 ] = "minecraft:andesite", - [ 3 ] = "minecraft:andesite", + [ 6 ] = "minecraft:andesite", + [ 5 ] = "minecraft:andesite", [ 2 ] = "minecraft:andesite", }, count = 4, @@ -2274,7 +2274,7 @@ [ 3 ] = "minecraft:stone_bricks", [ 2 ] = "minecraft:stone_bricks", [ 5 ] = "minecraft:stone_bricks", - [ 4 ] = "minecraft:stone_bricks", + [ 7 ] = "minecraft:stone_bricks", [ 6 ] = "minecraft:stone_bricks", }, count = 6, @@ -2290,12 +2290,12 @@ [ 1 ] = "minecraft:chiseled_stone_bricks", [ 3 ] = "minecraft:chiseled_stone_bricks", [ 2 ] = "minecraft:chiseled_stone_bricks", - [ 5 ] = "minecraft:netherite_ingot", - [ 4 ] = "minecraft:chiseled_stone_bricks", + [ 5 ] = "minecraft:chiseled_stone_bricks", [ 7 ] = "minecraft:chiseled_stone_bricks", - [ 6 ] = "minecraft:chiseled_stone_bricks", + [ 6 ] = "minecraft:netherite_ingot", [ 9 ] = "minecraft:chiseled_stone_bricks", - [ 8 ] = "minecraft:chiseled_stone_bricks", + [ 11 ] = "minecraft:chiseled_stone_bricks", + [ 10 ] = "minecraft:chiseled_stone_bricks", }, count = 1, }, @@ -2303,7 +2303,7 @@ ingredients = { [ 1 ] = "minecraft:brick", [ 3 ] = "minecraft:brick", - [ 5 ] = "minecraft:brick", + [ 6 ] = "minecraft:brick", }, count = 1, }, @@ -2312,9 +2312,9 @@ [ 1 ] = "minecraft:birch_planks", [ 3 ] = "minecraft:birch_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:birch_planks", - [ 6 ] = "minecraft:birch_planks", + [ 5 ] = "minecraft:birch_planks", + [ 7 ] = "minecraft:birch_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, @@ -2345,22 +2345,22 @@ [ 3 ] = "minecraft:bone_meal", [ 2 ] = "minecraft:bone_meal", [ 5 ] = "minecraft:bone_meal", - [ 4 ] = "minecraft:bone_meal", [ 7 ] = "minecraft:bone_meal", [ 6 ] = "minecraft:bone_meal", [ 9 ] = "minecraft:bone_meal", - [ 8 ] = "minecraft:bone_meal", + [ 11 ] = "minecraft:bone_meal", + [ 10 ] = "minecraft:bone_meal", }, count = 1, }, [ "minecraft:purple_banner" ] = { ingredients = { [ 1 ] = "minecraft:purple_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:purple_wool", [ 2 ] = "minecraft:purple_wool", [ 5 ] = "minecraft:purple_wool", - [ 4 ] = "minecraft:purple_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:purple_wool", [ 6 ] = "minecraft:purple_wool", }, count = 1, @@ -2368,8 +2368,8 @@ [ "minecraft:stripped_spruce_wood" ] = { ingredients = { [ 1 ] = "minecraft:stripped_spruce_log", - [ 4 ] = "minecraft:stripped_spruce_log", - [ 3 ] = "minecraft:stripped_spruce_log", + [ 6 ] = "minecraft:stripped_spruce_log", + [ 5 ] = "minecraft:stripped_spruce_log", [ 2 ] = "minecraft:stripped_spruce_log", }, count = 3, @@ -2377,11 +2377,11 @@ [ "minecraft:mossy_stone_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:mossy_stone_bricks", - [ 8 ] = "minecraft:mossy_stone_bricks", - [ 5 ] = "minecraft:mossy_stone_bricks", - [ 4 ] = "minecraft:mossy_stone_bricks", - [ 7 ] = "minecraft:mossy_stone_bricks", [ 9 ] = "minecraft:mossy_stone_bricks", + [ 5 ] = "minecraft:mossy_stone_bricks", + [ 10 ] = "minecraft:mossy_stone_bricks", + [ 11 ] = "minecraft:mossy_stone_bricks", + [ 6 ] = "minecraft:mossy_stone_bricks", }, count = 4, }, @@ -2403,10 +2403,10 @@ [ 1 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", - [ 9 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 11 ] = "minecraft:iron_ingot", [ 7 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", }, count = 1, }, @@ -2416,11 +2416,11 @@ [ 3 ] = "minecraft:packed_ice", [ 2 ] = "minecraft:packed_ice", [ 5 ] = "minecraft:packed_ice", - [ 4 ] = "minecraft:packed_ice", [ 7 ] = "minecraft:packed_ice", [ 6 ] = "minecraft:packed_ice", [ 9 ] = "minecraft:packed_ice", - [ 8 ] = "minecraft:packed_ice", + [ 11 ] = "minecraft:packed_ice", + [ 10 ] = "minecraft:packed_ice", }, count = 1, }, @@ -2437,7 +2437,7 @@ [ 3 ] = "minecraft:polished_blackstone_bricks", [ 2 ] = "minecraft:polished_blackstone_bricks", [ 5 ] = "minecraft:polished_blackstone_bricks", - [ 4 ] = "minecraft:polished_blackstone_bricks", + [ 7 ] = "minecraft:polished_blackstone_bricks", [ 6 ] = "minecraft:polished_blackstone_bricks", }, count = 6, @@ -2447,20 +2447,20 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:red_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:red_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, [ "minecraft:mud_bricks" ] = { ingredients = { [ 1 ] = "minecraft:packed_mud", - [ 4 ] = "minecraft:packed_mud", - [ 3 ] = "minecraft:packed_mud", + [ 6 ] = "minecraft:packed_mud", + [ 5 ] = "minecraft:packed_mud", [ 2 ] = "minecraft:packed_mud", }, count = 4, @@ -2470,12 +2470,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:pink_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:pink_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -2489,10 +2489,10 @@ [ "minecraft:birch_door" ] = { ingredients = { [ 1 ] = "minecraft:birch_planks", - [ 3 ] = "minecraft:birch_planks", [ 2 ] = "minecraft:birch_planks", [ 5 ] = "minecraft:birch_planks", - [ 4 ] = "minecraft:birch_planks", + [ 10 ] = "minecraft:birch_planks", + [ 9 ] = "minecraft:birch_planks", [ 6 ] = "minecraft:birch_planks", }, count = 3, @@ -2506,7 +2506,7 @@ [ "minecraft:lever" ] = { ingredients = { [ 1 ] = "minecraft:stick", - [ 2 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", }, count = 1, }, @@ -2516,29 +2516,29 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, [ "minecraft:mud_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:mud_bricks", - [ 8 ] = "minecraft:mud_bricks", - [ 5 ] = "minecraft:mud_bricks", - [ 4 ] = "minecraft:mud_bricks", - [ 7 ] = "minecraft:mud_bricks", [ 9 ] = "minecraft:mud_bricks", + [ 5 ] = "minecraft:mud_bricks", + [ 10 ] = "minecraft:mud_bricks", + [ 11 ] = "minecraft:mud_bricks", + [ 6 ] = "minecraft:mud_bricks", }, count = 4, }, [ "minecraft:book" ] = { ingredients = { [ 1 ] = "minecraft:paper", - [ 4 ] = "minecraft:leather", + [ 5 ] = "minecraft:leather", [ 3 ] = "minecraft:paper", [ 2 ] = "minecraft:paper", }, @@ -2549,19 +2549,19 @@ [ 1 ] = "minecraft:crimson_planks", [ 3 ] = "minecraft:crimson_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:crimson_planks", - [ 6 ] = "minecraft:crimson_planks", + [ 5 ] = "minecraft:crimson_planks", + [ 7 ] = "minecraft:crimson_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, [ "minecraft:iron_door" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", [ 5 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_ingot", [ 6 ] = "minecraft:iron_ingot", }, count = 3, @@ -2569,8 +2569,8 @@ [ "minecraft:acacia_wood" ] = { ingredients = { [ 1 ] = "minecraft:acacia_log", - [ 4 ] = "minecraft:acacia_log", - [ 3 ] = "minecraft:acacia_log", + [ 6 ] = "minecraft:acacia_log", + [ 5 ] = "minecraft:acacia_log", [ 2 ] = "minecraft:acacia_log", }, count = 3, @@ -2580,9 +2580,9 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:dark_oak_planks", - [ 5 ] = "minecraft:dark_oak_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:dark_oak_planks", }, count = 1, }, @@ -2594,9 +2594,9 @@ }, [ "minecraft:wooden_sword" ] = { ingredients = { + [ 5 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:oak_planks", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:oak_planks", }, count = 1, }, @@ -2605,12 +2605,12 @@ [ 1 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:furnace", - [ 4 ] = "minecraft:iron_ingot", - [ 7 ] = "minecraft:smooth_stone", - [ 6 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:furnace", [ 9 ] = "minecraft:smooth_stone", - [ 8 ] = "minecraft:smooth_stone", + [ 11 ] = "minecraft:smooth_stone", + [ 10 ] = "minecraft:smooth_stone", }, count = 1, }, @@ -2637,22 +2637,22 @@ [ "minecraft:red_nether_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:red_nether_bricks", - [ 8 ] = "minecraft:red_nether_bricks", - [ 5 ] = "minecraft:red_nether_bricks", - [ 4 ] = "minecraft:red_nether_bricks", - [ 7 ] = "minecraft:red_nether_bricks", [ 9 ] = "minecraft:red_nether_bricks", + [ 5 ] = "minecraft:red_nether_bricks", + [ 10 ] = "minecraft:red_nether_bricks", + [ 11 ] = "minecraft:red_nether_bricks", + [ 6 ] = "minecraft:red_nether_bricks", }, count = 4, }, [ "minecraft:stone_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:stone_bricks", - [ 8 ] = "minecraft:stone_bricks", - [ 5 ] = "minecraft:stone_bricks", - [ 4 ] = "minecraft:stone_bricks", - [ 7 ] = "minecraft:stone_bricks", [ 9 ] = "minecraft:stone_bricks", + [ 5 ] = "minecraft:stone_bricks", + [ 10 ] = "minecraft:stone_bricks", + [ 11 ] = "minecraft:stone_bricks", + [ 6 ] = "minecraft:stone_bricks", }, count = 4, }, @@ -2662,11 +2662,11 @@ [ 3 ] = "minecraft:gold_nugget", [ 2 ] = "minecraft:gold_nugget", [ 5 ] = "minecraft:gold_nugget", - [ 4 ] = "minecraft:gold_nugget", [ 7 ] = "minecraft:gold_nugget", [ 6 ] = "minecraft:gold_nugget", [ 9 ] = "minecraft:gold_nugget", - [ 8 ] = "minecraft:gold_nugget", + [ 11 ] = "minecraft:gold_nugget", + [ 10 ] = "minecraft:gold_nugget", }, count = 1, }, @@ -2688,25 +2688,25 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:light_gray_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:light_gray_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, [ "minecraft:dropper" ] = { ingredients = { [ 1 ] = "minecraft:cobblestone", - [ 8 ] = "minecraft:redstone", + [ 11 ] = "minecraft:cobblestone", [ 3 ] = "minecraft:cobblestone", [ 2 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", [ 9 ] = "minecraft:cobblestone", - [ 4 ] = "minecraft:cobblestone", [ 7 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:redstone", }, count = 1, }, @@ -2714,9 +2714,9 @@ ingredients = { [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", - [ 9 ] = "minecraft:stick", + [ 11 ] = "minecraft:stick", [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", [ 7 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", }, @@ -2725,9 +2725,9 @@ [ "minecraft:leather_boots" ] = { ingredients = { [ 1 ] = "minecraft:leather", - [ 4 ] = "minecraft:leather", + [ 7 ] = "minecraft:leather", [ 3 ] = "minecraft:leather", - [ 6 ] = "minecraft:leather", + [ 5 ] = "minecraft:leather", }, count = 1, }, @@ -2736,12 +2736,12 @@ [ 1 ] = "minecraft:gold_nugget", [ 3 ] = "minecraft:gold_nugget", [ 2 ] = "minecraft:gold_nugget", - [ 5 ] = "minecraft:melon_slice", - [ 4 ] = "minecraft:gold_nugget", + [ 5 ] = "minecraft:gold_nugget", [ 7 ] = "minecraft:gold_nugget", - [ 6 ] = "minecraft:gold_nugget", + [ 6 ] = "minecraft:melon_slice", [ 9 ] = "minecraft:gold_nugget", - [ 8 ] = "minecraft:gold_nugget", + [ 11 ] = "minecraft:gold_nugget", + [ 10 ] = "minecraft:gold_nugget", }, count = 1, }, @@ -2757,9 +2757,9 @@ [ 1 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:oak_planks", - [ 6 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, @@ -2788,8 +2788,8 @@ [ "minecraft:crafting_table" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", - [ 3 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", }, count = 1, @@ -2797,8 +2797,8 @@ [ "minecraft:polished_basalt" ] = { ingredients = { [ 1 ] = "minecraft:basalt", - [ 4 ] = "minecraft:basalt", - [ 3 ] = "minecraft:basalt", + [ 6 ] = "minecraft:basalt", + [ 5 ] = "minecraft:basalt", [ 2 ] = "minecraft:basalt", }, count = 4, @@ -2806,12 +2806,12 @@ [ "minecraft:campfire" ] = { ingredients = { [ 9 ] = "minecraft:oak_log", - [ 8 ] = "minecraft:oak_log", + [ 11 ] = "minecraft:oak_log", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:coal", - [ 4 ] = "minecraft:stick", - [ 7 ] = "minecraft:oak_log", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 10 ] = "minecraft:oak_log", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:coal", }, count = 1, }, @@ -2824,8 +2824,8 @@ [ "minecraft:oak_wood" ] = { ingredients = { [ 1 ] = "minecraft:oak_log", - [ 4 ] = "minecraft:oak_log", - [ 3 ] = "minecraft:oak_log", + [ 6 ] = "minecraft:oak_log", + [ 5 ] = "minecraft:oak_log", [ 2 ] = "minecraft:oak_log", }, count = 3, @@ -2866,12 +2866,12 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:lime_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:lime_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, @@ -2892,10 +2892,10 @@ [ "minecraft:dark_oak_door" ] = { ingredients = { [ 1 ] = "minecraft:dark_oak_planks", - [ 3 ] = "minecraft:dark_oak_planks", [ 2 ] = "minecraft:dark_oak_planks", [ 5 ] = "minecraft:dark_oak_planks", - [ 4 ] = "minecraft:dark_oak_planks", + [ 10 ] = "minecraft:dark_oak_planks", + [ 9 ] = "minecraft:dark_oak_planks", [ 6 ] = "minecraft:dark_oak_planks", }, count = 3, @@ -2903,11 +2903,11 @@ [ "minecraft:dark_oak_sign" ] = { ingredients = { [ 1 ] = "minecraft:dark_oak_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:dark_oak_planks", [ 2 ] = "minecraft:dark_oak_planks", [ 5 ] = "minecraft:dark_oak_planks", - [ 4 ] = "minecraft:dark_oak_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:dark_oak_planks", [ 6 ] = "minecraft:dark_oak_planks", }, count = 3, @@ -2924,7 +2924,7 @@ ingredients = { [ 1 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", - [ 5 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", }, count = 4, }, @@ -2934,7 +2934,7 @@ [ 3 ] = "minecraft:deepslate_bricks", [ 2 ] = "minecraft:deepslate_bricks", [ 5 ] = "minecraft:deepslate_bricks", - [ 4 ] = "minecraft:deepslate_bricks", + [ 7 ] = "minecraft:deepslate_bricks", [ 6 ] = "minecraft:deepslate_bricks", }, count = 6, @@ -2942,8 +2942,8 @@ [ "minecraft:nether_bricks" ] = { ingredients = { [ 1 ] = "minecraft:nether_brick", - [ 4 ] = "minecraft:nether_brick", - [ 3 ] = "minecraft:nether_brick", + [ 6 ] = "minecraft:nether_brick", + [ 5 ] = "minecraft:nether_brick", [ 2 ] = "minecraft:nether_brick", }, count = 1, @@ -2951,11 +2951,11 @@ [ "minecraft:polished_blackstone_brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:polished_blackstone_bricks", - [ 8 ] = "minecraft:polished_blackstone_bricks", - [ 5 ] = "minecraft:polished_blackstone_bricks", - [ 4 ] = "minecraft:polished_blackstone_bricks", - [ 7 ] = "minecraft:polished_blackstone_bricks", [ 9 ] = "minecraft:polished_blackstone_bricks", + [ 5 ] = "minecraft:polished_blackstone_bricks", + [ 10 ] = "minecraft:polished_blackstone_bricks", + [ 11 ] = "minecraft:polished_blackstone_bricks", + [ 6 ] = "minecraft:polished_blackstone_bricks", }, count = 4, }, @@ -2975,19 +2975,19 @@ [ "minecraft:polished_andesite_stairs" ] = { ingredients = { [ 1 ] = "minecraft:polished_andesite", - [ 8 ] = "minecraft:polished_andesite", - [ 5 ] = "minecraft:polished_andesite", - [ 4 ] = "minecraft:polished_andesite", - [ 7 ] = "minecraft:polished_andesite", [ 9 ] = "minecraft:polished_andesite", + [ 5 ] = "minecraft:polished_andesite", + [ 10 ] = "minecraft:polished_andesite", + [ 11 ] = "minecraft:polished_andesite", + [ 6 ] = "minecraft:polished_andesite", }, count = 4, }, [ "minecraft:brewing_stand" ] = { ingredients = { [ 5 ] = "minecraft:cobblestone", - [ 4 ] = "minecraft:cobblestone", [ 6 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", [ 2 ] = "minecraft:blaze_rod", }, count = 1, @@ -2995,8 +2995,8 @@ [ "minecraft:stripped_warped_hyphae" ] = { ingredients = { [ 1 ] = "minecraft:stripped_warped_stem", - [ 4 ] = "minecraft:stripped_warped_stem", - [ 3 ] = "minecraft:stripped_warped_stem", + [ 6 ] = "minecraft:stripped_warped_stem", + [ 5 ] = "minecraft:stripped_warped_stem", [ 2 ] = "minecraft:stripped_warped_stem", }, count = 3, @@ -3004,11 +3004,11 @@ [ "minecraft:orange_banner" ] = { ingredients = { [ 1 ] = "minecraft:orange_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:orange_wool", [ 2 ] = "minecraft:orange_wool", [ 5 ] = "minecraft:orange_wool", - [ 4 ] = "minecraft:orange_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:orange_wool", [ 6 ] = "minecraft:orange_wool", }, count = 1, @@ -3024,19 +3024,19 @@ [ 1 ] = "minecraft:dark_oak_planks", [ 3 ] = "minecraft:dark_oak_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:dark_oak_planks", - [ 6 ] = "minecraft:dark_oak_planks", + [ 5 ] = "minecraft:dark_oak_planks", + [ 7 ] = "minecraft:dark_oak_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, [ "minecraft:stone_pickaxe" ] = { ingredients = { [ 1 ] = "minecraft:cobblestone", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:cobblestone", [ 2 ] = "minecraft:cobblestone", - [ 5 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", }, count = 1, }, @@ -3061,11 +3061,11 @@ [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", [ 5 ] = "minecraft:book", - [ 4 ] = "minecraft:book", - [ 7 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:book", [ 6 ] = "minecraft:book", [ 9 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:oak_planks", + [ 11 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", }, count = 1, }, @@ -3074,22 +3074,22 @@ [ 1 ] = "minecraft:milk_bucket", [ 3 ] = "minecraft:milk_bucket", [ 2 ] = "minecraft:milk_bucket", - [ 5 ] = "minecraft:egg", - [ 4 ] = "minecraft:sugar", - [ 7 ] = "minecraft:wheat", - [ 6 ] = "minecraft:sugar", + [ 5 ] = "minecraft:sugar", + [ 7 ] = "minecraft:sugar", + [ 6 ] = "minecraft:egg", [ 9 ] = "minecraft:wheat", - [ 8 ] = "minecraft:wheat", + [ 11 ] = "minecraft:wheat", + [ 10 ] = "minecraft:wheat", }, count = 1, }, [ "minecraft:warped_door" ] = { ingredients = { [ 1 ] = "minecraft:warped_planks", - [ 3 ] = "minecraft:warped_planks", [ 2 ] = "minecraft:warped_planks", [ 5 ] = "minecraft:warped_planks", - [ 4 ] = "minecraft:warped_planks", + [ 10 ] = "minecraft:warped_planks", + [ 9 ] = "minecraft:warped_planks", [ 6 ] = "minecraft:warped_planks", }, count = 3, @@ -3097,22 +3097,22 @@ [ "minecraft:polished_deepslate_stairs" ] = { ingredients = { [ 1 ] = "minecraft:polished_deepslate", - [ 8 ] = "minecraft:polished_deepslate", - [ 5 ] = "minecraft:polished_deepslate", - [ 4 ] = "minecraft:polished_deepslate", - [ 7 ] = "minecraft:polished_deepslate", [ 9 ] = "minecraft:polished_deepslate", + [ 5 ] = "minecraft:polished_deepslate", + [ 10 ] = "minecraft:polished_deepslate", + [ 11 ] = "minecraft:polished_deepslate", + [ 6 ] = "minecraft:polished_deepslate", }, count = 4, }, [ "minecraft:brown_banner" ] = { ingredients = { [ 1 ] = "minecraft:brown_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:brown_wool", [ 2 ] = "minecraft:brown_wool", [ 5 ] = "minecraft:brown_wool", - [ 4 ] = "minecraft:brown_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:brown_wool", [ 6 ] = "minecraft:brown_wool", }, count = 1, @@ -3122,12 +3122,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:magenta_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:magenta_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -3136,12 +3136,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:gray_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:gray_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -3154,10 +3154,10 @@ [ "minecraft:jungle_door" ] = { ingredients = { [ 1 ] = "minecraft:jungle_planks", - [ 3 ] = "minecraft:jungle_planks", [ 2 ] = "minecraft:jungle_planks", [ 5 ] = "minecraft:jungle_planks", - [ 4 ] = "minecraft:jungle_planks", + [ 10 ] = "minecraft:jungle_planks", + [ 9 ] = "minecraft:jungle_planks", [ 6 ] = "minecraft:jungle_planks", }, count = 3, @@ -3165,9 +3165,9 @@ [ "minecraft:golden_boots" ] = { ingredients = { [ 1 ] = "minecraft:gold_ingot", - [ 4 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", [ 3 ] = "minecraft:gold_ingot", - [ 6 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", }, count = 1, }, @@ -3183,12 +3183,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:yellow_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:yellow_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -3210,9 +3210,9 @@ ingredients = { [ 1 ] = "minecraft:leather", [ 3 ] = "minecraft:leather", - [ 9 ] = "minecraft:leather", + [ 11 ] = "minecraft:leather", [ 5 ] = "minecraft:leather", - [ 4 ] = "minecraft:leather", + [ 9 ] = "minecraft:leather", [ 7 ] = "minecraft:leather", [ 6 ] = "minecraft:leather", }, @@ -3223,22 +3223,22 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:ender_eye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:ender_eye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:ghast_tear", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:ghast_tear", }, count = 1, }, [ "minecraft:compass" ] = { ingredients = { - [ 8 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:redstone", - [ 4 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:redstone", }, count = 1, }, @@ -3248,7 +3248,7 @@ [ 3 ] = "minecraft:warped_planks", [ 2 ] = "minecraft:warped_planks", [ 5 ] = "minecraft:warped_planks", - [ 4 ] = "minecraft:warped_planks", + [ 7 ] = "minecraft:warped_planks", [ 6 ] = "minecraft:warped_planks", }, count = 2, @@ -3258,9 +3258,9 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:oak_planks", - [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:oak_planks", }, count = 1, }, @@ -3270,7 +3270,7 @@ [ 3 ] = "minecraft:diorite", [ 2 ] = "minecraft:diorite", [ 5 ] = "minecraft:diorite", - [ 4 ] = "minecraft:diorite", + [ 7 ] = "minecraft:diorite", [ 6 ] = "minecraft:diorite", }, count = 6, @@ -3286,12 +3286,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:light_blue_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:light_blue_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -3314,8 +3314,8 @@ [ 1 ] = "minecraft:leather", [ 3 ] = "minecraft:leather", [ 2 ] = "minecraft:leather", - [ 4 ] = "minecraft:leather", - [ 6 ] = "minecraft:leather", + [ 5 ] = "minecraft:leather", + [ 7 ] = "minecraft:leather", }, count = 1, }, @@ -3325,11 +3325,11 @@ [ 3 ] = "minecraft:prismarine_shard", [ 2 ] = "minecraft:prismarine_crystals", [ 5 ] = "minecraft:prismarine_crystals", - [ 4 ] = "minecraft:prismarine_crystals", - [ 7 ] = "minecraft:prismarine_shard", + [ 7 ] = "minecraft:prismarine_crystals", [ 6 ] = "minecraft:prismarine_crystals", [ 9 ] = "minecraft:prismarine_shard", - [ 8 ] = "minecraft:prismarine_crystals", + [ 11 ] = "minecraft:prismarine_shard", + [ 10 ] = "minecraft:prismarine_crystals", }, count = 1, }, @@ -3359,7 +3359,7 @@ [ 3 ] = "minecraft:cobblestone", [ 2 ] = "minecraft:cobblestone", [ 5 ] = "minecraft:cobblestone", - [ 4 ] = "minecraft:cobblestone", + [ 7 ] = "minecraft:cobblestone", [ 6 ] = "minecraft:cobblestone", }, count = 6, @@ -3373,11 +3373,11 @@ [ "minecraft:deepslate_tile_stairs" ] = { ingredients = { [ 1 ] = "minecraft:deepslate_tiles", - [ 8 ] = "minecraft:deepslate_tiles", - [ 5 ] = "minecraft:deepslate_tiles", - [ 4 ] = "minecraft:deepslate_tiles", - [ 7 ] = "minecraft:deepslate_tiles", [ 9 ] = "minecraft:deepslate_tiles", + [ 5 ] = "minecraft:deepslate_tiles", + [ 10 ] = "minecraft:deepslate_tiles", + [ 11 ] = "minecraft:deepslate_tiles", + [ 6 ] = "minecraft:deepslate_tiles", }, count = 4, }, @@ -3395,22 +3395,22 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, [ "minecraft:cobbled_deepslate_stairs" ] = { ingredients = { [ 1 ] = "minecraft:cobbled_deepslate", - [ 8 ] = "minecraft:cobbled_deepslate", - [ 5 ] = "minecraft:cobbled_deepslate", - [ 4 ] = "minecraft:cobbled_deepslate", - [ 7 ] = "minecraft:cobbled_deepslate", [ 9 ] = "minecraft:cobbled_deepslate", + [ 5 ] = "minecraft:cobbled_deepslate", + [ 10 ] = "minecraft:cobbled_deepslate", + [ 11 ] = "minecraft:cobbled_deepslate", + [ 6 ] = "minecraft:cobbled_deepslate", }, count = 4, }, @@ -3427,7 +3427,7 @@ [ 3 ] = "minecraft:white_wool", [ 2 ] = "minecraft:white_wool", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 1, @@ -3438,11 +3438,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -3460,7 +3460,7 @@ [ 3 ] = "minecraft:jungle_planks", [ 2 ] = "minecraft:jungle_planks", [ 5 ] = "minecraft:jungle_planks", - [ 4 ] = "minecraft:jungle_planks", + [ 7 ] = "minecraft:jungle_planks", [ 6 ] = "minecraft:jungle_planks", }, count = 2, @@ -3468,8 +3468,8 @@ [ "minecraft:honeycomb_block" ] = { ingredients = { [ 1 ] = "minecraft:honeycomb", - [ 4 ] = "minecraft:honeycomb", - [ 3 ] = "minecraft:honeycomb", + [ 6 ] = "minecraft:honeycomb", + [ 5 ] = "minecraft:honeycomb", [ 2 ] = "minecraft:honeycomb", }, count = 1, @@ -3477,11 +3477,11 @@ [ "minecraft:mangrove_sign" ] = { ingredients = { [ 1 ] = "minecraft:mangrove_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:mangrove_planks", [ 2 ] = "minecraft:mangrove_planks", [ 5 ] = "minecraft:mangrove_planks", - [ 4 ] = "minecraft:mangrove_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:mangrove_planks", [ 6 ] = "minecraft:mangrove_planks", }, count = 3, @@ -3511,11 +3511,11 @@ }, [ "minecraft:clock" ] = { ingredients = { - [ 8 ] = "minecraft:gold_ingot", [ 2 ] = "minecraft:gold_ingot", - [ 5 ] = "minecraft:redstone", - [ 4 ] = "minecraft:gold_ingot", - [ 6 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", + [ 10 ] = "minecraft:gold_ingot", + [ 7 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:redstone", }, count = 1, }, @@ -3529,10 +3529,10 @@ [ "minecraft:diamond_pickaxe" ] = { ingredients = { [ 1 ] = "minecraft:diamond", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:diamond", [ 2 ] = "minecraft:diamond", - [ 5 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", }, count = 1, }, @@ -3555,12 +3555,12 @@ [ 1 ] = "minecraft:echo_shard", [ 3 ] = "minecraft:echo_shard", [ 2 ] = "minecraft:echo_shard", - [ 5 ] = "minecraft:compass", - [ 4 ] = "minecraft:echo_shard", + [ 5 ] = "minecraft:echo_shard", [ 7 ] = "minecraft:echo_shard", - [ 6 ] = "minecraft:echo_shard", + [ 6 ] = "minecraft:compass", [ 9 ] = "minecraft:echo_shard", - [ 8 ] = "minecraft:echo_shard", + [ 11 ] = "minecraft:echo_shard", + [ 10 ] = "minecraft:echo_shard", }, count = 1, }, @@ -3569,12 +3569,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:yellow_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:yellow_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -3588,7 +3588,7 @@ [ "minecraft:chiseled_sandstone" ] = { ingredients = { [ 1 ] = "minecraft:sandstone_slab", - [ 2 ] = "minecraft:sandstone_slab", + [ 5 ] = "minecraft:sandstone_slab", }, count = 1, }, @@ -3597,12 +3597,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:light_gray_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:light_gray_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -3630,11 +3630,11 @@ [ "minecraft:yellow_banner" ] = { ingredients = { [ 1 ] = "minecraft:yellow_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:yellow_wool", [ 2 ] = "minecraft:yellow_wool", [ 5 ] = "minecraft:yellow_wool", - [ 4 ] = "minecraft:yellow_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:yellow_wool", [ 6 ] = "minecraft:yellow_wool", }, count = 1, @@ -3642,13 +3642,13 @@ [ "minecraft:furnace" ] = { ingredients = { [ 1 ] = "minecraft:cobblestone", - [ 8 ] = "minecraft:cobblestone", + [ 11 ] = "minecraft:cobblestone", [ 3 ] = "minecraft:cobblestone", [ 2 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", [ 9 ] = "minecraft:cobblestone", - [ 4 ] = "minecraft:cobblestone", [ 7 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:cobblestone", }, count = 1, }, @@ -3657,37 +3657,37 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:cyan_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:cyan_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, [ "minecraft:wooden_shovel" ] = { ingredients = { + [ 5 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:oak_planks", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:stick", }, count = 1, }, [ "minecraft:wooden_pickaxe" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", - [ 5 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", }, count = 1, }, [ "minecraft:wooden_hoe" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", [ 2 ] = "minecraft:oak_planks", }, @@ -3696,9 +3696,9 @@ [ "minecraft:wooden_axe" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:stick", + [ 5 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", }, count = 1, @@ -3708,23 +3708,23 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:white_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:white_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, [ "minecraft:bow" ] = { ingredients = { - [ 9 ] = "minecraft:string", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:string", [ 2 ] = "minecraft:stick", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:string", + [ 5 ] = "minecraft:stick", + [ 11 ] = "minecraft:string", + [ 7 ] = "minecraft:string", + [ 10 ] = "minecraft:stick", }, count = 1, }, @@ -3733,12 +3733,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:white_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:white_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -3754,11 +3754,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -3779,11 +3779,11 @@ [ "minecraft:white_banner" ] = { ingredients = { [ 1 ] = "minecraft:white_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:white_wool", [ 2 ] = "minecraft:white_wool", [ 5 ] = "minecraft:white_wool", - [ 4 ] = "minecraft:white_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:white_wool", [ 6 ] = "minecraft:white_wool", }, count = 1, @@ -3793,12 +3793,12 @@ [ 1 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", - [ 5 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:cobblestone", + [ 5 ] = "minecraft:cobblestone", [ 7 ] = "minecraft:cobblestone", - [ 6 ] = "minecraft:cobblestone", + [ 6 ] = "minecraft:iron_ingot", [ 9 ] = "minecraft:cobblestone", - [ 8 ] = "minecraft:redstone", + [ 11 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:redstone", }, count = 1, }, @@ -3807,12 +3807,12 @@ [ 1 ] = "minecraft:iron_nugget", [ 3 ] = "minecraft:iron_nugget", [ 2 ] = "minecraft:iron_nugget", - [ 5 ] = "minecraft:soul_torch", - [ 4 ] = "minecraft:iron_nugget", + [ 5 ] = "minecraft:iron_nugget", [ 7 ] = "minecraft:iron_nugget", - [ 6 ] = "minecraft:iron_nugget", + [ 6 ] = "minecraft:soul_torch", [ 9 ] = "minecraft:iron_nugget", - [ 8 ] = "minecraft:iron_nugget", + [ 11 ] = "minecraft:iron_nugget", + [ 10 ] = "minecraft:iron_nugget", }, count = 1, }, @@ -3828,15 +3828,15 @@ ingredients = { [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", - [ 5 ] = "minecraft:glass", + [ 6 ] = "minecraft:glass", }, count = 3, }, [ "minecraft:cut_red_sandstone" ] = { ingredients = { [ 1 ] = "minecraft:red_sandstone", - [ 4 ] = "minecraft:red_sandstone", - [ 3 ] = "minecraft:red_sandstone", + [ 6 ] = "minecraft:red_sandstone", + [ 5 ] = "minecraft:red_sandstone", [ 2 ] = "minecraft:red_sandstone", }, count = 4, @@ -3844,8 +3844,8 @@ [ "minecraft:weathered_cut_copper" ] = { ingredients = { [ 1 ] = "minecraft:weathered_copper", - [ 4 ] = "minecraft:weathered_copper", - [ 3 ] = "minecraft:weathered_copper", + [ 6 ] = "minecraft:weathered_copper", + [ 5 ] = "minecraft:weathered_copper", [ 2 ] = "minecraft:weathered_copper", }, count = 4, @@ -3861,12 +3861,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:green_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:green_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -3929,11 +3929,11 @@ [ "minecraft:andesite_stairs" ] = { ingredients = { [ 1 ] = "minecraft:andesite", - [ 8 ] = "minecraft:andesite", - [ 5 ] = "minecraft:andesite", - [ 4 ] = "minecraft:andesite", - [ 7 ] = "minecraft:andesite", [ 9 ] = "minecraft:andesite", + [ 5 ] = "minecraft:andesite", + [ 10 ] = "minecraft:andesite", + [ 11 ] = "minecraft:andesite", + [ 6 ] = "minecraft:andesite", }, count = 4, }, @@ -3942,23 +3942,23 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:blue_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:blue_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, [ "minecraft:smooth_red_sandstone_stairs" ] = { ingredients = { [ 1 ] = "minecraft:smooth_red_sandstone", - [ 8 ] = "minecraft:smooth_red_sandstone", - [ 5 ] = "minecraft:smooth_red_sandstone", - [ 4 ] = "minecraft:smooth_red_sandstone", - [ 7 ] = "minecraft:smooth_red_sandstone", [ 9 ] = "minecraft:smooth_red_sandstone", + [ 5 ] = "minecraft:smooth_red_sandstone", + [ 10 ] = "minecraft:smooth_red_sandstone", + [ 11 ] = "minecraft:smooth_red_sandstone", + [ 6 ] = "minecraft:smooth_red_sandstone", }, count = 4, }, @@ -3973,7 +3973,7 @@ [ "minecraft:chiseled_polished_blackstone" ] = { ingredients = { [ 1 ] = "minecraft:polished_blackstone_slab", - [ 2 ] = "minecraft:polished_blackstone_slab", + [ 5 ] = "minecraft:polished_blackstone_slab", }, count = 1, }, @@ -3989,34 +3989,34 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:brown_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:brown_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, [ "minecraft:warped_stairs" ] = { ingredients = { [ 1 ] = "minecraft:warped_planks", - [ 8 ] = "minecraft:warped_planks", - [ 5 ] = "minecraft:warped_planks", - [ 4 ] = "minecraft:warped_planks", - [ 7 ] = "minecraft:warped_planks", [ 9 ] = "minecraft:warped_planks", + [ 5 ] = "minecraft:warped_planks", + [ 10 ] = "minecraft:warped_planks", + [ 11 ] = "minecraft:warped_planks", + [ 6 ] = "minecraft:warped_planks", }, count = 4, }, [ "minecraft:warped_sign" ] = { ingredients = { [ 1 ] = "minecraft:warped_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:warped_planks", [ 2 ] = "minecraft:warped_planks", [ 5 ] = "minecraft:warped_planks", - [ 4 ] = "minecraft:warped_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:warped_planks", [ 6 ] = "minecraft:warped_planks", }, count = 3, @@ -4027,11 +4027,11 @@ [ 3 ] = "minecraft:iron_nugget", [ 2 ] = "minecraft:iron_nugget", [ 5 ] = "minecraft:iron_nugget", - [ 4 ] = "minecraft:iron_nugget", [ 7 ] = "minecraft:iron_nugget", [ 6 ] = "minecraft:iron_nugget", [ 9 ] = "minecraft:iron_nugget", - [ 8 ] = "minecraft:iron_nugget", + [ 11 ] = "minecraft:iron_nugget", + [ 10 ] = "minecraft:iron_nugget", }, count = 1, }, @@ -4044,8 +4044,8 @@ [ "minecraft:warped_hyphae" ] = { ingredients = { [ 1 ] = "minecraft:warped_stem", - [ 4 ] = "minecraft:warped_stem", - [ 3 ] = "minecraft:warped_stem", + [ 6 ] = "minecraft:warped_stem", + [ 5 ] = "minecraft:warped_stem", [ 2 ] = "minecraft:warped_stem", }, count = 3, @@ -4058,9 +4058,9 @@ }, [ "minecraft:tripwire_hook" ] = { ingredients = { + [ 5 ] = "minecraft:stick", + [ 9 ] = "minecraft:oak_planks", [ 1 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:oak_planks", - [ 2 ] = "minecraft:stick", }, count = 2, }, @@ -4069,15 +4069,15 @@ [ 1 ] = { item = "minecraft:coal", }, - [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", }, count = 4, }, [ "minecraft:stripped_mangrove_wood" ] = { ingredients = { [ 1 ] = "minecraft:stripped_mangrove_log", - [ 4 ] = "minecraft:stripped_mangrove_log", - [ 3 ] = "minecraft:stripped_mangrove_log", + [ 6 ] = "minecraft:stripped_mangrove_log", + [ 5 ] = "minecraft:stripped_mangrove_log", [ 2 ] = "minecraft:stripped_mangrove_log", }, count = 3, @@ -4093,27 +4093,27 @@ [ 1 ] = "minecraft:spruce_planks", [ 3 ] = "minecraft:spruce_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:spruce_planks", - [ 6 ] = "minecraft:spruce_planks", + [ 5 ] = "minecraft:spruce_planks", + [ 7 ] = "minecraft:spruce_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, [ "minecraft:target" ] = { ingredients = { - [ 8 ] = "minecraft:redstone", [ 2 ] = "minecraft:redstone", - [ 5 ] = "minecraft:hay_block", - [ 4 ] = "minecraft:redstone", - [ 6 ] = "minecraft:redstone", + [ 5 ] = "minecraft:redstone", + [ 10 ] = "minecraft:redstone", + [ 7 ] = "minecraft:redstone", + [ 6 ] = "minecraft:hay_block", }, count = 1, }, [ "minecraft:stripped_oak_wood" ] = { ingredients = { [ 1 ] = "minecraft:stripped_oak_log", - [ 4 ] = "minecraft:stripped_oak_log", - [ 3 ] = "minecraft:stripped_oak_log", + [ 6 ] = "minecraft:stripped_oak_log", + [ 5 ] = "minecraft:stripped_oak_log", [ 2 ] = "minecraft:stripped_oak_log", }, count = 3, @@ -4128,19 +4128,19 @@ [ "minecraft:stripped_jungle_wood" ] = { ingredients = { [ 1 ] = "minecraft:stripped_jungle_log", - [ 4 ] = "minecraft:stripped_jungle_log", - [ 3 ] = "minecraft:stripped_jungle_log", + [ 6 ] = "minecraft:stripped_jungle_log", + [ 5 ] = "minecraft:stripped_jungle_log", [ 2 ] = "minecraft:stripped_jungle_log", }, count = 3, }, [ "minecraft:smoker" ] = { ingredients = { - [ 8 ] = "minecraft:oak_log", [ 2 ] = "minecraft:oak_log", - [ 5 ] = "minecraft:furnace", - [ 4 ] = "minecraft:oak_log", - [ 6 ] = "minecraft:oak_log", + [ 5 ] = "minecraft:oak_log", + [ 10 ] = "minecraft:oak_log", + [ 7 ] = "minecraft:oak_log", + [ 6 ] = "minecraft:furnace", }, count = 1, }, @@ -4154,28 +4154,28 @@ }, [ "minecraft:stone_sword" ] = { ingredients = { + [ 5 ] = "minecraft:cobblestone", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:cobblestone", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:cobblestone", }, count = 1, }, [ "minecraft:stone_stairs" ] = { ingredients = { [ 1 ] = "minecraft:stone", - [ 8 ] = "minecraft:stone", - [ 5 ] = "minecraft:stone", - [ 4 ] = "minecraft:stone", - [ 7 ] = "minecraft:stone", [ 9 ] = "minecraft:stone", + [ 5 ] = "minecraft:stone", + [ 10 ] = "minecraft:stone", + [ 11 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", }, count = 4, }, [ "minecraft:dripstone_block" ] = { ingredients = { [ 1 ] = "minecraft:pointed_dripstone", - [ 4 ] = "minecraft:pointed_dripstone", - [ 3 ] = "minecraft:pointed_dripstone", + [ 6 ] = "minecraft:pointed_dripstone", + [ 5 ] = "minecraft:pointed_dripstone", [ 2 ] = "minecraft:pointed_dripstone", }, count = 1, @@ -4186,29 +4186,29 @@ [ 3 ] = "minecraft:slime_ball", [ 2 ] = "minecraft:slime_ball", [ 5 ] = "minecraft:slime_ball", - [ 4 ] = "minecraft:slime_ball", [ 7 ] = "minecraft:slime_ball", [ 6 ] = "minecraft:slime_ball", [ 9 ] = "minecraft:slime_ball", - [ 8 ] = "minecraft:slime_ball", + [ 11 ] = "minecraft:slime_ball", + [ 10 ] = "minecraft:slime_ball", }, count = 1, }, [ "minecraft:stone_shovel" ] = { ingredients = { + [ 5 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:cobblestone", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:stick", }, count = 1, }, [ "minecraft:lectern" ] = { ingredients = { [ 1 ] = "minecraft:oak_slab", - [ 8 ] = "minecraft:oak_slab", [ 3 ] = "minecraft:oak_slab", [ 2 ] = "minecraft:oak_slab", - [ 5 ] = "minecraft:bookshelf", + [ 10 ] = "minecraft:oak_slab", + [ 6 ] = "minecraft:bookshelf", }, count = 1, }, @@ -4242,8 +4242,8 @@ [ "minecraft:prismarine" ] = { ingredients = { [ 1 ] = "minecraft:prismarine_shard", - [ 4 ] = "minecraft:prismarine_shard", - [ 3 ] = "minecraft:prismarine_shard", + [ 6 ] = "minecraft:prismarine_shard", + [ 5 ] = "minecraft:prismarine_shard", [ 2 ] = "minecraft:prismarine_shard", }, count = 1, @@ -4251,11 +4251,11 @@ [ "minecraft:oak_stairs" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:oak_planks", - [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", - [ 7 ] = "minecraft:oak_planks", [ 9 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", + [ 11 ] = "minecraft:oak_planks", + [ 6 ] = "minecraft:oak_planks", }, count = 4, }, @@ -4265,19 +4265,19 @@ [ 3 ] = "minecraft:melon_slice", [ 2 ] = "minecraft:melon_slice", [ 5 ] = "minecraft:melon_slice", - [ 4 ] = "minecraft:melon_slice", [ 7 ] = "minecraft:melon_slice", [ 6 ] = "minecraft:melon_slice", [ 9 ] = "minecraft:melon_slice", - [ 8 ] = "minecraft:melon_slice", + [ 11 ] = "minecraft:melon_slice", + [ 10 ] = "minecraft:melon_slice", }, count = 1, }, [ "minecraft:stone_bricks" ] = { ingredients = { [ 1 ] = "minecraft:stone", - [ 4 ] = "minecraft:stone", - [ 3 ] = "minecraft:stone", + [ 6 ] = "minecraft:stone", + [ 5 ] = "minecraft:stone", [ 2 ] = "minecraft:stone", }, count = 4, @@ -4285,9 +4285,9 @@ [ "minecraft:stone_axe" ] = { ingredients = { [ 1 ] = "minecraft:cobblestone", - [ 3 ] = "minecraft:cobblestone", [ 2 ] = "minecraft:cobblestone", - [ 4 ] = "minecraft:stick", + [ 5 ] = "minecraft:cobblestone", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", }, count = 1, @@ -4295,7 +4295,7 @@ [ "minecraft:chiseled_quartz_block" ] = { ingredients = { [ 1 ] = "minecraft:quartz_slab", - [ 2 ] = "minecraft:quartz_slab", + [ 5 ] = "minecraft:quartz_slab", }, count = 1, }, @@ -4304,30 +4304,30 @@ [ 1 ] = "minecraft:acacia_planks", [ 3 ] = "minecraft:acacia_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:acacia_planks", - [ 6 ] = "minecraft:acacia_planks", + [ 5 ] = "minecraft:acacia_planks", + [ 7 ] = "minecraft:acacia_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, [ "minecraft:sticky_piston" ] = { ingredients = { [ 1 ] = "minecraft:slime_ball", - [ 2 ] = "minecraft:piston", + [ 5 ] = "minecraft:piston", }, count = 1, }, [ "minecraft:stick" ] = { ingredients = { [ 1 ] = "minecraft:bamboo", - [ 2 ] = "minecraft:bamboo", + [ 5 ] = "minecraft:bamboo", }, count = 1, }, [ "minecraft:spyglass" ] = { ingredients = { - [ 5 ] = "minecraft:copper_ingot", - [ 8 ] = "minecraft:copper_ingot", + [ 10 ] = "minecraft:copper_ingot", + [ 6 ] = "minecraft:copper_ingot", [ 2 ] = "minecraft:amethyst_shard", }, count = 1, @@ -4335,8 +4335,8 @@ [ "minecraft:spruce_wood" ] = { ingredients = { [ 1 ] = "minecraft:spruce_log", - [ 4 ] = "minecraft:spruce_log", - [ 3 ] = "minecraft:spruce_log", + [ 6 ] = "minecraft:spruce_log", + [ 5 ] = "minecraft:spruce_log", [ 2 ] = "minecraft:spruce_log", }, count = 3, @@ -4347,7 +4347,7 @@ [ 3 ] = "minecraft:spruce_planks", [ 2 ] = "minecraft:spruce_planks", [ 5 ] = "minecraft:spruce_planks", - [ 4 ] = "minecraft:spruce_planks", + [ 7 ] = "minecraft:spruce_planks", [ 6 ] = "minecraft:spruce_planks", }, count = 2, @@ -4362,22 +4362,22 @@ [ "minecraft:smooth_sandstone_stairs" ] = { ingredients = { [ 1 ] = "minecraft:smooth_sandstone", - [ 8 ] = "minecraft:smooth_sandstone", - [ 5 ] = "minecraft:smooth_sandstone", - [ 4 ] = "minecraft:smooth_sandstone", - [ 7 ] = "minecraft:smooth_sandstone", [ 9 ] = "minecraft:smooth_sandstone", + [ 5 ] = "minecraft:smooth_sandstone", + [ 10 ] = "minecraft:smooth_sandstone", + [ 11 ] = "minecraft:smooth_sandstone", + [ 6 ] = "minecraft:smooth_sandstone", }, count = 4, }, [ "minecraft:spruce_sign" ] = { ingredients = { [ 1 ] = "minecraft:spruce_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:spruce_planks", [ 2 ] = "minecraft:spruce_planks", [ 5 ] = "minecraft:spruce_planks", - [ 4 ] = "minecraft:spruce_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:spruce_planks", [ 6 ] = "minecraft:spruce_planks", }, count = 3, @@ -4385,19 +4385,19 @@ [ "minecraft:polished_diorite_stairs" ] = { ingredients = { [ 1 ] = "minecraft:polished_diorite", - [ 8 ] = "minecraft:polished_diorite", - [ 5 ] = "minecraft:polished_diorite", - [ 4 ] = "minecraft:polished_diorite", - [ 7 ] = "minecraft:polished_diorite", [ 9 ] = "minecraft:polished_diorite", + [ 5 ] = "minecraft:polished_diorite", + [ 10 ] = "minecraft:polished_diorite", + [ 11 ] = "minecraft:polished_diorite", + [ 6 ] = "minecraft:polished_diorite", }, count = 4, }, [ "minecraft:iron_trapdoor" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", }, count = 1, @@ -4405,10 +4405,10 @@ [ "minecraft:mangrove_door" ] = { ingredients = { [ 1 ] = "minecraft:mangrove_planks", - [ 3 ] = "minecraft:mangrove_planks", [ 2 ] = "minecraft:mangrove_planks", [ 5 ] = "minecraft:mangrove_planks", - [ 4 ] = "minecraft:mangrove_planks", + [ 10 ] = "minecraft:mangrove_planks", + [ 9 ] = "minecraft:mangrove_planks", [ 6 ] = "minecraft:mangrove_planks", }, count = 3, @@ -4419,7 +4419,7 @@ [ 3 ] = "minecraft:cobbled_deepslate", [ 2 ] = "minecraft:cobbled_deepslate", [ 5 ] = "minecraft:cobbled_deepslate", - [ 4 ] = "minecraft:cobbled_deepslate", + [ 7 ] = "minecraft:cobbled_deepslate", [ 6 ] = "minecraft:cobbled_deepslate", }, count = 6, @@ -4436,32 +4436,32 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:orange_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:orange_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, [ "minecraft:tinted_glass" ] = { ingredients = { - [ 8 ] = "minecraft:amethyst_shard", [ 2 ] = "minecraft:amethyst_shard", - [ 5 ] = "minecraft:glass", - [ 4 ] = "minecraft:amethyst_shard", - [ 6 ] = "minecraft:amethyst_shard", + [ 5 ] = "minecraft:amethyst_shard", + [ 10 ] = "minecraft:amethyst_shard", + [ 7 ] = "minecraft:amethyst_shard", + [ 6 ] = "minecraft:glass", }, count = 2, }, [ "minecraft:spruce_door" ] = { ingredients = { [ 1 ] = "minecraft:spruce_planks", - [ 3 ] = "minecraft:spruce_planks", [ 2 ] = "minecraft:spruce_planks", [ 5 ] = "minecraft:spruce_planks", - [ 4 ] = "minecraft:spruce_planks", + [ 10 ] = "minecraft:spruce_planks", + [ 9 ] = "minecraft:spruce_planks", [ 6 ] = "minecraft:spruce_planks", }, count = 3, @@ -4478,7 +4478,7 @@ [ 1 ] = "minecraft:spruce_planks", [ 3 ] = "minecraft:spruce_planks", [ 5 ] = "minecraft:spruce_planks", - [ 4 ] = "minecraft:spruce_planks", + [ 7 ] = "minecraft:spruce_planks", [ 6 ] = "minecraft:spruce_planks", }, count = 1, @@ -4486,7 +4486,7 @@ [ "minecraft:jack_o_lantern" ] = { ingredients = { [ 1 ] = "minecraft:carved_pumpkin", - [ 2 ] = "minecraft:torch", + [ 5 ] = "minecraft:torch", }, count = 1, }, @@ -4502,7 +4502,7 @@ [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", [ 5 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", [ 6 ] = "minecraft:iron_ingot", }, count = 16, @@ -4510,20 +4510,20 @@ [ "minecraft:soul_campfire" ] = { ingredients = { [ 9 ] = "minecraft:oak_log", - [ 8 ] = "minecraft:oak_log", + [ 11 ] = "minecraft:oak_log", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:soul_sand", - [ 4 ] = "minecraft:stick", - [ 7 ] = "minecraft:oak_log", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 10 ] = "minecraft:oak_log", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:soul_sand", }, count = 1, }, [ "minecraft:quartz_block" ] = { ingredients = { [ 1 ] = "minecraft:quartz", - [ 4 ] = "minecraft:quartz", - [ 3 ] = "minecraft:quartz", + [ 6 ] = "minecraft:quartz", + [ 5 ] = "minecraft:quartz", [ 2 ] = "minecraft:quartz", }, count = 1, @@ -4531,8 +4531,8 @@ [ "minecraft:snow_block" ] = { ingredients = { [ 1 ] = "minecraft:snowball", - [ 4 ] = "minecraft:snowball", - [ 3 ] = "minecraft:snowball", + [ 6 ] = "minecraft:snowball", + [ 5 ] = "minecraft:snowball", [ 2 ] = "minecraft:snowball", }, count = 1, @@ -4540,15 +4540,15 @@ [ "minecraft:quartz_pillar" ] = { ingredients = { [ 1 ] = "minecraft:quartz_block", - [ 2 ] = "minecraft:quartz_block", + [ 5 ] = "minecraft:quartz_block", }, count = 2, }, [ "minecraft:cut_sandstone" ] = { ingredients = { [ 1 ] = "minecraft:sandstone", - [ 4 ] = "minecraft:sandstone", - [ 3 ] = "minecraft:sandstone", + [ 6 ] = "minecraft:sandstone", + [ 5 ] = "minecraft:sandstone", [ 2 ] = "minecraft:sandstone", }, count = 4, @@ -4556,11 +4556,11 @@ [ "minecraft:polished_granite_stairs" ] = { ingredients = { [ 1 ] = "minecraft:polished_granite", - [ 8 ] = "minecraft:polished_granite", - [ 5 ] = "minecraft:polished_granite", - [ 4 ] = "minecraft:polished_granite", - [ 7 ] = "minecraft:polished_granite", [ 9 ] = "minecraft:polished_granite", + [ 5 ] = "minecraft:polished_granite", + [ 10 ] = "minecraft:polished_granite", + [ 11 ] = "minecraft:polished_granite", + [ 6 ] = "minecraft:polished_granite", }, count = 4, }, @@ -4575,29 +4575,29 @@ [ "minecraft:spruce_stairs" ] = { ingredients = { [ 1 ] = "minecraft:spruce_planks", - [ 8 ] = "minecraft:spruce_planks", - [ 5 ] = "minecraft:spruce_planks", - [ 4 ] = "minecraft:spruce_planks", - [ 7 ] = "minecraft:spruce_planks", [ 9 ] = "minecraft:spruce_planks", + [ 5 ] = "minecraft:spruce_planks", + [ 10 ] = "minecraft:spruce_planks", + [ 11 ] = "minecraft:spruce_planks", + [ 6 ] = "minecraft:spruce_planks", }, count = 4, }, [ "minecraft:chiseled_stone_bricks" ] = { ingredients = { [ 1 ] = "minecraft:stone_brick_slab", - [ 2 ] = "minecraft:stone_brick_slab", + [ 5 ] = "minecraft:stone_brick_slab", }, count = 1, }, [ "minecraft:hopper" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 8 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:chest", - [ 4 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:chest", }, count = 1, }, @@ -4620,11 +4620,11 @@ [ "minecraft:smooth_quartz_stairs" ] = { ingredients = { [ 1 ] = "minecraft:smooth_quartz", - [ 8 ] = "minecraft:smooth_quartz", - [ 5 ] = "minecraft:smooth_quartz", - [ 4 ] = "minecraft:smooth_quartz", - [ 7 ] = "minecraft:smooth_quartz", [ 9 ] = "minecraft:smooth_quartz", + [ 5 ] = "minecraft:smooth_quartz", + [ 10 ] = "minecraft:smooth_quartz", + [ 11 ] = "minecraft:smooth_quartz", + [ 6 ] = "minecraft:smooth_quartz", }, count = 4, }, @@ -4641,17 +4641,17 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:mangrove_planks", - [ 5 ] = "minecraft:mangrove_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:mangrove_planks", }, count = 1, }, [ "minecraft:stripped_birch_wood" ] = { ingredients = { [ 1 ] = "minecraft:stripped_birch_log", - [ 4 ] = "minecraft:stripped_birch_log", - [ 3 ] = "minecraft:stripped_birch_log", + [ 6 ] = "minecraft:stripped_birch_log", + [ 5 ] = "minecraft:stripped_birch_log", [ 2 ] = "minecraft:stripped_birch_log", }, count = 3, @@ -4682,11 +4682,11 @@ [ 3 ] = "minecraft:netherite_ingot", [ 2 ] = "minecraft:netherite_ingot", [ 5 ] = "minecraft:netherite_ingot", - [ 4 ] = "minecraft:netherite_ingot", [ 7 ] = "minecraft:netherite_ingot", [ 6 ] = "minecraft:netherite_ingot", [ 9 ] = "minecraft:netherite_ingot", - [ 8 ] = "minecraft:netherite_ingot", + [ 11 ] = "minecraft:netherite_ingot", + [ 10 ] = "minecraft:netherite_ingot", }, count = 1, }, @@ -4700,27 +4700,27 @@ [ "minecraft:exposed_cut_copper_stairs" ] = { ingredients = { [ 1 ] = "minecraft:exposed_cut_copper", - [ 8 ] = "minecraft:exposed_cut_copper", - [ 5 ] = "minecraft:exposed_cut_copper", - [ 4 ] = "minecraft:exposed_cut_copper", - [ 7 ] = "minecraft:exposed_cut_copper", [ 9 ] = "minecraft:exposed_cut_copper", + [ 5 ] = "minecraft:exposed_cut_copper", + [ 10 ] = "minecraft:exposed_cut_copper", + [ 11 ] = "minecraft:exposed_cut_copper", + [ 6 ] = "minecraft:exposed_cut_copper", }, count = 4, }, [ "minecraft:shulker_box" ] = { ingredients = { + [ 5 ] = "minecraft:chest", + [ 9 ] = "minecraft:shulker_shell", [ 1 ] = "minecraft:shulker_shell", - [ 3 ] = "minecraft:shulker_shell", - [ 2 ] = "minecraft:chest", }, count = 1, }, [ "minecraft:iron_shovel" ] = { ingredients = { + [ 5 ] = "minecraft:stick", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:stick", }, count = 1, }, @@ -4736,10 +4736,10 @@ [ 1 ] = "minecraft:bamboo", [ 3 ] = "minecraft:bamboo", [ 2 ] = "minecraft:string", - [ 9 ] = "minecraft:bamboo", - [ 4 ] = "minecraft:bamboo", + [ 5 ] = "minecraft:bamboo", + [ 11 ] = "minecraft:bamboo", [ 7 ] = "minecraft:bamboo", - [ 6 ] = "minecraft:bamboo", + [ 9 ] = "minecraft:bamboo", }, count = 6, }, @@ -4756,7 +4756,7 @@ [ 3 ] = "minecraft:sandstone", [ 2 ] = "minecraft:sandstone", [ 5 ] = "minecraft:sandstone", - [ 4 ] = "minecraft:sandstone", + [ 7 ] = "minecraft:sandstone", [ 6 ] = "minecraft:sandstone", }, count = 6, @@ -4764,8 +4764,8 @@ [ "minecraft:red_nether_bricks" ] = { ingredients = { [ 1 ] = "minecraft:nether_brick", - [ 4 ] = "minecraft:nether_brick", - [ 3 ] = "minecraft:nether_wart", + [ 6 ] = "minecraft:nether_brick", + [ 5 ] = "minecraft:nether_wart", [ 2 ] = "minecraft:nether_wart", }, count = 1, @@ -4775,12 +4775,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:red_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:red_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -4789,12 +4789,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:light_blue_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:light_blue_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -4803,12 +4803,12 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:gray_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:gray_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, @@ -4817,37 +4817,37 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:red_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:red_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, [ "minecraft:armor_stand" ] = { ingredients = { [ 1 ] = "minecraft:stick", - [ 8 ] = "minecraft:smooth_stone_slab", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 7 ] = "minecraft:stick", [ 9 ] = "minecraft:stick", + [ 10 ] = "minecraft:smooth_stone_slab", + [ 11 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", }, count = 1, }, [ "minecraft:barrel" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:oak_slab", + [ 11 ] = "minecraft:oak_planks", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_slab", + [ 5 ] = "minecraft:oak_planks", [ 9 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", [ 7 ] = "minecraft:oak_planks", - [ 6 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_slab", }, count = 1, }, @@ -4870,17 +4870,17 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:acacia_planks", - [ 5 ] = "minecraft:acacia_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:acacia_planks", }, count = 1, }, [ "minecraft:red_sandstone" ] = { ingredients = { [ 1 ] = "minecraft:red_sand", - [ 4 ] = "minecraft:red_sand", - [ 3 ] = "minecraft:red_sand", + [ 6 ] = "minecraft:red_sand", + [ 5 ] = "minecraft:red_sand", [ 2 ] = "minecraft:red_sand", }, count = 1, @@ -4888,11 +4888,11 @@ [ "minecraft:oak_sign" ] = { ingredients = { [ 1 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 3, @@ -4903,18 +4903,18 @@ [ 3 ] = "minecraft:crying_obsidian", [ 2 ] = "minecraft:crying_obsidian", [ 5 ] = "minecraft:glowstone", - [ 4 ] = "minecraft:glowstone", - [ 7 ] = "minecraft:crying_obsidian", + [ 7 ] = "minecraft:glowstone", [ 6 ] = "minecraft:glowstone", [ 9 ] = "minecraft:crying_obsidian", - [ 8 ] = "minecraft:crying_obsidian", + [ 11 ] = "minecraft:crying_obsidian", + [ 10 ] = "minecraft:crying_obsidian", }, count = 1, }, [ "minecraft:purpur_pillar" ] = { ingredients = { [ 1 ] = "minecraft:purpur_slab", - [ 2 ] = "minecraft:purpur_slab", + [ 5 ] = "minecraft:purpur_slab", }, count = 1, }, @@ -4924,11 +4924,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -4948,11 +4948,11 @@ [ "minecraft:red_banner" ] = { ingredients = { [ 1 ] = "minecraft:red_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:red_wool", [ 2 ] = "minecraft:red_wool", [ 5 ] = "minecraft:red_wool", - [ 4 ] = "minecraft:red_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:red_wool", [ 6 ] = "minecraft:red_wool", }, count = 1, @@ -4960,8 +4960,8 @@ [ "minecraft:oxidized_cut_copper" ] = { ingredients = { [ 1 ] = "minecraft:oxidized_copper", - [ 4 ] = "minecraft:oxidized_copper", - [ 3 ] = "minecraft:oxidized_copper", + [ 6 ] = "minecraft:oxidized_copper", + [ 5 ] = "minecraft:oxidized_copper", [ 2 ] = "minecraft:oxidized_copper", }, count = 4, @@ -4969,7 +4969,7 @@ [ "minecraft:redstone_torch" ] = { ingredients = { [ 1 ] = "minecraft:redstone", - [ 2 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", }, count = 1, }, @@ -4979,11 +4979,11 @@ [ 3 ] = "minecraft:redstone", [ 2 ] = "minecraft:redstone", [ 5 ] = "minecraft:redstone", - [ 4 ] = "minecraft:redstone", [ 7 ] = "minecraft:redstone", [ 6 ] = "minecraft:redstone", [ 9 ] = "minecraft:redstone", - [ 8 ] = "minecraft:redstone", + [ 11 ] = "minecraft:redstone", + [ 10 ] = "minecraft:redstone", }, count = 1, }, @@ -4992,17 +4992,17 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:spruce_planks", - [ 5 ] = "minecraft:spruce_planks", - [ 4 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", + [ 7 ] = "minecraft:stick", + [ 6 ] = "minecraft:spruce_planks", }, count = 1, }, [ "minecraft:jungle_wood" ] = { ingredients = { [ 1 ] = "minecraft:jungle_log", - [ 4 ] = "minecraft:jungle_log", - [ 3 ] = "minecraft:jungle_log", + [ 6 ] = "minecraft:jungle_log", + [ 5 ] = "minecraft:jungle_log", [ 2 ] = "minecraft:jungle_log", }, count = 3, @@ -5012,12 +5012,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:green_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:green_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -5027,11 +5027,11 @@ [ 3 ] = "minecraft:raw_gold", [ 2 ] = "minecraft:raw_gold", [ 5 ] = "minecraft:raw_gold", - [ 4 ] = "minecraft:raw_gold", [ 7 ] = "minecraft:raw_gold", [ 6 ] = "minecraft:raw_gold", [ 9 ] = "minecraft:raw_gold", - [ 8 ] = "minecraft:raw_gold", + [ 11 ] = "minecraft:raw_gold", + [ 10 ] = "minecraft:raw_gold", }, count = 1, }, @@ -5045,7 +5045,7 @@ [ "minecraft:chiseled_red_sandstone" ] = { ingredients = { [ 1 ] = "minecraft:red_sandstone_slab", - [ 2 ] = "minecraft:red_sandstone_slab", + [ 5 ] = "minecraft:red_sandstone_slab", }, count = 1, }, @@ -5055,11 +5055,11 @@ [ 3 ] = "minecraft:raw_copper", [ 2 ] = "minecraft:raw_copper", [ 5 ] = "minecraft:raw_copper", - [ 4 ] = "minecraft:raw_copper", [ 7 ] = "minecraft:raw_copper", [ 6 ] = "minecraft:raw_copper", [ 9 ] = "minecraft:raw_copper", - [ 8 ] = "minecraft:raw_copper", + [ 11 ] = "minecraft:raw_copper", + [ 10 ] = "minecraft:raw_copper", }, count = 1, }, @@ -5072,20 +5072,20 @@ [ "minecraft:crossbow" ] = { ingredients = { [ 1 ] = "minecraft:stick", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:tripwire_hook", - [ 4 ] = "minecraft:string", - [ 6 ] = "minecraft:string", + [ 5 ] = "minecraft:string", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:string", + [ 6 ] = "minecraft:tripwire_hook", }, count = 1, }, [ "minecraft:polished_deepslate" ] = { ingredients = { [ 1 ] = "minecraft:cobbled_deepslate", - [ 4 ] = "minecraft:cobbled_deepslate", - [ 3 ] = "minecraft:cobbled_deepslate", + [ 6 ] = "minecraft:cobbled_deepslate", + [ 5 ] = "minecraft:cobbled_deepslate", [ 2 ] = "minecraft:cobbled_deepslate", }, count = 4, @@ -5093,11 +5093,11 @@ [ "minecraft:golden_chestplate" ] = { ingredients = { [ 1 ] = "minecraft:gold_ingot", - [ 8 ] = "minecraft:gold_ingot", + [ 11 ] = "minecraft:gold_ingot", [ 3 ] = "minecraft:gold_ingot", - [ 9 ] = "minecraft:gold_ingot", + [ 10 ] = "minecraft:gold_ingot", [ 5 ] = "minecraft:gold_ingot", - [ 4 ] = "minecraft:gold_ingot", + [ 9 ] = "minecraft:gold_ingot", [ 7 ] = "minecraft:gold_ingot", [ 6 ] = "minecraft:gold_ingot", }, @@ -5108,8 +5108,8 @@ [ 1 ] = "minecraft:baked_potato", [ 3 ] = "minecraft:bowl", [ 2 ] = "minecraft:cooked_rabbit", - [ 5 ] = "minecraft:red_mushroom", - [ 4 ] = "minecraft:carrot", + [ 5 ] = "minecraft:carrot", + [ 6 ] = "minecraft:red_mushroom", }, count = 1, }, @@ -5119,18 +5119,18 @@ [ 3 ] = "minecraft:raw_iron", [ 2 ] = "minecraft:raw_iron", [ 5 ] = "minecraft:raw_iron", - [ 4 ] = "minecraft:raw_iron", [ 7 ] = "minecraft:raw_iron", [ 6 ] = "minecraft:raw_iron", [ 9 ] = "minecraft:raw_iron", - [ 8 ] = "minecraft:raw_iron", + [ 11 ] = "minecraft:raw_iron", + [ 10 ] = "minecraft:raw_iron", }, count = 1, }, [ "minecraft:diamond_hoe" ] = { ingredients = { [ 1 ] = "minecraft:diamond", - [ 4 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", [ 2 ] = "minecraft:diamond", }, @@ -5141,19 +5141,19 @@ [ 1 ] = { item = "minecraft:chiseled_quartz_block", }, - [ 8 ] = { + [ 9 ] = { item = "minecraft:chiseled_quartz_block", }, [ 5 ] = { item = "minecraft:chiseled_quartz_block", }, - [ 4 ] = { + [ 10 ] = { item = "minecraft:chiseled_quartz_block", }, - [ 7 ] = { + [ 11 ] = { item = "minecraft:chiseled_quartz_block", }, - [ 9 ] = { + [ 6 ] = { item = "minecraft:chiseled_quartz_block", }, }, @@ -5162,20 +5162,20 @@ [ "minecraft:light_gray_banner" ] = { ingredients = { [ 1 ] = "minecraft:light_gray_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:light_gray_wool", [ 2 ] = "minecraft:light_gray_wool", [ 5 ] = "minecraft:light_gray_wool", - [ 4 ] = "minecraft:light_gray_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:light_gray_wool", [ 6 ] = "minecraft:light_gray_wool", }, count = 1, }, [ "minecraft:golden_sword" ] = { ingredients = { + [ 5 ] = "minecraft:gold_ingot", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:gold_ingot", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:gold_ingot", }, count = 1, }, @@ -5184,19 +5184,19 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:cyan_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:cyan_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, [ "minecraft:candle" ] = { ingredients = { [ 1 ] = "minecraft:string", - [ 2 ] = "minecraft:honeycomb", + [ 5 ] = "minecraft:honeycomb", }, count = 1, }, @@ -5206,7 +5206,7 @@ [ 3 ] = "minecraft:beetroot", [ 2 ] = "minecraft:beetroot", [ 5 ] = "minecraft:beetroot", - [ 4 ] = "minecraft:beetroot", + [ 9 ] = "minecraft:beetroot", [ 7 ] = "minecraft:beetroot", [ 6 ] = "minecraft:beetroot", }, @@ -5218,7 +5218,7 @@ [ 3 ] = "minecraft:mud_bricks", [ 2 ] = "minecraft:mud_bricks", [ 5 ] = "minecraft:mud_bricks", - [ 4 ] = "minecraft:mud_bricks", + [ 7 ] = "minecraft:mud_bricks", [ 6 ] = "minecraft:mud_bricks", }, count = 6, @@ -5229,11 +5229,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -5242,20 +5242,20 @@ [ 1 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:redstone_torch", - [ 4 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", [ 7 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:redstone_torch", [ 9 ] = "minecraft:iron_ingot", - [ 8 ] = "minecraft:stick", + [ 11 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:stick", }, count = 6, }, [ "minecraft:amethyst_block" ] = { ingredients = { [ 1 ] = "minecraft:amethyst_shard", - [ 4 ] = "minecraft:amethyst_shard", - [ 3 ] = "minecraft:amethyst_shard", + [ 6 ] = "minecraft:amethyst_shard", + [ 5 ] = "minecraft:amethyst_shard", [ 2 ] = "minecraft:amethyst_shard", }, count = 1, @@ -5263,8 +5263,8 @@ [ "minecraft:quartz_bricks" ] = { ingredients = { [ 1 ] = "minecraft:quartz_block", - [ 4 ] = "minecraft:quartz_block", - [ 3 ] = "minecraft:quartz_block", + [ 6 ] = "minecraft:quartz_block", + [ 5 ] = "minecraft:quartz_block", [ 2 ] = "minecraft:quartz_block", }, count = 4, @@ -5272,8 +5272,8 @@ [ "minecraft:polished_diorite" ] = { ingredients = { [ 1 ] = "minecraft:diorite", - [ 4 ] = "minecraft:diorite", - [ 3 ] = "minecraft:diorite", + [ 6 ] = "minecraft:diorite", + [ 5 ] = "minecraft:diorite", [ 2 ] = "minecraft:diorite", }, count = 4, @@ -5283,24 +5283,24 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:green_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:green_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, [ "minecraft:composter" ] = { ingredients = { [ 1 ] = "minecraft:oak_slab", - [ 8 ] = "minecraft:oak_slab", [ 3 ] = "minecraft:oak_slab", + [ 11 ] = "minecraft:oak_slab", + [ 5 ] = "minecraft:oak_slab", [ 9 ] = "minecraft:oak_slab", - [ 4 ] = "minecraft:oak_slab", [ 7 ] = "minecraft:oak_slab", - [ 6 ] = "minecraft:oak_slab", + [ 10 ] = "minecraft:oak_slab", }, count = 1, }, @@ -5318,17 +5318,17 @@ }, [ "minecraft:chain" ] = { ingredients = { + [ 5 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:iron_nugget", [ 1 ] = "minecraft:iron_nugget", - [ 3 ] = "minecraft:iron_nugget", - [ 2 ] = "minecraft:iron_ingot", }, count = 1, }, [ "minecraft:iron_sword" ] = { ingredients = { + [ 5 ] = "minecraft:iron_ingot", + [ 9 ] = "minecraft:stick", [ 1 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:stick", - [ 2 ] = "minecraft:iron_ingot", }, count = 1, }, @@ -5342,11 +5342,11 @@ }, [ "minecraft:fishing_rod" ] = { ingredients = { - [ 9 ] = "minecraft:string", + [ 9 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 7 ] = "minecraft:stick", - [ 6 ] = "minecraft:string", + [ 11 ] = "minecraft:string", + [ 7 ] = "minecraft:string", + [ 6 ] = "minecraft:stick", }, count = 1, }, @@ -5361,9 +5361,9 @@ [ "minecraft:diamond_axe" ] = { ingredients = { [ 1 ] = "minecraft:diamond", - [ 3 ] = "minecraft:diamond", [ 2 ] = "minecraft:diamond", - [ 4 ] = "minecraft:stick", + [ 5 ] = "minecraft:diamond", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", }, count = 1, @@ -5388,11 +5388,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -5402,11 +5402,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -5422,23 +5422,23 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:purple_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:purple_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, [ "minecraft:granite_stairs" ] = { ingredients = { [ 1 ] = "minecraft:granite", - [ 8 ] = "minecraft:granite", - [ 5 ] = "minecraft:granite", - [ 4 ] = "minecraft:granite", - [ 7 ] = "minecraft:granite", [ 9 ] = "minecraft:granite", + [ 5 ] = "minecraft:granite", + [ 10 ] = "minecraft:granite", + [ 11 ] = "minecraft:granite", + [ 6 ] = "minecraft:granite", }, count = 4, }, @@ -5448,11 +5448,11 @@ [ 3 ] = "minecraft:dried_kelp", [ 2 ] = "minecraft:dried_kelp", [ 5 ] = "minecraft:dried_kelp", - [ 4 ] = "minecraft:dried_kelp", [ 7 ] = "minecraft:dried_kelp", [ 6 ] = "minecraft:dried_kelp", [ 9 ] = "minecraft:dried_kelp", - [ 8 ] = "minecraft:dried_kelp", + [ 11 ] = "minecraft:dried_kelp", + [ 10 ] = "minecraft:dried_kelp", }, count = 1, }, @@ -5462,7 +5462,7 @@ [ 3 ] = "minecraft:dark_oak_planks", [ 2 ] = "minecraft:dark_oak_planks", [ 5 ] = "minecraft:dark_oak_planks", - [ 4 ] = "minecraft:dark_oak_planks", + [ 7 ] = "minecraft:dark_oak_planks", [ 6 ] = "minecraft:dark_oak_planks", }, count = 2, @@ -5472,12 +5472,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:white_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:white_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -5493,12 +5493,12 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:leather", - [ 4 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", [ 7 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 6 ] = "minecraft:leather", [ 9 ] = "minecraft:stick", - [ 8 ] = "minecraft:stick", + [ 11 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", }, count = 1, }, @@ -5512,12 +5512,12 @@ [ "minecraft:enchanting_table" ] = { ingredients = { [ 9 ] = "minecraft:obsidian", - [ 8 ] = "minecraft:obsidian", + [ 11 ] = "minecraft:obsidian", [ 2 ] = "minecraft:book", - [ 5 ] = "minecraft:obsidian", - [ 4 ] = "minecraft:diamond", - [ 7 ] = "minecraft:obsidian", - [ 6 ] = "minecraft:diamond", + [ 5 ] = "minecraft:diamond", + [ 10 ] = "minecraft:obsidian", + [ 7 ] = "minecraft:diamond", + [ 6 ] = "minecraft:obsidian", }, count = 1, }, @@ -5533,12 +5533,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:black_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:black_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -5547,12 +5547,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:black_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:black_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -5566,11 +5566,11 @@ [ "minecraft:gray_banner" ] = { ingredients = { [ 1 ] = "minecraft:gray_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:gray_wool", [ 2 ] = "minecraft:gray_wool", [ 5 ] = "minecraft:gray_wool", - [ 4 ] = "minecraft:gray_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:gray_wool", [ 6 ] = "minecraft:gray_wool", }, count = 1, @@ -5578,11 +5578,11 @@ [ "minecraft:birch_sign" ] = { ingredients = { [ 1 ] = "minecraft:birch_planks", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:birch_planks", [ 2 ] = "minecraft:birch_planks", [ 5 ] = "minecraft:birch_planks", - [ 4 ] = "minecraft:birch_planks", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:birch_planks", [ 6 ] = "minecraft:birch_planks", }, count = 3, @@ -5592,12 +5592,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:blue_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:blue_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -5606,12 +5606,12 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:blue_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:blue_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, @@ -5643,12 +5643,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:gray_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:gray_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -5666,11 +5666,11 @@ [ 3 ] = "minecraft:gold_ingot", [ 2 ] = "minecraft:gold_ingot", [ 5 ] = "minecraft:gold_ingot", - [ 4 ] = "minecraft:gold_ingot", [ 7 ] = "minecraft:gold_ingot", [ 6 ] = "minecraft:gold_ingot", [ 9 ] = "minecraft:gold_ingot", - [ 8 ] = "minecraft:gold_ingot", + [ 11 ] = "minecraft:gold_ingot", + [ 10 ] = "minecraft:gold_ingot", }, count = 1, }, @@ -5680,7 +5680,7 @@ [ 3 ] = "minecraft:polished_deepslate", [ 2 ] = "minecraft:polished_deepslate", [ 5 ] = "minecraft:polished_deepslate", - [ 4 ] = "minecraft:polished_deepslate", + [ 7 ] = "minecraft:polished_deepslate", [ 6 ] = "minecraft:polished_deepslate", }, count = 6, @@ -5691,7 +5691,7 @@ [ 3 ] = "minecraft:polished_blackstone", [ 2 ] = "minecraft:polished_blackstone", [ 5 ] = "minecraft:polished_blackstone", - [ 4 ] = "minecraft:polished_blackstone", + [ 7 ] = "minecraft:polished_blackstone", [ 6 ] = "minecraft:polished_blackstone", }, count = 6, @@ -5706,19 +5706,19 @@ [ "minecraft:polished_blackstone_stairs" ] = { ingredients = { [ 1 ] = "minecraft:polished_blackstone", - [ 8 ] = "minecraft:polished_blackstone", - [ 5 ] = "minecraft:polished_blackstone", - [ 4 ] = "minecraft:polished_blackstone", - [ 7 ] = "minecraft:polished_blackstone", [ 9 ] = "minecraft:polished_blackstone", + [ 5 ] = "minecraft:polished_blackstone", + [ 10 ] = "minecraft:polished_blackstone", + [ 11 ] = "minecraft:polished_blackstone", + [ 6 ] = "minecraft:polished_blackstone", }, count = 4, }, [ "minecraft:magma_block" ] = { ingredients = { [ 1 ] = "minecraft:magma_cream", - [ 4 ] = "minecraft:magma_cream", - [ 3 ] = "minecraft:magma_cream", + [ 6 ] = "minecraft:magma_cream", + [ 5 ] = "minecraft:magma_cream", [ 2 ] = "minecraft:magma_cream", }, count = 1, @@ -5729,7 +5729,7 @@ [ 3 ] = "minecraft:prismarine", [ 2 ] = "minecraft:prismarine", [ 5 ] = "minecraft:prismarine", - [ 4 ] = "minecraft:prismarine", + [ 7 ] = "minecraft:prismarine", [ 6 ] = "minecraft:prismarine", }, count = 6, @@ -5748,16 +5748,16 @@ [ 2 ] = { item = "minecraft:sand", }, - [ 5 ] = "minecraft:gunpowder", - [ 4 ] = { + [ 5 ] = { item = "minecraft:sand", }, - [ 7 ] = "minecraft:gunpowder", - [ 6 ] = { + [ 7 ] = { item = "minecraft:sand", }, + [ 6 ] = "minecraft:gunpowder", [ 9 ] = "minecraft:gunpowder", - [ 8 ] = { + [ 11 ] = "minecraft:gunpowder", + [ 10 ] = { item = "minecraft:sand", }, }, @@ -5775,11 +5775,11 @@ [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", [ 5 ] = "minecraft:quartz", - [ 4 ] = "minecraft:quartz", - [ 7 ] = "minecraft:oak_slab", + [ 7 ] = "minecraft:quartz", [ 6 ] = "minecraft:quartz", [ 9 ] = "minecraft:oak_slab", - [ 8 ] = "minecraft:oak_slab", + [ 11 ] = "minecraft:oak_slab", + [ 10 ] = "minecraft:oak_slab", }, count = 1, }, @@ -5788,12 +5788,12 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:magenta_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:magenta_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, @@ -5809,9 +5809,9 @@ [ 1 ] = "minecraft:jungle_planks", [ 3 ] = "minecraft:jungle_planks", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:stick", - [ 4 ] = "minecraft:jungle_planks", - [ 6 ] = "minecraft:jungle_planks", + [ 5 ] = "minecraft:jungle_planks", + [ 7 ] = "minecraft:jungle_planks", + [ 6 ] = "minecraft:stick", }, count = 3, }, @@ -5819,7 +5819,7 @@ ingredients = { [ 1 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:iron_ingot", + [ 6 ] = "minecraft:iron_ingot", }, count = 1, }, @@ -5844,11 +5844,11 @@ [ 3 ] = "minecraft:prismarine_shard", [ 2 ] = "minecraft:prismarine_shard", [ 5 ] = "minecraft:prismarine_shard", - [ 4 ] = "minecraft:prismarine_shard", [ 7 ] = "minecraft:prismarine_shard", [ 6 ] = "minecraft:prismarine_shard", [ 9 ] = "minecraft:prismarine_shard", - [ 8 ] = "minecraft:prismarine_shard", + [ 11 ] = "minecraft:prismarine_shard", + [ 10 ] = "minecraft:prismarine_shard", }, count = 1, }, @@ -5857,20 +5857,20 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:red_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:red_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, [ "minecraft:bricks" ] = { ingredients = { [ 1 ] = "minecraft:brick", - [ 4 ] = "minecraft:brick", - [ 3 ] = "minecraft:brick", + [ 6 ] = "minecraft:brick", + [ 5 ] = "minecraft:brick", [ 2 ] = "minecraft:brick", }, count = 1, @@ -5878,11 +5878,11 @@ [ "minecraft:dark_oak_stairs" ] = { ingredients = { [ 1 ] = "minecraft:dark_oak_planks", - [ 8 ] = "minecraft:dark_oak_planks", - [ 5 ] = "minecraft:dark_oak_planks", - [ 4 ] = "minecraft:dark_oak_planks", - [ 7 ] = "minecraft:dark_oak_planks", [ 9 ] = "minecraft:dark_oak_planks", + [ 5 ] = "minecraft:dark_oak_planks", + [ 10 ] = "minecraft:dark_oak_planks", + [ 11 ] = "minecraft:dark_oak_planks", + [ 6 ] = "minecraft:dark_oak_planks", }, count = 4, }, @@ -5891,20 +5891,20 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:orange_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:orange_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, [ "minecraft:glowstone" ] = { ingredients = { [ 1 ] = "minecraft:glowstone_dust", - [ 4 ] = "minecraft:glowstone_dust", - [ 3 ] = "minecraft:glowstone_dust", + [ 6 ] = "minecraft:glowstone_dust", + [ 5 ] = "minecraft:glowstone_dust", [ 2 ] = "minecraft:glowstone_dust", }, count = 1, @@ -5934,10 +5934,10 @@ [ "minecraft:crimson_door" ] = { ingredients = { [ 1 ] = "minecraft:crimson_planks", - [ 3 ] = "minecraft:crimson_planks", [ 2 ] = "minecraft:crimson_planks", [ 5 ] = "minecraft:crimson_planks", - [ 4 ] = "minecraft:crimson_planks", + [ 10 ] = "minecraft:crimson_planks", + [ 9 ] = "minecraft:crimson_planks", [ 6 ] = "minecraft:crimson_planks", }, count = 3, @@ -5947,12 +5947,12 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:light_blue_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:light_blue_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, @@ -5967,12 +5967,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:brown_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:brown_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -5981,12 +5981,12 @@ [ 1 ] = "minecraft:glass", [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", - [ 5 ] = "minecraft:purple_dye", - [ 4 ] = "minecraft:glass", + [ 5 ] = "minecraft:glass", [ 7 ] = "minecraft:glass", - [ 6 ] = "minecraft:glass", + [ 6 ] = "minecraft:purple_dye", [ 9 ] = "minecraft:glass", - [ 8 ] = "minecraft:glass", + [ 11 ] = "minecraft:glass", + [ 10 ] = "minecraft:glass", }, count = 8, }, @@ -5995,16 +5995,16 @@ [ 1 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", }, count = 1, }, [ "minecraft:deepslate_tiles" ] = { ingredients = { [ 1 ] = "minecraft:deepslate_bricks", - [ 4 ] = "minecraft:deepslate_bricks", - [ 3 ] = "minecraft:deepslate_bricks", + [ 6 ] = "minecraft:deepslate_bricks", + [ 5 ] = "minecraft:deepslate_bricks", [ 2 ] = "minecraft:deepslate_bricks", }, count = 4, @@ -6014,12 +6014,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:pink_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:pink_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -6035,34 +6035,34 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:pink_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:pink_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, [ "minecraft:brick_stairs" ] = { ingredients = { [ 1 ] = "minecraft:bricks", - [ 8 ] = "minecraft:bricks", - [ 5 ] = "minecraft:bricks", - [ 4 ] = "minecraft:bricks", - [ 7 ] = "minecraft:bricks", [ 9 ] = "minecraft:bricks", + [ 5 ] = "minecraft:bricks", + [ 10 ] = "minecraft:bricks", + [ 11 ] = "minecraft:bricks", + [ 6 ] = "minecraft:bricks", }, count = 4, }, [ "minecraft:pink_banner" ] = { ingredients = { [ 1 ] = "minecraft:pink_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:pink_wool", [ 2 ] = "minecraft:pink_wool", [ 5 ] = "minecraft:pink_wool", - [ 4 ] = "minecraft:pink_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:pink_wool", [ 6 ] = "minecraft:pink_wool", }, count = 1, @@ -6072,19 +6072,19 @@ [ 1 ] = { item = "minecraft:red_sandstone", }, - [ 8 ] = { + [ 9 ] = { item = "minecraft:red_sandstone", }, [ 5 ] = { item = "minecraft:red_sandstone", }, - [ 4 ] = { + [ 10 ] = { item = "minecraft:red_sandstone", }, - [ 7 ] = { + [ 11 ] = { item = "minecraft:red_sandstone", }, - [ 9 ] = { + [ 6 ] = { item = "minecraft:red_sandstone", }, }, @@ -6095,12 +6095,12 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:stick", - [ 5 ] = "minecraft:white_wool", - [ 4 ] = "minecraft:stick", + [ 5 ] = "minecraft:stick", [ 7 ] = "minecraft:stick", - [ 6 ] = "minecraft:stick", + [ 6 ] = "minecraft:white_wool", [ 9 ] = "minecraft:stick", - [ 8 ] = "minecraft:stick", + [ 11 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", }, count = 1, }, @@ -6123,11 +6123,11 @@ [ 3 ] = "minecraft:ice", [ 2 ] = "minecraft:ice", [ 5 ] = "minecraft:ice", - [ 4 ] = "minecraft:ice", [ 7 ] = "minecraft:ice", [ 6 ] = "minecraft:ice", [ 9 ] = "minecraft:ice", - [ 8 ] = "minecraft:ice", + [ 11 ] = "minecraft:ice", + [ 10 ] = "minecraft:ice", }, count = 1, }, @@ -6142,7 +6142,7 @@ [ "minecraft:end_rod" ] = { ingredients = { [ 1 ] = "minecraft:blaze_rod", - [ 2 ] = "minecraft:popped_chorus_fruit", + [ 5 ] = "minecraft:popped_chorus_fruit", }, count = 4, }, @@ -6151,7 +6151,7 @@ [ 1 ] = "minecraft:birch_planks", [ 3 ] = "minecraft:birch_planks", [ 5 ] = "minecraft:birch_planks", - [ 4 ] = "minecraft:birch_planks", + [ 7 ] = "minecraft:birch_planks", [ 6 ] = "minecraft:birch_planks", }, count = 1, @@ -6168,20 +6168,20 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:gray_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:gray_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, [ "minecraft:cut_copper" ] = { ingredients = { [ 1 ] = "minecraft:copper_block", - [ 4 ] = "minecraft:copper_block", - [ 3 ] = "minecraft:copper_block", + [ 6 ] = "minecraft:copper_block", + [ 5 ] = "minecraft:copper_block", [ 2 ] = "minecraft:copper_block", }, count = 4, @@ -6203,8 +6203,8 @@ [ "minecraft:deepslate_bricks" ] = { ingredients = { [ 1 ] = "minecraft:polished_deepslate", - [ 4 ] = "minecraft:polished_deepslate", - [ 3 ] = "minecraft:polished_deepslate", + [ 6 ] = "minecraft:polished_deepslate", + [ 5 ] = "minecraft:polished_deepslate", [ 2 ] = "minecraft:polished_deepslate", }, count = 4, @@ -6215,7 +6215,7 @@ [ 3 ] = "minecraft:red_sandstone", [ 2 ] = "minecraft:red_sandstone", [ 5 ] = "minecraft:red_sandstone", - [ 4 ] = "minecraft:red_sandstone", + [ 7 ] = "minecraft:red_sandstone", [ 6 ] = "minecraft:red_sandstone", }, count = 6, @@ -6224,9 +6224,9 @@ ingredients = { [ 1 ] = "minecraft:string", [ 2 ] = "minecraft:string", - [ 5 ] = "minecraft:slime_ball", - [ 4 ] = "minecraft:string", - [ 9 ] = "minecraft:string", + [ 5 ] = "minecraft:string", + [ 11 ] = "minecraft:string", + [ 6 ] = "minecraft:slime_ball", }, count = 2, }, @@ -6235,9 +6235,9 @@ [ 1 ] = "minecraft:nether_bricks", [ 3 ] = "minecraft:nether_bricks", [ 2 ] = "minecraft:nether_brick", - [ 5 ] = "minecraft:nether_brick", - [ 4 ] = "minecraft:nether_bricks", - [ 6 ] = "minecraft:nether_bricks", + [ 5 ] = "minecraft:nether_bricks", + [ 7 ] = "minecraft:nether_bricks", + [ 6 ] = "minecraft:nether_brick", }, count = 6, }, @@ -6247,11 +6247,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -6260,12 +6260,12 @@ [ 1 ] = "minecraft:white_carpet", [ 3 ] = "minecraft:white_carpet", [ 2 ] = "minecraft:white_carpet", - [ 5 ] = "minecraft:light_blue_dye", - [ 4 ] = "minecraft:white_carpet", + [ 5 ] = "minecraft:white_carpet", [ 7 ] = "minecraft:white_carpet", - [ 6 ] = "minecraft:white_carpet", + [ 6 ] = "minecraft:light_blue_dye", [ 9 ] = "minecraft:white_carpet", - [ 8 ] = "minecraft:white_carpet", + [ 11 ] = "minecraft:white_carpet", + [ 10 ] = "minecraft:white_carpet", }, count = 8, }, @@ -6278,11 +6278,11 @@ [ "minecraft:magenta_banner" ] = { ingredients = { [ 1 ] = "minecraft:magenta_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:magenta_wool", [ 2 ] = "minecraft:magenta_wool", [ 5 ] = "minecraft:magenta_wool", - [ 4 ] = "minecraft:magenta_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:magenta_wool", [ 6 ] = "minecraft:magenta_wool", }, count = 1, @@ -6308,7 +6308,7 @@ [ 3 ] = "minecraft:granite", [ 2 ] = "minecraft:granite", [ 5 ] = "minecraft:granite", - [ 4 ] = "minecraft:granite", + [ 7 ] = "minecraft:granite", [ 6 ] = "minecraft:granite", }, count = 6, @@ -6323,11 +6323,11 @@ [ "minecraft:lime_banner" ] = { ingredients = { [ 1 ] = "minecraft:lime_wool", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:lime_wool", [ 2 ] = "minecraft:lime_wool", [ 5 ] = "minecraft:lime_wool", - [ 4 ] = "minecraft:lime_wool", + [ 10 ] = "minecraft:stick", + [ 7 ] = "minecraft:lime_wool", [ 6 ] = "minecraft:lime_wool", }, count = 1, @@ -6344,7 +6344,7 @@ [ 3 ] = "minecraft:blackstone", [ 2 ] = "minecraft:blackstone", [ 5 ] = "minecraft:blackstone", - [ 4 ] = "minecraft:blackstone", + [ 7 ] = "minecraft:blackstone", [ 6 ] = "minecraft:blackstone", }, count = 6, @@ -6352,8 +6352,8 @@ [ "minecraft:clay" ] = { ingredients = { [ 1 ] = "minecraft:clay_ball", - [ 4 ] = "minecraft:clay_ball", - [ 3 ] = "minecraft:clay_ball", + [ 6 ] = "minecraft:clay_ball", + [ 5 ] = "minecraft:clay_ball", [ 2 ] = "minecraft:clay_ball", }, count = 1, @@ -6361,11 +6361,11 @@ [ "minecraft:mangrove_stairs" ] = { ingredients = { [ 1 ] = "minecraft:mangrove_planks", - [ 8 ] = "minecraft:mangrove_planks", - [ 5 ] = "minecraft:mangrove_planks", - [ 4 ] = "minecraft:mangrove_planks", - [ 7 ] = "minecraft:mangrove_planks", [ 9 ] = "minecraft:mangrove_planks", + [ 5 ] = "minecraft:mangrove_planks", + [ 10 ] = "minecraft:mangrove_planks", + [ 11 ] = "minecraft:mangrove_planks", + [ 6 ] = "minecraft:mangrove_planks", }, count = 4, }, @@ -6375,11 +6375,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -6389,11 +6389,11 @@ [ 3 ] = "minecraft:copper_ingot", [ 2 ] = "minecraft:copper_ingot", [ 5 ] = "minecraft:copper_ingot", - [ 4 ] = "minecraft:copper_ingot", [ 7 ] = "minecraft:copper_ingot", [ 6 ] = "minecraft:copper_ingot", [ 9 ] = "minecraft:copper_ingot", - [ 8 ] = "minecraft:copper_ingot", + [ 11 ] = "minecraft:copper_ingot", + [ 10 ] = "minecraft:copper_ingot", }, count = 1, }, @@ -6403,17 +6403,17 @@ [ 3 ] = "minecraft:lapis_lazuli", [ 2 ] = "minecraft:lapis_lazuli", [ 5 ] = "minecraft:lapis_lazuli", - [ 4 ] = "minecraft:lapis_lazuli", [ 7 ] = "minecraft:lapis_lazuli", [ 6 ] = "minecraft:lapis_lazuli", [ 9 ] = "minecraft:lapis_lazuli", - [ 8 ] = "minecraft:lapis_lazuli", + [ 11 ] = "minecraft:lapis_lazuli", + [ 10 ] = "minecraft:lapis_lazuli", }, count = 1, }, [ "minecraft:shears" ] = { ingredients = { - [ 3 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", }, count = 1, @@ -6423,12 +6423,12 @@ [ 1 ] = "minecraft:glass_pane", [ 3 ] = "minecraft:glass_pane", [ 2 ] = "minecraft:glass_pane", - [ 5 ] = "minecraft:purple_dye", - [ 4 ] = "minecraft:glass_pane", + [ 5 ] = "minecraft:glass_pane", [ 7 ] = "minecraft:glass_pane", - [ 6 ] = "minecraft:glass_pane", + [ 6 ] = "minecraft:purple_dye", [ 9 ] = "minecraft:glass_pane", - [ 8 ] = "minecraft:glass_pane", + [ 11 ] = "minecraft:glass_pane", + [ 10 ] = "minecraft:glass_pane", }, count = 8, }, @@ -6442,10 +6442,10 @@ [ "minecraft:fletching_table" ] = { ingredients = { [ 1 ] = "minecraft:flint", - [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:flint", [ 5 ] = "minecraft:oak_planks", - [ 4 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", + [ 9 ] = "minecraft:oak_planks", [ 6 ] = "minecraft:oak_planks", }, count = 1, @@ -6455,12 +6455,12 @@ [ 1 ] = "minecraft:obsidian", [ 3 ] = "minecraft:obsidian", [ 2 ] = "minecraft:obsidian", - [ 5 ] = "minecraft:ender_eye", - [ 4 ] = "minecraft:obsidian", + [ 5 ] = "minecraft:obsidian", [ 7 ] = "minecraft:obsidian", - [ 6 ] = "minecraft:obsidian", + [ 6 ] = "minecraft:ender_eye", [ 9 ] = "minecraft:obsidian", - [ 8 ] = "minecraft:obsidian", + [ 11 ] = "minecraft:obsidian", + [ 10 ] = "minecraft:obsidian", }, count = 1, }, @@ -6483,11 +6483,11 @@ [ 3 ] = "minecraft:sand", [ 2 ] = "minecraft:sand", [ 5 ] = "minecraft:sand", - [ 4 ] = "minecraft:sand", [ 7 ] = "minecraft:gravel", - [ 6 ] = "minecraft:gravel", + [ 6 ] = "minecraft:sand", [ 9 ] = "minecraft:gravel", - [ 8 ] = "minecraft:gravel", + [ 11 ] = "minecraft:gravel", + [ 10 ] = "minecraft:gravel", }, count = 8, }, @@ -6497,22 +6497,22 @@ [ 3 ] = "minecraft:disc_fragment_5", [ 2 ] = "minecraft:disc_fragment_5", [ 5 ] = "minecraft:disc_fragment_5", - [ 4 ] = "minecraft:disc_fragment_5", [ 7 ] = "minecraft:disc_fragment_5", [ 6 ] = "minecraft:disc_fragment_5", [ 9 ] = "minecraft:disc_fragment_5", - [ 8 ] = "minecraft:disc_fragment_5", + [ 11 ] = "minecraft:disc_fragment_5", + [ 10 ] = "minecraft:disc_fragment_5", }, count = 1, }, [ "minecraft:birch_stairs" ] = { ingredients = { [ 1 ] = "minecraft:birch_planks", - [ 8 ] = "minecraft:birch_planks", - [ 5 ] = "minecraft:birch_planks", - [ 4 ] = "minecraft:birch_planks", - [ 7 ] = "minecraft:birch_planks", [ 9 ] = "minecraft:birch_planks", + [ 5 ] = "minecraft:birch_planks", + [ 10 ] = "minecraft:birch_planks", + [ 11 ] = "minecraft:birch_planks", + [ 6 ] = "minecraft:birch_planks", }, count = 4, }, @@ -6522,56 +6522,56 @@ [ 3 ] = "minecraft:oak_planks", [ 2 ] = "minecraft:oak_planks", [ 5 ] = "minecraft:honeycomb", - [ 4 ] = "minecraft:honeycomb", - [ 7 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:honeycomb", [ 6 ] = "minecraft:honeycomb", [ 9 ] = "minecraft:oak_planks", - [ 8 ] = "minecraft:oak_planks", + [ 11 ] = "minecraft:oak_planks", + [ 10 ] = "minecraft:oak_planks", }, count = 1, }, [ "minecraft:lightning_rod" ] = { ingredients = { + [ 5 ] = "minecraft:copper_ingot", + [ 9 ] = "minecraft:copper_ingot", [ 1 ] = "minecraft:copper_ingot", - [ 3 ] = "minecraft:copper_ingot", - [ 2 ] = "minecraft:copper_ingot", }, count = 1, }, [ "minecraft:acacia_stairs" ] = { ingredients = { [ 1 ] = "minecraft:acacia_planks", - [ 8 ] = "minecraft:acacia_planks", - [ 5 ] = "minecraft:acacia_planks", - [ 4 ] = "minecraft:acacia_planks", - [ 7 ] = "minecraft:acacia_planks", [ 9 ] = "minecraft:acacia_planks", + [ 5 ] = "minecraft:acacia_planks", + [ 10 ] = "minecraft:acacia_planks", + [ 11 ] = "minecraft:acacia_planks", + [ 6 ] = "minecraft:acacia_planks", }, count = 4, }, [ "minecraft:chiseled_deepslate" ] = { ingredients = { [ 1 ] = "minecraft:cobbled_deepslate_slab", - [ 2 ] = "minecraft:cobbled_deepslate_slab", + [ 5 ] = "minecraft:cobbled_deepslate_slab", }, count = 1, }, [ "minecraft:iron_pickaxe" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 8 ] = "minecraft:stick", [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", - [ 5 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", + [ 6 ] = "minecraft:stick", }, count = 1, }, [ "minecraft:iron_boots" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:iron_ingot", + [ 7 ] = "minecraft:iron_ingot", [ 3 ] = "minecraft:iron_ingot", - [ 6 ] = "minecraft:iron_ingot", + [ 5 ] = "minecraft:iron_ingot", }, count = 1, }, @@ -6580,21 +6580,21 @@ [ 1 ] = "minecraft:terracotta", [ 3 ] = "minecraft:terracotta", [ 2 ] = "minecraft:terracotta", - [ 5 ] = "minecraft:brown_dye", - [ 4 ] = "minecraft:terracotta", + [ 5 ] = "minecraft:terracotta", [ 7 ] = "minecraft:terracotta", - [ 6 ] = "minecraft:terracotta", + [ 6 ] = "minecraft:brown_dye", [ 9 ] = "minecraft:terracotta", - [ 8 ] = "minecraft:terracotta", + [ 11 ] = "minecraft:terracotta", + [ 10 ] = "minecraft:terracotta", }, count = 8, }, [ "minecraft:iron_axe" ] = { ingredients = { [ 1 ] = "minecraft:iron_ingot", - [ 3 ] = "minecraft:iron_ingot", [ 2 ] = "minecraft:iron_ingot", - [ 4 ] = "minecraft:stick", + [ 5 ] = "minecraft:iron_ingot", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", }, count = 1, @@ -6604,19 +6604,19 @@ [ 1 ] = "minecraft:nautilus_shell", [ 3 ] = "minecraft:nautilus_shell", [ 2 ] = "minecraft:nautilus_shell", - [ 5 ] = "minecraft:heart_of_the_sea", - [ 4 ] = "minecraft:nautilus_shell", + [ 5 ] = "minecraft:nautilus_shell", [ 7 ] = "minecraft:nautilus_shell", - [ 6 ] = "minecraft:nautilus_shell", + [ 6 ] = "minecraft:heart_of_the_sea", [ 9 ] = "minecraft:nautilus_shell", - [ 8 ] = "minecraft:nautilus_shell", + [ 11 ] = "minecraft:nautilus_shell", + [ 10 ] = "minecraft:nautilus_shell", }, count = 1, }, [ "minecraft:stone_hoe" ] = { ingredients = { [ 1 ] = "minecraft:cobblestone", - [ 4 ] = "minecraft:stick", + [ 10 ] = "minecraft:stick", [ 6 ] = "minecraft:stick", [ 2 ] = "minecraft:cobblestone", }, @@ -6627,8 +6627,8 @@ [ 1 ] = "minecraft:stick", [ 3 ] = "minecraft:stick", [ 2 ] = "minecraft:stone_slab", - [ 4 ] = "minecraft:oak_planks", - [ 6 ] = "minecraft:oak_planks", + [ 5 ] = "minecraft:oak_planks", + [ 7 ] = "minecraft:oak_planks", }, count = 1, }, @@ -6653,12 +6653,12 @@ [ 1 ] = "minecraft:gold_ingot", [ 3 ] = "minecraft:gold_ingot", [ 2 ] = "minecraft:gold_ingot", - [ 5 ] = "minecraft:apple", - [ 4 ] = "minecraft:gold_ingot", + [ 5 ] = "minecraft:gold_ingot", [ 7 ] = "minecraft:gold_ingot", - [ 6 ] = "minecraft:gold_ingot", + [ 6 ] = "minecraft:apple", [ 9 ] = "minecraft:gold_ingot", - [ 8 ] = "minecraft:gold_ingot", + [ 11 ] = "minecraft:gold_ingot", + [ 10 ] = "minecraft:gold_ingot", }, count = 1, }, @@ -6688,7 +6688,7 @@ [ 3 ] = "minecraft:glass", [ 2 ] = "minecraft:glass", [ 5 ] = "minecraft:glass", - [ 4 ] = "minecraft:glass", + [ 7 ] = "minecraft:glass", [ 6 ] = "minecraft:glass", }, count = 16, @@ -6696,8 +6696,8 @@ [ "minecraft:birch_wood" ] = { ingredients = { [ 1 ] = "minecraft:birch_log", - [ 4 ] = "minecraft:birch_log", - [ 3 ] = "minecraft:birch_log", + [ 6 ] = "minecraft:birch_log", + [ 5 ] = "minecraft:birch_log", [ 2 ] = "minecraft:birch_log", }, count = 3, -- 2.49.1 From 1ae380d3b1f4a7ab0baf263db69e2e55fa7c11bc Mon Sep 17 00:00:00 2001 From: rspx Date: Thu, 26 Jan 2023 22:27:55 +0100 Subject: [PATCH 18/26] Fixed some corrupted recipes --- recipeBook/etc/recipes/minecraft.db | 168 +++++++--------------------- 1 file changed, 42 insertions(+), 126 deletions(-) diff --git a/recipeBook/etc/recipes/minecraft.db b/recipeBook/etc/recipes/minecraft.db index f74da3b..47ab684 100644 --- a/recipeBook/etc/recipes/minecraft.db +++ b/recipeBook/etc/recipes/minecraft.db @@ -598,24 +598,12 @@ }, [ "minecraft:purpur_stairs" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:purpur_block", - }, - [ 9 ] = { - item = "minecraft:purpur_block", - }, - [ 5 ] = { - item = "minecraft:purpur_block", - }, - [ 10 ] = { - item = "minecraft:purpur_block", - }, - [ 11 ] = { - item = "minecraft:purpur_block", - }, - [ 6 ] = { - item = "minecraft:purpur_block", - }, + [ 1 ] = "minecraft:purpur_block", + [ 9 ] = "minecraft:purpur_block", + [ 5 ] = "minecraft:purpur_block", + [ 10 ] = "minecraft:purpur_block", + [ 11 ] = "minecraft:purpur_block", + [ 6 ] = "minecraft:purpur_block", }, count = 4, }, @@ -1004,15 +992,9 @@ }, [ "minecraft:purpur_slab" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:purpur_block", - }, - [ 3 ] = { - item = "minecraft:purpur_block", - }, - [ 2 ] = { - item = "minecraft:purpur_block", - }, + [ 1 ] = "minecraft:purpur_block", + [ 3 ] = "minecraft:purpur_block", + [ 2 ] = "minecraft:purpur_block", }, count = 6, }, @@ -1345,15 +1327,9 @@ }, [ "minecraft:sandstone_slab" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:sandstone", - }, - [ 3 ] = { - item = "minecraft:sandstone", - }, - [ 2 ] = { - item = "minecraft:sandstone", - }, + [ 1 ] = "minecraft:sandstone", + [ 3 ] = "minecraft:sandstone", + [ 2 ] = "minecraft:sandstone", }, count = 6, }, @@ -1596,9 +1572,7 @@ ingredients = { [ 5 ] = "minecraft:stick", [ 9 ] = "minecraft:soul_sand", - [ 1 ] = { - item = "minecraft:coal", - }, + [ 1 ] = "minecraft:coal", }, count = 4, }, @@ -1815,24 +1789,12 @@ }, [ "minecraft:sandstone_stairs" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:sandstone", - }, - [ 9 ] = { - item = "minecraft:sandstone", - }, - [ 5 ] = { - item = "minecraft:sandstone", - }, - [ 10 ] = { - item = "minecraft:sandstone", - }, - [ 11 ] = { - item = "minecraft:sandstone", - }, - [ 6 ] = { - item = "minecraft:sandstone", - }, + [ 1 ] = "minecraft:sandstone", + [ 9 ] = "minecraft:sandstone", + [ 5 ] = "minecraft:sandstone", + [ 10 ] = "minecraft:sandstone", + [ 11 ] = "minecraft:sandstone", + [ 6 ] = "minecraft:sandstone", }, count = 4, }, @@ -4066,9 +4028,7 @@ }, [ "minecraft:torch" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:coal", - }, + [ 1 ] = "minecraft:coal", [ 5 ] = "minecraft:stick", }, count = 4, @@ -4853,15 +4813,9 @@ }, [ "minecraft:red_sandstone_slab" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:red_sandstone", - }, - [ 3 ] = { - item = "minecraft:red_sandstone", - }, - [ 2 ] = { - item = "minecraft:red_sandstone", - }, + [ 1 ] = "minecraft:red_sandstone", + [ 3 ] = "minecraft:red_sandstone", + [ 2 ] = "minecraft:red_sandstone", }, count = 6, }, @@ -5138,24 +5092,12 @@ }, [ "minecraft:quartz_stairs" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:chiseled_quartz_block", - }, - [ 9 ] = { - item = "minecraft:chiseled_quartz_block", - }, - [ 5 ] = { - item = "minecraft:chiseled_quartz_block", - }, - [ 10 ] = { - item = "minecraft:chiseled_quartz_block", - }, - [ 11 ] = { - item = "minecraft:chiseled_quartz_block", - }, - [ 6 ] = { - item = "minecraft:chiseled_quartz_block", - }, + [ 1 ] = "minecraft:chiseled_quartz_block", + [ 9 ] = "minecraft:chiseled_quartz_block", + [ 5 ] = "minecraft:chiseled_quartz_block", + [ 10 ] = "minecraft:chiseled_quartz_block", + [ 11 ] = "minecraft:chiseled_quartz_block", + [ 6 ] = "minecraft:chiseled_quartz_block", }, count = 4, }, @@ -5745,21 +5687,13 @@ ingredients = { [ 1 ] = "minecraft:gunpowder", [ 3 ] = "minecraft:gunpowder", - [ 2 ] = { - item = "minecraft:sand", - }, - [ 5 ] = { - item = "minecraft:sand", - }, - [ 7 ] = { - item = "minecraft:sand", - }, + [ 2 ] = "minecraft:sand", + [ 5 ] = "minecraft:sand", + [ 7 ] = "minecraft:sand", [ 6 ] = "minecraft:gunpowder", [ 9 ] = "minecraft:gunpowder", [ 11 ] = "minecraft:gunpowder", - [ 10 ] = { - item = "minecraft:sand", - }, + [ 10 ] = "minecraft:sand", }, count = 1, }, @@ -5911,15 +5845,9 @@ }, [ "minecraft:quartz_slab" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:chiseled_quartz_block", - }, - [ 3 ] = { - item = "minecraft:chiseled_quartz_block", - }, - [ 2 ] = { - item = "minecraft:chiseled_quartz_block", - }, + [ 1 ] = "minecraft:chiseled_quartz_block", + [ 3 ] = "minecraft:chiseled_quartz_block", + [ 2 ] = "minecraft:chiseled_quartz_block", }, count = 6, }, @@ -6069,24 +5997,12 @@ }, [ "minecraft:red_sandstone_stairs" ] = { ingredients = { - [ 1 ] = { - item = "minecraft:red_sandstone", - }, - [ 9 ] = { - item = "minecraft:red_sandstone", - }, - [ 5 ] = { - item = "minecraft:red_sandstone", - }, - [ 10 ] = { - item = "minecraft:red_sandstone", - }, - [ 11 ] = { - item = "minecraft:red_sandstone", - }, - [ 6 ] = { - item = "minecraft:red_sandstone", - }, + [ 1 ] = "minecraft:red_sandstone", + [ 9 ] = "minecraft:red_sandstone", + [ 5 ] = "minecraft:red_sandstone", + [ 10 ] = "minecraft:red_sandstone", + [ 11 ] = "minecraft:red_sandstone", + [ 6 ] = "minecraft:red_sandstone", }, count = 4, }, -- 2.49.1 From 4321f336db24a0c6339780d7387c1a2d4e44310e Mon Sep 17 00:00:00 2001 From: Marcelsky <62389326+MarcelskyXD@users.noreply.github.com> Date: Sat, 25 Mar 2023 14:50:42 +0100 Subject: [PATCH 19/26] Replace getItemMeta with getItemDetail --- milo/plugins/remote/autostore.lua | 4 ++-- milo/plugins/remote/depositAll.lua | 4 ++-- milo/plugins/remote/feeder.lua | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/milo/plugins/remote/autostore.lua b/milo/plugins/remote/autostore.lua index e7315f2..875d555 100644 --- a/milo/plugins/remote/autostore.lua +++ b/milo/plugins/remote/autostore.lua @@ -58,7 +58,7 @@ function page.tabs.inventory:enable() local list = { } for k, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemMeta(k) end) + item = itemDB:get(item, function() return ni.getInventory().getItemDetail(k) end) local key = makeKey(item) if not list[key] then item.key = key @@ -129,7 +129,7 @@ Event.onInterval(5, function() pcall(function() -- prevent errors from some mod items for slot,v in pairs(ni.getInventory().list()) do - local item = itemDB:get(v, function() ni.getInventory().getItemMeta(slot) end) + local item = itemDB:get(v, function() ni.getInventory().getItemDetail(slot) end) if item then if context.state.autostore[makeKey(item)] then context:sendRequest({ diff --git a/milo/plugins/remote/depositAll.lua b/milo/plugins/remote/depositAll.lua index e3fcba4..8b87d36 100644 --- a/milo/plugins/remote/depositAll.lua +++ b/milo/plugins/remote/depositAll.lua @@ -53,7 +53,7 @@ function page:updateInventoryList() for slot, item in pairs(inv) do if (context.state.depositAll.includeHotbar or slot > 9) and item.name ~= 'plethora:neuralconnector' then - item = itemDB:get(item, function() return ni.getInventory().getItemMeta(slot) end) + item = itemDB:get(item, function() return ni.getInventory().getItemDetail(slot) end) local key = makeKey(item) if not list[key] then item.displayName = item.displayName:match('(.+) %(damage:.+%)') or item.displayName @@ -89,7 +89,7 @@ function page:depositAll() local inv = ni.getInventory().list() for slot, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemMeta(slot) end) + item = itemDB:get(item, function() return ni.getInventory().getItemDetail(slot) end) local key = makeKey(item) if not context.state.depositAll.retain[key] then if (context.state.depositAll.includeHotbar or slot > 9) and item.name ~= 'plethora:neuralconnector' then diff --git a/milo/plugins/remote/feeder.lua b/milo/plugins/remote/feeder.lua index 36ed597..05eb71e 100644 --- a/milo/plugins/remote/feeder.lua +++ b/milo/plugins/remote/feeder.lua @@ -33,7 +33,7 @@ function page:enable() local list = { } for k, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemMeta(k) end) + item = itemDB:get(item, function() return ni.getInventory().getItemDetail(k) end) local key = itemDB:makeKey(item) if not list[key] then item.key = key -- 2.49.1 From 43e662e68cf3c33f0a963f4a90c170eea7af4d9c Mon Sep 17 00:00:00 2001 From: rspx Date: Sat, 25 Mar 2023 17:35:56 +0100 Subject: [PATCH 20/26] Revert "Merge pull request #1 from MarcelskyXD/develop-1.8" This reverts commit f7ac0b1674ee7558578a3c127a4f252dc159eeac, reversing changes made to a76c59fb361732b111ee3d7965d61372c1c33da8. --- milo/plugins/remote/autostore.lua | 4 ++-- milo/plugins/remote/depositAll.lua | 4 ++-- milo/plugins/remote/feeder.lua | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/milo/plugins/remote/autostore.lua b/milo/plugins/remote/autostore.lua index 875d555..e7315f2 100644 --- a/milo/plugins/remote/autostore.lua +++ b/milo/plugins/remote/autostore.lua @@ -58,7 +58,7 @@ function page.tabs.inventory:enable() local list = { } for k, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemDetail(k) end) + item = itemDB:get(item, function() return ni.getInventory().getItemMeta(k) end) local key = makeKey(item) if not list[key] then item.key = key @@ -129,7 +129,7 @@ Event.onInterval(5, function() pcall(function() -- prevent errors from some mod items for slot,v in pairs(ni.getInventory().list()) do - local item = itemDB:get(v, function() ni.getInventory().getItemDetail(slot) end) + local item = itemDB:get(v, function() ni.getInventory().getItemMeta(slot) end) if item then if context.state.autostore[makeKey(item)] then context:sendRequest({ diff --git a/milo/plugins/remote/depositAll.lua b/milo/plugins/remote/depositAll.lua index 8b87d36..e3fcba4 100644 --- a/milo/plugins/remote/depositAll.lua +++ b/milo/plugins/remote/depositAll.lua @@ -53,7 +53,7 @@ function page:updateInventoryList() for slot, item in pairs(inv) do if (context.state.depositAll.includeHotbar or slot > 9) and item.name ~= 'plethora:neuralconnector' then - item = itemDB:get(item, function() return ni.getInventory().getItemDetail(slot) end) + item = itemDB:get(item, function() return ni.getInventory().getItemMeta(slot) end) local key = makeKey(item) if not list[key] then item.displayName = item.displayName:match('(.+) %(damage:.+%)') or item.displayName @@ -89,7 +89,7 @@ function page:depositAll() local inv = ni.getInventory().list() for slot, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemDetail(slot) end) + item = itemDB:get(item, function() return ni.getInventory().getItemMeta(slot) end) local key = makeKey(item) if not context.state.depositAll.retain[key] then if (context.state.depositAll.includeHotbar or slot > 9) and item.name ~= 'plethora:neuralconnector' then diff --git a/milo/plugins/remote/feeder.lua b/milo/plugins/remote/feeder.lua index 05eb71e..36ed597 100644 --- a/milo/plugins/remote/feeder.lua +++ b/milo/plugins/remote/feeder.lua @@ -33,7 +33,7 @@ function page:enable() local list = { } for k, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemDetail(k) end) + item = itemDB:get(item, function() return ni.getInventory().getItemMeta(k) end) local key = itemDB:makeKey(item) if not list[key] then item.key = key -- 2.49.1 From 488576e0df56902523d7135559f08d64dfd81c35 Mon Sep 17 00:00:00 2001 From: rspx Date: Sat, 25 Mar 2023 17:41:52 +0100 Subject: [PATCH 21/26] Revert "Revert "Merge pull request #1 from MarcelskyXD/develop-1.8"" This reverts commit c185cffa227af8116fcfc0f0d920e62e2f98d2b8. --- milo/plugins/remote/autostore.lua | 4 ++-- milo/plugins/remote/depositAll.lua | 4 ++-- milo/plugins/remote/feeder.lua | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/milo/plugins/remote/autostore.lua b/milo/plugins/remote/autostore.lua index e7315f2..875d555 100644 --- a/milo/plugins/remote/autostore.lua +++ b/milo/plugins/remote/autostore.lua @@ -58,7 +58,7 @@ function page.tabs.inventory:enable() local list = { } for k, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemMeta(k) end) + item = itemDB:get(item, function() return ni.getInventory().getItemDetail(k) end) local key = makeKey(item) if not list[key] then item.key = key @@ -129,7 +129,7 @@ Event.onInterval(5, function() pcall(function() -- prevent errors from some mod items for slot,v in pairs(ni.getInventory().list()) do - local item = itemDB:get(v, function() ni.getInventory().getItemMeta(slot) end) + local item = itemDB:get(v, function() ni.getInventory().getItemDetail(slot) end) if item then if context.state.autostore[makeKey(item)] then context:sendRequest({ diff --git a/milo/plugins/remote/depositAll.lua b/milo/plugins/remote/depositAll.lua index e3fcba4..8b87d36 100644 --- a/milo/plugins/remote/depositAll.lua +++ b/milo/plugins/remote/depositAll.lua @@ -53,7 +53,7 @@ function page:updateInventoryList() for slot, item in pairs(inv) do if (context.state.depositAll.includeHotbar or slot > 9) and item.name ~= 'plethora:neuralconnector' then - item = itemDB:get(item, function() return ni.getInventory().getItemMeta(slot) end) + item = itemDB:get(item, function() return ni.getInventory().getItemDetail(slot) end) local key = makeKey(item) if not list[key] then item.displayName = item.displayName:match('(.+) %(damage:.+%)') or item.displayName @@ -89,7 +89,7 @@ function page:depositAll() local inv = ni.getInventory().list() for slot, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemMeta(slot) end) + item = itemDB:get(item, function() return ni.getInventory().getItemDetail(slot) end) local key = makeKey(item) if not context.state.depositAll.retain[key] then if (context.state.depositAll.includeHotbar or slot > 9) and item.name ~= 'plethora:neuralconnector' then diff --git a/milo/plugins/remote/feeder.lua b/milo/plugins/remote/feeder.lua index 36ed597..05eb71e 100644 --- a/milo/plugins/remote/feeder.lua +++ b/milo/plugins/remote/feeder.lua @@ -33,7 +33,7 @@ function page:enable() local list = { } for k, item in pairs(inv) do - item = itemDB:get(item, function() return ni.getInventory().getItemMeta(k) end) + item = itemDB:get(item, function() return ni.getInventory().getItemDetail(k) end) local key = itemDB:makeKey(item) if not list[key] then item.key = key -- 2.49.1 From aef1bfa18697fb63c9328509e54a76af6cb80696 Mon Sep 17 00:00:00 2001 From: rspx Date: Sat, 25 Mar 2023 18:00:15 +0100 Subject: [PATCH 22/26] Remote fix Fixed itmes with nbt crashing milo --- milo/MiloRemote.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/milo/MiloRemote.lua b/milo/MiloRemote.lua index 196476d..b3d0f25 100644 --- a/milo/MiloRemote.lua +++ b/milo/MiloRemote.lua @@ -299,7 +299,6 @@ function page:expandList(list) item.count = tonumber(item.count) or 0 item.lname = item.displayName:lower() item.has_recipe = item.has_recipe == '1' - item.name = k t[k] = item end return t -- 2.49.1 From a9202a70347cc3e157017c4e166b57596f102418 Mon Sep 17 00:00:00 2001 From: rspx Date: Sun, 26 Mar 2023 15:11:23 +0200 Subject: [PATCH 23/26] Fixed auto-feeder --- milo/plugins/remote/feeder.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/milo/plugins/remote/feeder.lua b/milo/plugins/remote/feeder.lua index 05eb71e..f4ff79b 100644 --- a/milo/plugins/remote/feeder.lua +++ b/milo/plugins/remote/feeder.lua @@ -58,9 +58,9 @@ local function getFood(food) for slot,v in pairs(ni.getInventory().list()) do local key = itemDB:makeKey(v) if key == food then - local item = ni.getInventory().getItem(slot) - if item and item.consume then - return item + local item = ni.getInventory().getItemDetail(slot) + if item and item.saturation then + return slot end break end @@ -87,7 +87,7 @@ Event.onInterval(5, function() if context.state.food and ni.getMetaOwner().food.hungry then local item = getFood(context.state.food) if item then - item.consume() + ni.getInventory().consume(item) end end end) @@ -101,4 +101,4 @@ return { callback = function() UI:setPage(page) end, -} +} \ No newline at end of file -- 2.49.1 From f22cad16443a596eb7e6921b38a139a70f464ad4 Mon Sep 17 00:00:00 2001 From: rspx Date: Mon, 17 Apr 2023 18:30:46 +0200 Subject: [PATCH 24/26] Update recipeBook.db --- recipeBook/etc/recipeBook.db | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/recipeBook/etc/recipeBook.db b/recipeBook/etc/recipeBook.db index 3e1b613..d24b23e 100644 --- a/recipeBook/etc/recipeBook.db +++ b/recipeBook/etc/recipeBook.db @@ -1,8 +1,8 @@ { { - url = "https://raw.githubusercontent.com/kepler155c/opus-recipes/master/switchcraft", - version = "MC 1.12", - localName = "switchcraft", - name = "Switchcraft Server", + url = "https://raw.githubusercontent.com/iuzx0/opus-recipes/main/sc-goodies", + version = "MC 1.19.4", + localName = "sc-goodies", + name = "SwitchCraft Goodies mod", }, } \ No newline at end of file -- 2.49.1 From c0ffb90ba64219580623c61aa7d2f6d58f6134e7 Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Sat, 16 Sep 2023 13:46:22 -0400 Subject: [PATCH 25/26] fix craft --- milo/apis/craft2.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/milo/apis/craft2.lua b/milo/apis/craft2.lua index 4b5bfe2..61901ef 100644 --- a/milo/apis/craft2.lua +++ b/milo/apis/craft2.lua @@ -23,6 +23,7 @@ local function splitKey(key) if t[3] then item.nbt = t[3] + t[3] = nil end item.name = table.concat(t, ':') -- 2.49.1 From 1ee2751cbbee3550fd70994fd14d491ed75e188a Mon Sep 17 00:00:00 2001 From: Kan18 <24967425+Kan18@users.noreply.github.com> Date: Sat, 16 Sep 2023 13:46:49 -0400 Subject: [PATCH 26/26] fix potion --- milo/plugins/potionImportTask.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milo/plugins/potionImportTask.lua b/milo/plugins/potionImportTask.lua index e747a17..7f67e70 100644 --- a/milo/plugins/potionImportTask.lua +++ b/milo/plugins/potionImportTask.lua @@ -2,7 +2,7 @@ local Craft = require('milo.craft2') local itemDB = require('core.itemDB') local Milo = require('milo') -local BLAZE_POWDER = "minecraft:blaze_powder:0" +local BLAZE_POWDER = "minecraft:blaze_powder" local PotionImportTask = { name = 'potions', -- 2.49.1