diff --git a/apis/chestAdapter.lua b/apis/chestAdapter.lua index 34b9ad4..189ef59 100644 --- a/apis/chestAdapter.lua +++ b/apis/chestAdapter.lua @@ -147,18 +147,6 @@ function ChestAdapter:provide(item, qty, slot, direction) end) end -function ChestAdapter:eject(item, qty, direction) - if not _G.turtle then - error('Only a turtle can eject') - end - - local s, m = pcall(function() - self:provide(item, qty) - _G.turtle.emptyInventory() - end) - return s, m -end - function ChestAdapter:extract(slot, qty, toSlot) if toSlot then self.pushItemIntoSlot(self.direction, slot, qty, toSlot) diff --git a/apis/chestAdapter18.lua b/apis/chestAdapter18.lua index a19a6d1..99e010f 100644 --- a/apis/chestAdapter18.lua +++ b/apis/chestAdapter18.lua @@ -146,32 +146,6 @@ function ChestAdapter:provide(item, qty, slot, direction) return s, m end -function ChestAdapter:eject(item, qty, direction) - - -- fix - direction = self.getMetadata().state.facing - - local s, m = pcall(function() - local stacks = self.list() - local maxStack = itemDB:getMaxCount(item) - for key,stack in Util.rpairs(stacks) do - if stack.name == item.name and - (not item.damage or stack.damage == item.damage) and - (not item.nbtHash or stack.nbtHash == item.nbtHash) then - local amount = math.min(maxStack, math.min(qty, stack.count)) - if amount > 0 then - self.drop(key, amount, direction) - end - qty = qty - amount - if qty <= 0 then - break - end - end - end - end) - return s, m -end - function ChestAdapter:extract(slot, qty, toSlot) self.pushItems(self.direction, slot, qty, toSlot) end diff --git a/apis/inventoryAdapter.lua b/apis/inventoryAdapter.lua index c5d65ae..c57ff49 100644 --- a/apis/inventoryAdapter.lua +++ b/apis/inventoryAdapter.lua @@ -2,7 +2,7 @@ local Adapter = { } function Adapter.wrap(args) local adapters = { - --'refinedAdapter', + 'refinedAdapter', 'chestAdapter18', -- adapters for version 1.7 diff --git a/apis/meAdapter.lua b/apis/meAdapter.lua index f7e0b91..35cb0a9 100644 --- a/apis/meAdapter.lua +++ b/apis/meAdapter.lua @@ -202,28 +202,6 @@ function MEAdapter:isCrafting(item) end end -function MEAdapter:craftItems(items) - local cpus = self.getCraftingCPUs() or { } - local count = 0 - - for _,cpu in pairs(cpus) do - if cpu.busy then - return - end - end - - for _,item in pairs(items) do - if count >= #cpus then - break - end - if not self:isCrafting(item) then - if self:craft(item, item.count) then - count = count + 1 - end - end - end -end - function MEAdapter:provide(item, qty, slot, direction) return pcall(function() for _,stack in pairs(self.getAvailableItems('all')) do @@ -243,18 +221,6 @@ function MEAdapter:provide(item, qty, slot, direction) end) end -function MEAdapter:eject(item, qty, direction) - if not _G.turtle then - error('Only a turtle can eject') - end - - local s, m = pcall(function() - self:provide(item, qty) - _G.turtle.emptyInventory() - end) - return s, m -end - function MEAdapter:insert(slot, count) local s, m = pcall(function() self.pullItem(self.direction, slot, count) end) if not s and m then diff --git a/apis/refinedAdapter.lua b/apis/refinedAdapter.lua index 1611f3f..da38a41 100644 --- a/apis/refinedAdapter.lua +++ b/apis/refinedAdapter.lua @@ -1,35 +1,23 @@ local class = require('class') -local Util = require('util') -local Peripheral = require('peripheral') local itemDB = require('itemDB') +local Peripheral = require('peripheral') +local Util = require('util') local RefinedAdapter = class() -local keys = { - 'damage', - 'displayName', - 'maxCount', - 'maxDamage', - 'name', - 'nbtHash', -} - function RefinedAdapter:init(args) local defaults = { - items = { }, name = 'refinedStorage', - direction = 'up', - wrapSide = 'bottom', } Util.merge(self, defaults) Util.merge(self, args) local controller - if self.autoDetect then + if not self.side then controller = Peripheral.getByType('refinedstorage:controller') else - controller = Peripheral.getBySide(self.wrapSide) - if controller and not controller.listAvailableItems then + controller = Peripheral.getBySide(self.side) + if controller and not controller.getCraftingTasks then controller = nil end end @@ -43,72 +31,69 @@ function RefinedAdapter:isValid() return not not self.listAvailableItems end -function RefinedAdapter:isOnline() - return self.getNetworkEnergyStored() > 0 +function RefinedAdapter:getItemDetails(item) + local detail = self.findItems(item) + if detail and #detail > 0 then + return detail[1].getMetadata() + end end function RefinedAdapter:getCachedItemDetails(item) - local detail = itemDB:get(item) - if not detail then - detail = self.findItem(item) - if detail then - local meta - pcall(function() meta = detail.getMetadata() end) - if not meta then - return - end - Util.merge(detail, meta) - - local t = { } - for _,k in pairs(keys) do - t[k] = detail[k] - end - - detail = t - itemDB:add(detail) - end + local cached = itemDB:get(item) + if cached then + return cached end + + local detail = self:getItemDetails(item) if detail then - return Util.shallowCopy(detail) + return itemDB:add(detail) end end -function RefinedAdapter:listItems() +function RefinedAdapter:refresh(throttle) + return self:listItems(throttle) +end + +function RefinedAdapter:listItems(throttle) local items = { } - local list + throttle = throttle or Util.throttle() - pcall(function() - list = self.listAvailableItems() - end) - - if list then - - local throttle = Util.throttle() - - for _,v in pairs(list) do - local item = self:getCachedItemDetails(v) - if item then - item.count = v.count - table.insert(items, item) - end + local s, m = pcall(function() + for _,v in pairs(self.listAvailableItems()) do + --if v.count > 0 then + local item = self:getCachedItemDetails(v) + if item then + item = Util.shallowCopy(item) + item.count = v.count + table.insert(items, item) + end + --end throttle() end - itemDB:flush() + end) + + if not s and m then + debug(m) end - return items + itemDB:flush() + if not Util.empty(items) then + return items + end end -function RefinedAdapter:getItemInfo(fingerprint) - local item = itemDB:get(fingerprint) - if not item then - return self:getCachedItemDetails(fingerprint) - end +function RefinedAdapter:getItemInfo(item) + return self:getItemDetails(item) +end +function RefinedAdapter:isCPUAvailable() + return true +end + +function RefinedAdapter:craft(item, qty) local detail = self.findItem(item) if detail then - item.count = detail.count - return item + return detail.craft(qty) end end @@ -124,26 +109,29 @@ function RefinedAdapter:isCrafting(item) return false end -function RefinedAdapter:craft(item, qty) - local detail = self.findItem(item) - if detail then - return detail.craft(qty) - end -end - -function RefinedAdapter:craftItems() - return false -end - -function RefinedAdapter:provide() -end - -function RefinedAdapter:extract() --- self.pushItems(self.direction, slot, qty) +function RefinedAdapter:provide(item, qty, slot, direction) + return pcall(function() + for _,stack in pairs(self.listAvailableItems()) do + if stack.name == item.name and + (not item.damage or stack.damage == item.damage) and + (not item.nbtHash or stack.nbtHash == item.nbtHash) then + local amount = math.min(qty, stack.count) + if amount > 0 then + local detail = self.findItem(item) + if detail then + return detail.export(direction or self.direction, amount, slot) + end + end + qty = qty - amount + if qty <= 0 then + break + end + end + end + end) end function RefinedAdapter:insert() --- self.pullItems(self.direction, slot, qty) end return RefinedAdapter diff --git a/apps/chestManager.lua b/apps/chestManager.lua index 58e6014..cf6f973 100644 --- a/apps/chestManager.lua +++ b/apps/chestManager.lua @@ -1028,7 +1028,7 @@ function listingPage:eventHandler(event) elseif event.type == 'craft' or event.type == 'grid_select_right' then local item = self.grid:getSelected() - if Craft.findRecipe(item) or item.is_craftable then + if Craft.findRecipe(item) or true then -- or item.is_craftable then UI:setPage('craft', self.grid:getSelected()) else self.notification:error('No recipe defined') @@ -1403,11 +1403,10 @@ UI:setPages({ craft = craftPage, }) +jobMonitor() UI:setPage(listingPage) listingPage:setFocus(listingPage.statusBar.filter) -jobMonitor() - Event.onInterval(5, function() if not craftingPaused then @@ -1438,6 +1437,15 @@ Event.onInterval(5, function() end end + local function eject(item, qty) + if _G.turtle then + local s, m = pcall(function() + inventoryAdapter:provide(item, qty) + _G.turtle.emptyInventory() + end) + end + end + for _,key in pairs(Util.keys(demandCrafting)) do local item = demandCrafting[key] if item.crafted then @@ -1446,7 +1454,7 @@ Event.onInterval(5, function() demandCrafting[key] = nil item.statusCode = 'success' if item.eject then - inventoryAdapter:eject(item, item.ocount, 'front') + eject(item, item.ocount) end end end diff --git a/etc/recipes/minecraft.db b/etc/recipes/minecraft.db index 241889e..150efa2 100644 --- a/etc/recipes/minecraft.db +++ b/etc/recipes/minecraft.db @@ -1,2310 +1,5 @@ { name = "Minecraft", version = "", - recipes = { - [ "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: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