From 5baf7a3d204da4cc99c5f372b0e2e1187b91cea6 Mon Sep 17 00:00:00 2001 From: vp817 Date: Tue, 6 Aug 2024 00:23:16 +0300 Subject: [PATCH 1/9] update (not finished) --- .gitignore | 4 + src/pocketmine/Player.php | 2 +- src/pocketmine/Server.php | 2 + src/pocketmine/block/Block.php | 6 +- src/pocketmine/block/BlockFactory.php | 19 - src/pocketmine/block/Cauldron.php | 2 +- src/pocketmine/entity/object/FallingBlock.php | 2 +- src/pocketmine/inventory/CraftingManager.php | 71 +- src/pocketmine/item/Item.php | 35 +- src/pocketmine/level/Level.php | 12 +- src/pocketmine/level/format/Chunk.php | 2 +- .../level/particle/DestroyBlockParticle.php | 2 +- .../level/particle/FloatingTextParticle.php | 4 +- .../level/particle/TerrainParticle.php | 2 +- .../network/mcpe/NetworkBinaryStream.php | 30 +- .../network/mcpe/convert/ItemTranslator.php | 196 - .../mcpe/convert/ItemTypeDictionary.php | 14 +- .../mcpe/convert/NetworkBlockMapping.php | 151 + .../mcpe/convert/NetworkItemMapping.php | 213 + ....php => R12ToCurrentBlockMapEntry.php.tmp} | 0 .../mcpe/convert/RuntimeBlockMapping.php | 160 - .../AvailableActorIdentifiersPacket.php | 2 +- .../protocol/BiomeDefinitionListPacket.php | 2 +- .../mcpe/protocol/CraftingDataPacket.php | 22 +- .../network/mcpe/protocol/StartGamePacket.php | 2 +- .../mcpe/protocol/UpdateBlockPacket.php | 6 +- .../resources/vanilla/.gitattributes | 33 +- .../resources/vanilla/biome_definitions.dat | Bin 0 -> 41676 bytes .../resources/vanilla/block_attributes.json | 16860 ++++ .../resources/vanilla/block_palette.nbt | Bin 0 -> 177397 bytes .../resources/vanilla/creative_contents.dat | Bin 0 -> 36449 bytes .../resources/vanilla/creative_items.json | 6214 ++ .../resources/vanilla/entity_identifiers.dat | Bin 0 -> 8314 bytes .../resources/vanilla/item_mappings.json | 128 + .../resources/vanilla/legacy_block_ids.json | 1102 + .../resources/vanilla/legacy_item_ids.json | 501 + src/pocketmine/resources/vanilla/recipes.json | 73834 ++++++++++------ .../vanilla/runtime_item_states.json | 6398 ++ .../resources/vanilla_OLD/.gitattributes | 30 + .../{vanilla => vanilla_OLD}/.minify_json.php | 0 .../{vanilla => vanilla_OLD}/LICENSE | 0 .../{vanilla => vanilla_OLD}/README.md | 0 .../banner_patterns.json | 0 .../biome_definitions.nbt | Bin .../biome_id_map.json | 0 .../block_id_map.json | 0 .../canonical_block_states.nbt | Bin .../{vanilla => vanilla_OLD}/composer.json | 0 .../creativeitems.json | 0 .../entity_id_map.json | 0 .../entity_identifiers.nbt | Bin .../{vanilla => vanilla_OLD}/item_id_map.json | 0 .../level_sound_id_map.json | 0 .../particle_id_map.json | 0 .../r12_block_states.json | 0 .../r12_to_current_block_map.bin | Bin .../r16_to_current_item_map.json | 0 .../resources/vanilla_OLD/recipes.json | 49988 +++++++++++ .../required_item_list.json | 0 tests/phpstan/configs/actual-problems.neon | 18 +- .../check-explicit-mixed-baseline.neon | 4 +- tests/phpstan/configs/l7-baseline.neon | 4 +- tests/phpstan/configs/l8-baseline.neon | 6 +- 63 files changed, 128730 insertions(+), 27353 deletions(-) delete mode 100644 src/pocketmine/network/mcpe/convert/ItemTranslator.php create mode 100644 src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php create mode 100644 src/pocketmine/network/mcpe/convert/NetworkItemMapping.php rename src/pocketmine/network/mcpe/convert/{R12ToCurrentBlockMapEntry.php => R12ToCurrentBlockMapEntry.php.tmp} (100%) delete mode 100644 src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php create mode 100644 src/pocketmine/resources/vanilla/biome_definitions.dat create mode 100644 src/pocketmine/resources/vanilla/block_attributes.json create mode 100644 src/pocketmine/resources/vanilla/block_palette.nbt create mode 100644 src/pocketmine/resources/vanilla/creative_contents.dat create mode 100644 src/pocketmine/resources/vanilla/creative_items.json create mode 100644 src/pocketmine/resources/vanilla/entity_identifiers.dat create mode 100644 src/pocketmine/resources/vanilla/item_mappings.json create mode 100644 src/pocketmine/resources/vanilla/legacy_block_ids.json create mode 100644 src/pocketmine/resources/vanilla/legacy_item_ids.json create mode 100644 src/pocketmine/resources/vanilla/runtime_item_states.json create mode 100644 src/pocketmine/resources/vanilla_OLD/.gitattributes rename src/pocketmine/resources/{vanilla => vanilla_OLD}/.minify_json.php (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/LICENSE (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/README.md (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/banner_patterns.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/biome_definitions.nbt (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/biome_id_map.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/block_id_map.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/canonical_block_states.nbt (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/composer.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/creativeitems.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/entity_id_map.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/entity_identifiers.nbt (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/item_id_map.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/level_sound_id_map.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/particle_id_map.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/r12_block_states.json (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/r12_to_current_block_map.bin (100%) rename src/pocketmine/resources/{vanilla => vanilla_OLD}/r16_to_current_item_map.json (100%) create mode 100644 src/pocketmine/resources/vanilla_OLD/recipes.json rename src/pocketmine/resources/{vanilla => vanilla_OLD}/required_item_list.json (100%) diff --git a/.gitignore b/.gitignore index d3646587..93060efc 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ memory_dumps/* resource_packs/ server.lock /phpstan.neon +start_dev.sh # Common IDEs .idea/* @@ -40,6 +41,7 @@ Desktop.ini # Composer vendor/* +pm_composer.sh # Travis files test_data/* @@ -54,3 +56,5 @@ Documentation/* /.php_cs.cache /.php-cs-fixer.cache +# Vscode +/.vscode diff --git a/src/pocketmine/Player.php b/src/pocketmine/Player.php index aad1e653..30504f7e 100644 --- a/src/pocketmine/Player.php +++ b/src/pocketmine/Player.php @@ -3373,7 +3373,7 @@ public function handlePlayerAction(PlayerActionPacket $packet) : bool{ break; case PlayerActionPacket::ACTION_CRACK_BREAK: $block = $this->level->getBlock($pos); - $this->level->broadcastLevelEvent($pos, LevelEventPacket::EVENT_PARTICLE_PUNCH_BLOCK, $block->getRuntimeId() | ($packet->face << 24)); + $this->level->broadcastLevelEvent($pos, LevelEventPacket::EVENT_PARTICLE_PUNCH_BLOCK, $block->getNetworkId() | ($packet->face << 24)); //TODO: destroy-progress level event break; case PlayerActionPacket::ACTION_START_SWIMMING: diff --git a/src/pocketmine/Server.php b/src/pocketmine/Server.php index 8804aeb8..f1ddc8da 100644 --- a/src/pocketmine/Server.php +++ b/src/pocketmine/Server.php @@ -73,6 +73,7 @@ use pocketmine\nbt\tag\StringTag; use pocketmine\network\AdvancedSourceInterface; use pocketmine\network\CompressBatchedTask; +use pocketmine\network\mcpe\convert\NetworkBlockMapping; use pocketmine\network\mcpe\encryption\EncryptionContext; use pocketmine\network\mcpe\protocol\BatchPacket; use pocketmine\network\mcpe\protocol\DataPacket; @@ -1606,6 +1607,7 @@ public function __construct(\ClassLoader $autoloader, \AttachableThreadedLogger Entity::init(); Tile::init(); + NetworkBlockMapping::init(); // TEMP FOR DEV USE BlockFactory::init(); Enchantment::init(); ItemFactory::init(); diff --git a/src/pocketmine/block/Block.php b/src/pocketmine/block/Block.php index 3b25a105..6da776e4 100644 --- a/src/pocketmine/block/Block.php +++ b/src/pocketmine/block/Block.php @@ -38,7 +38,7 @@ use pocketmine\math\Vector3; use pocketmine\metadata\Metadatable; use pocketmine\metadata\MetadataValue; -use pocketmine\network\mcpe\convert\RuntimeBlockMapping; +use pocketmine\network\mcpe\convert\NetworkBlockMapping; use pocketmine\Player; use pocketmine\plugin\Plugin; use function array_merge; @@ -104,8 +104,8 @@ public function getItemId() : int{ /** * @internal */ - public function getRuntimeId() : int{ - return RuntimeBlockMapping::toStaticRuntimeId($this->getId(), $this->getDamage()); + public function getNetworkId() : int{ + return NetworkBlockMapping::toStaticNetworkId($this->getId(), $this->getDamage()); } final public function getDamage() : int{ diff --git a/src/pocketmine/block/BlockFactory.php b/src/pocketmine/block/BlockFactory.php index 70a1df9c..c03052e1 100644 --- a/src/pocketmine/block/BlockFactory.php +++ b/src/pocketmine/block/BlockFactory.php @@ -26,7 +26,6 @@ use InvalidArgumentException; use pocketmine\item\Item; use pocketmine\level\Position; -use pocketmine\network\mcpe\convert\RuntimeBlockMapping; use RuntimeException; use SplFixedArray; use function min; @@ -431,22 +430,4 @@ public static function isRegistered(int $id) : bool{ $b = self::$fullList[$id << 4]; return $b !== null and !($b instanceof UnknownBlock); } - - /** - * @internal - * @deprecated - */ - public static function toStaticRuntimeId(int $id, int $meta = 0) : int{ - return RuntimeBlockMapping::toStaticRuntimeId($id, $meta); - } - - /** - * @return int[] [id, meta] - * @internal - * - * @deprecated - */ - public static function fromStaticRuntimeId(int $runtimeId) : array{ - return RuntimeBlockMapping::fromStaticRuntimeId($runtimeId); - } } diff --git a/src/pocketmine/block/Cauldron.php b/src/pocketmine/block/Cauldron.php index b790cc22..518626d5 100644 --- a/src/pocketmine/block/Cauldron.php +++ b/src/pocketmine/block/Cauldron.php @@ -373,7 +373,7 @@ private function updateLiquid() : void{ $pk->x = $this->x; $pk->y = $this->y; $pk->z = $this->z; - $pk->blockRuntimeId = $this->getRuntimeId(); + $pk->blockNetworkId = $this->getNetworkId(); $pk->dataLayerId = UpdateBlockPacket::DATA_LAYER_LIQUID; $pk->flags = UpdateBlockPacket::FLAG_ALL_PRIORITY; diff --git a/src/pocketmine/entity/object/FallingBlock.php b/src/pocketmine/entity/object/FallingBlock.php index 66e2e58b..819e0606 100644 --- a/src/pocketmine/entity/object/FallingBlock.php +++ b/src/pocketmine/entity/object/FallingBlock.php @@ -74,7 +74,7 @@ protected function initEntity() : void{ $this->block = BlockFactory::get($blockId, $damage); - $this->propertyManager->setInt(self::DATA_VARIANT, $this->block->getRuntimeId()); + $this->propertyManager->setInt(self::DATA_VARIANT, $this->block->getNetworkId()); } public function canCollideWith(Entity $entity) : bool{ diff --git a/src/pocketmine/inventory/CraftingManager.php b/src/pocketmine/inventory/CraftingManager.php index 9d515aa3..499a29c9 100644 --- a/src/pocketmine/inventory/CraftingManager.php +++ b/src/pocketmine/inventory/CraftingManager.php @@ -56,41 +56,42 @@ public function __construct(){ } public function init() : void{ - $recipes = json_decode(file_get_contents(RESOURCE_PATH . "vanilla" . DIRECTORY_SEPARATOR . "recipes.json"), true); - if(!is_array($recipes)){ - throw new AssumptionFailedError("recipes.json root should contain a map of recipe types"); - } - - $itemDeserializerFunc = Closure::fromCallable([Item::class, 'jsonDeserialize']); - - foreach($recipes["shapeless"] as $recipe){ - if($recipe["block"] !== "crafting_table"){ //TODO: filter others out for now to avoid breaking economics - continue; - } - $this->registerShapelessRecipe(new ShapelessRecipe( - array_map($itemDeserializerFunc, $recipe["input"]), - array_map($itemDeserializerFunc, $recipe["output"]) - )); - } - foreach($recipes["shaped"] as $recipe){ - if($recipe["block"] !== "crafting_table"){ //TODO: filter others out for now to avoid breaking economics - continue; - } - $this->registerShapedRecipe(new ShapedRecipe( - $recipe["shape"], - array_map($itemDeserializerFunc, $recipe["input"]), - array_map($itemDeserializerFunc, $recipe["output"]) - )); - } - foreach($recipes["smelting"] as $recipe){ - if($recipe["block"] !== "furnace"){ //TODO: filter others out for now to avoid breaking economics - continue; - } - $this->registerFurnaceRecipe(new FurnaceRecipe( - Item::jsonDeserialize($recipe["output"]), - Item::jsonDeserialize($recipe["input"])) - ); - } + // TODO + // $recipes = json_decode(file_get_contents(RESOURCE_PATH . "vanilla" . DIRECTORY_SEPARATOR . "recipes.json"), true); + // if(!is_array($recipes)){ + // throw new AssumptionFailedError("recipes.json root should contain a map of recipe types"); + // } + + // $itemDeserializerFunc = Closure::fromCallable([Item::class, 'jsonDeserialize']); + + // foreach($recipes["shapeless"] as $recipe){ + // if($recipe["block"] !== "crafting_table"){ //TODO: filter others out for now to avoid breaking economics + // continue; + // } + // $this->registerShapelessRecipe(new ShapelessRecipe( + // array_map($itemDeserializerFunc, $recipe["input"]), + // array_map($itemDeserializerFunc, $recipe["output"]) + // )); + // } + // foreach($recipes["shaped"] as $recipe){ + // if($recipe["block"] !== "crafting_table"){ //TODO: filter others out for now to avoid breaking economics + // continue; + // } + // $this->registerShapedRecipe(new ShapedRecipe( + // $recipe["shape"], + // array_map($itemDeserializerFunc, $recipe["input"]), + // array_map($itemDeserializerFunc, $recipe["output"]) + // )); + // } + // foreach($recipes["smelting"] as $recipe){ + // if($recipe["block"] !== "furnace"){ //TODO: filter others out for now to avoid breaking economics + // continue; + // } + // $this->registerFurnaceRecipe(new FurnaceRecipe( + // Item::jsonDeserialize($recipe["output"]), + // Item::jsonDeserialize($recipe["input"])) + // ); + // } $this->buildCraftingDataCache(); } diff --git a/src/pocketmine/item/Item.php b/src/pocketmine/item/Item.php index 6c87cac2..fb1baa91 100644 --- a/src/pocketmine/item/Item.php +++ b/src/pocketmine/item/Item.php @@ -36,6 +36,7 @@ use pocketmine\item\enchantment\Enchantment; use pocketmine\item\enchantment\EnchantmentInstance; use pocketmine\math\Vector3; +use pocketmine\nbt\BigEndianNBTStream; use pocketmine\nbt\LittleEndianNBTStream; use pocketmine\nbt\NBT; use pocketmine\nbt\tag\ByteTag; @@ -45,6 +46,9 @@ use pocketmine\nbt\tag\NamedTag; use pocketmine\nbt\tag\ShortTag; use pocketmine\nbt\tag\StringTag; +use pocketmine\network\mcpe\convert\ItemTypeDictionary; +use pocketmine\network\mcpe\convert\NetworkBlockMapping; +use pocketmine\network\mcpe\NetworkBinaryStream; use pocketmine\Player; use pocketmine\utils\AssumptionFailedError; use pocketmine\utils\Binary; @@ -128,11 +132,13 @@ public static function fromString(string $str, bool $multiple = false){ public static function initCreativeItems(){ self::clearCreativeItems(); - $creativeItems = json_decode(file_get_contents(RESOURCE_PATH . "vanilla" . DIRECTORY_SEPARATOR . "creativeitems.json"), true); - - foreach($creativeItems as $data){ + $creativeItems = json_decode(file_get_contents(RESOURCE_PATH . "vanilla/creative_items.json"), true)["items"] ?? []; + foreach ($creativeItems as $data) { $item = Item::jsonDeserialize($data); - if($item->getName() === "Unknown"){ + if ($item === null) { + continue; + } + if ($item->getName() === "Unknown") { continue; } self::addCreativeItem($item); @@ -837,21 +843,24 @@ final public function jsonSerialize() : array{ * nbt_b64?: string * } $data */ - final public static function jsonDeserialize(array $data) : Item{ + final public static function jsonDeserialize(array $data) : ?Item{ + $id = ItemTypeDictionary::getInstance()->fromStringId($data["id"]); + $nbt = ""; - //Backwards compatibility - if(isset($data["nbt"])){ - $nbt = $data["nbt"]; - }elseif(isset($data["nbt_hex"])){ - $nbt = hex2bin($data["nbt_hex"]); - }elseif(isset($data["nbt_b64"])){ + if(isset($data["nbt_b64"])){ $nbt = base64_decode($data["nbt_b64"], true); } + if (isset($data["block_state_b64"])) { + $nbt_stream = new NetworkBinaryStream(base64_decode($data["block_state_b64"], true)); + $nbt_root = $nbt_stream->getNbtCompoundRoot(new LittleEndianNBTStream); + $id = $nbt_root->getInt("block_id"); + } + return ItemFactory::get( - (int) $data["id"], + (int) $id, (int) ($data["damage"] ?? 0), - (int) ($data["count"] ?? 1), + (int) 1, (string) $nbt ); } diff --git a/src/pocketmine/level/Level.php b/src/pocketmine/level/Level.php index 6eabb18f..63eddd4f 100644 --- a/src/pocketmine/level/Level.php +++ b/src/pocketmine/level/Level.php @@ -81,7 +81,7 @@ use pocketmine\metadata\MetadataValue; use pocketmine\nbt\tag\ListTag; use pocketmine\nbt\tag\StringTag; -use pocketmine\network\mcpe\convert\RuntimeBlockMapping; +use pocketmine\network\mcpe\convert\NetworkBlockMapping; use pocketmine\network\mcpe\protocol\AddActorPacket; use pocketmine\network\mcpe\protocol\BatchPacket; use pocketmine\network\mcpe\protocol\DataPacket; @@ -1071,10 +1071,10 @@ public function sendBlocks(array $target, array $blocks, int $flags = UpdateBloc $pk->z = $b->z; if($b instanceof Block){ - $pk->blockRuntimeId = $b->getRuntimeId(); + $pk->blockNetworkId = $b->getNetworkId(); }else{ $fullBlock = $this->getFullBlock($b->x, $b->y, $b->z); - $pk->blockRuntimeId = RuntimeBlockMapping::toStaticRuntimeId($fullBlock >> 4, $fullBlock & 0xf); + $pk->blockNetworkId = NetworkBlockMapping::toStaticNetworkId($fullBlock >> 4, $fullBlock & 0xf); } $pk->flags = $first ? $flags : UpdateBlockPacket::FLAG_NONE; @@ -1093,10 +1093,10 @@ public function sendBlocks(array $target, array $blocks, int $flags = UpdateBloc $pk->z = $b->z; if($b instanceof Block){ - $pk->blockRuntimeId = $b->getRuntimeId(); + $pk->blockNetworkId = $b->getNetworkId(); }else{ $fullBlock = $this->getFullBlock($b->x, $b->y, $b->z); - $pk->blockRuntimeId = RuntimeBlockMapping::toStaticRuntimeId($fullBlock >> 4, $fullBlock & 0xf); + $pk->blockNetworkId = NetworkBlockMapping::toStaticNetworkId($fullBlock >> 4, $fullBlock & 0xf); } $pk->flags = $flags; @@ -2109,7 +2109,7 @@ public function useItemOn(Vector3 $vector, Item &$item, int $face, Vector3 $clic } if($playSound){ - $this->broadcastLevelSoundEvent($hand, LevelSoundEventPacket::SOUND_PLACE, $hand->getRuntimeId()); + $this->broadcastLevelSoundEvent($hand, LevelSoundEventPacket::SOUND_PLACE, $hand->getNetworkId()); } $item->pop(); diff --git a/src/pocketmine/level/format/Chunk.php b/src/pocketmine/level/format/Chunk.php index 4897692c..fad3f3af 100644 --- a/src/pocketmine/level/format/Chunk.php +++ b/src/pocketmine/level/format/Chunk.php @@ -914,7 +914,7 @@ private function networkSerializeBiomesAsPalette() : string{ /** @var string[]|null $biomeIdMap */ static $biomeIdMap = null; if($biomeIdMap === null){ - $biomeIdMapRaw = file_get_contents(RESOURCE_PATH . '/vanilla/biome_id_map.json'); + $biomeIdMapRaw = file_get_contents(RESOURCE_PATH . '/vanilla_OLD/biome_id_map.json'); // TODO: DO LATER if($biomeIdMapRaw === false) throw new AssumptionFailedError(); $biomeIdMapDecoded = json_decode($biomeIdMapRaw, true); if(!is_array($biomeIdMapDecoded)) throw new AssumptionFailedError(); diff --git a/src/pocketmine/level/particle/DestroyBlockParticle.php b/src/pocketmine/level/particle/DestroyBlockParticle.php index 3bec46f6..3881efcc 100644 --- a/src/pocketmine/level/particle/DestroyBlockParticle.php +++ b/src/pocketmine/level/particle/DestroyBlockParticle.php @@ -34,7 +34,7 @@ class DestroyBlockParticle extends Particle{ public function __construct(Vector3 $pos, Block $b){ parent::__construct($pos->x, $pos->y, $pos->z); - $this->data = $b->getRuntimeId(); + $this->data = $b->getNetworkId(); } public function encode(){ diff --git a/src/pocketmine/level/particle/FloatingTextParticle.php b/src/pocketmine/level/particle/FloatingTextParticle.php index acddf724..e418442f 100644 --- a/src/pocketmine/level/particle/FloatingTextParticle.php +++ b/src/pocketmine/level/particle/FloatingTextParticle.php @@ -27,7 +27,7 @@ use pocketmine\entity\Entity; use pocketmine\entity\EntityIds; use pocketmine\math\Vector3; -use pocketmine\network\mcpe\convert\RuntimeBlockMapping; +use pocketmine\network\mcpe\convert\NetworkBlockMapping; use pocketmine\network\mcpe\protocol\AddActorPacket; use pocketmine\network\mcpe\protocol\RemoveActorPacket; use pocketmine\network\mcpe\protocol\types\entityProperty\EntityProperties; @@ -99,7 +99,7 @@ public function encode(){ Entity::DATA_BOUNDING_BOX_WIDTH => [Entity::DATA_TYPE_FLOAT, 0.0], Entity::DATA_BOUNDING_BOX_HEIGHT => [Entity::DATA_TYPE_FLOAT, 0.0], Entity::DATA_NAMETAG => [Entity::DATA_TYPE_STRING, $name], - Entity::DATA_VARIANT =>[Entity::DATA_TYPE_INT, RuntimeBlockMapping::toStaticRuntimeId(BlockIds::AIR)], + Entity::DATA_VARIANT =>[Entity::DATA_TYPE_INT, NetworkBlockMapping::toStaticNetworkId(BlockIds::AIR)], Entity::DATA_ALWAYS_SHOW_NAMETAG => [Entity::DATA_TYPE_BYTE, 1], ]; diff --git a/src/pocketmine/level/particle/TerrainParticle.php b/src/pocketmine/level/particle/TerrainParticle.php index 8295f3d1..8a23cc4c 100644 --- a/src/pocketmine/level/particle/TerrainParticle.php +++ b/src/pocketmine/level/particle/TerrainParticle.php @@ -28,6 +28,6 @@ class TerrainParticle extends GenericParticle{ public function __construct(Vector3 $pos, Block $b){ - parent::__construct($pos, Particle::TYPE_TERRAIN, $b->getRuntimeId()); + parent::__construct($pos, Particle::TYPE_TERRAIN, $b->getNetworkId()); } } diff --git a/src/pocketmine/network/mcpe/NetworkBinaryStream.php b/src/pocketmine/network/mcpe/NetworkBinaryStream.php index e9e93a50..9cd0a086 100644 --- a/src/pocketmine/network/mcpe/NetworkBinaryStream.php +++ b/src/pocketmine/network/mcpe/NetworkBinaryStream.php @@ -34,14 +34,16 @@ use pocketmine\item\ItemFactory; use pocketmine\item\ItemIds; use pocketmine\math\Vector3; +use pocketmine\nbt\BigEndianNBTStream; use pocketmine\nbt\LittleEndianNBTStream; +use pocketmine\nbt\NBTStream; use pocketmine\nbt\NetworkLittleEndianNBTStream; use pocketmine\nbt\tag\CompoundTag; use pocketmine\nbt\tag\IntTag; use pocketmine\nbt\tag\NamedTag; -use pocketmine\network\mcpe\convert\ItemTranslator; +use pocketmine\network\mcpe\convert\NetworkItemMapping; use pocketmine\network\mcpe\convert\ItemTypeDictionary; -use pocketmine\network\mcpe\convert\RuntimeBlockMapping; +use pocketmine\network\mcpe\convert\NetworkBlockMapping; use pocketmine\network\mcpe\protocol\types\CommandOriginData; use pocketmine\network\mcpe\protocol\types\EntityLink; use pocketmine\network\mcpe\protocol\types\GameRuleType; @@ -231,7 +233,7 @@ public function getItemStack(Closure $readExtraCrapInTheMiddle) : Item{ $cnt = $this->getLShort(); $netData = $this->getUnsignedVarInt(); - [$id, $meta] = ItemTranslator::getInstance()->fromNetworkId($netId, $netData); + [$id, $meta] = NetworkItemMapping::getInstance()->fromNetworkId($netId, $netData); $readExtraCrapInTheMiddle($this); @@ -312,7 +314,7 @@ public function putItemStack(Item $item, Closure $writeExtraCrapInTheMiddle) : v } $coreData = $item->getDamage(); - [$netId, $netData] = ItemTranslator::getInstance()->toNetworkId($item->getId(), $coreData); + [$netId, $netData] = NetworkItemMapping::getInstance()->toNetworkId($item->getId(), $coreData); $this->putVarInt($netId); $this->putLShort($item->getCount()); @@ -320,15 +322,15 @@ public function putItemStack(Item $item, Closure $writeExtraCrapInTheMiddle) : v $writeExtraCrapInTheMiddle($this); - $blockRuntimeId = 0; + $blockNetworkId = 0; $isBlockItem = $item->getId() < 256; if($isBlockItem){ $block = $item->getBlock(); if($block->getId() !== BlockIds::AIR){ - $blockRuntimeId = RuntimeBlockMapping::toStaticRuntimeId($block->getId(), $block->getDamage()); + $blockNetworkId = NetworkBlockMapping::toStaticNetworkId($block->getId(), $block->getDamage()); } } - $this->putVarInt($blockRuntimeId); + $this->putVarInt($blockNetworkId); $nbt = null; if($item->hasCompoundTag()){ @@ -383,7 +385,7 @@ public function getRecipeIngredient() : Item{ return ItemFactory::get(ItemIds::AIR, 0, 0); } $netData = $this->getVarInt(); - [$id, $meta] = ItemTranslator::getInstance()->fromNetworkIdWithWildcardHandling($netId, $netData); + [$id, $meta] = NetworkItemMapping::getInstance()->fromNetworkIdWithWildcardHandling($netId, $netData); $count = $this->getVarInt(); return ItemFactory::get($id, $meta, $count); } @@ -398,10 +400,10 @@ public function putRecipeIngredient(Item $item) : void{ $this->putBool(true); if($item->hasAnyDamageValue()){ - [$netId,] = ItemTranslator::getInstance()->toNetworkId($item->getId(), 0); + [$netId,] = NetworkItemMapping::getInstance()->toNetworkId($item->getId(), 0); $netData = 0x7fff; }else{ - [$netId, $netData] = ItemTranslator::getInstance()->toNetworkId($item->getId(), $item->getDamage()); + [$netId, $netData] = NetworkItemMapping::getInstance()->toNetworkId($item->getId(), $item->getDamage()); } $this->putLShort($netId); $this->putLShort($netData); @@ -853,10 +855,10 @@ protected function putStructureEditorData(StructureEditorData $structureEditorDa $this->putVarInt($structureEditorData->structureRedstoneSaveMove); } - public function getNbtRoot() : NamedTag{ + public function getNbtRoot(?NBTStream $nbt_stream = null) : NamedTag{ $offset = $this->getOffset(); try{ - $result = (new NetworkLittleEndianNBTStream())->read($this->getBuffer(), false, $offset, 512); + $result = (is_null($nbt_stream) ? new NetworkLittleEndianNBTStream() : $nbt_stream)->read($this->getBuffer(), false, $offset, 512); assert($result instanceof NamedTag, "doMultiple is false so we should definitely have a NamedTag here"); return $result; }finally{ @@ -864,8 +866,8 @@ public function getNbtRoot() : NamedTag{ } } - public function getNbtCompoundRoot() : CompoundTag{ - $root = $this->getNbtRoot(); + public function getNbtCompoundRoot(?NBTStream $nbt_stream = null) : CompoundTag{ + $root = $this->getNbtRoot($nbt_stream); if(!($root instanceof CompoundTag)){ throw new UnexpectedValueException("Expected TAG_Compound root"); } diff --git a/src/pocketmine/network/mcpe/convert/ItemTranslator.php b/src/pocketmine/network/mcpe/convert/ItemTranslator.php deleted file mode 100644 index 5a6872bf..00000000 --- a/src/pocketmine/network/mcpe/convert/ItemTranslator.php +++ /dev/null @@ -1,196 +0,0 @@ - - */ - private $simpleCoreToNetMapping = []; - /** - * @var int[] - * @phpstan-var array - */ - private $simpleNetToCoreMapping = []; - - /** - * runtimeId = array[internalId][metadata] - * @var int[][] - * @phpstan-var array> - */ - private $complexCoreToNetMapping = []; - /** - * [internalId, metadata] = array[runtimeId] - * @var int[][] - * @phpstan-var array - */ - private $complexNetToCoreMapping = []; - - private static function make() : self{ - $data = file_get_contents(RESOURCE_PATH . '/vanilla/r16_to_current_item_map.json'); - if($data === false) throw new AssumptionFailedError("Missing required resource file"); - $json = json_decode($data, true); - if(!is_array($json) or !isset($json["simple"], $json["complex"]) || !is_array($json["simple"]) || !is_array($json["complex"])){ - throw new AssumptionFailedError("Invalid item table format"); - } - - $legacyStringToIntMapRaw = file_get_contents(RESOURCE_PATH . '/vanilla/item_id_map.json'); - if($legacyStringToIntMapRaw === false){ - throw new AssumptionFailedError("Missing required resource file"); - } - $legacyStringToIntMap = json_decode($legacyStringToIntMapRaw, true); - if(!is_array($legacyStringToIntMap)){ - throw new AssumptionFailedError("Invalid mapping table format"); - } - - /** @phpstan-var array $simpleMappings */ - $simpleMappings = []; - foreach($json["simple"] as $oldId => $newId){ - if(!is_string($oldId) || !is_string($newId)){ - throw new AssumptionFailedError("Invalid item table format"); - } - if(!isset($legacyStringToIntMap[$oldId])){ - //new item without a fixed legacy ID - we can't handle this right now - continue; - } - $simpleMappings[$newId] = $legacyStringToIntMap[$oldId]; - } - foreach($legacyStringToIntMap as $stringId => $intId){ - if(isset($simpleMappings[$stringId])){ - throw new UnexpectedValueException("Old ID $stringId collides with new ID"); - } - $simpleMappings[$stringId] = $intId; - } - - /** @phpstan-var array $complexMappings */ - $complexMappings = []; - foreach($json["complex"] as $oldId => $map){ - if(!is_string($oldId) || !is_array($map)){ - throw new AssumptionFailedError("Invalid item table format"); - } - foreach($map as $meta => $newId){ - if(!is_numeric($meta) || !is_string($newId)){ - throw new AssumptionFailedError("Invalid item table format"); - } - $legacyStringToIntMap["minecraft:stone_block_slab"] = 44; - $complexMappings[$newId] = [$legacyStringToIntMap[$oldId], (int) $meta]; - } - } - - return new self(ItemTypeDictionary::getInstance(), $simpleMappings, $complexMappings); - } - - /** - * @param int[] $simpleMappings - * @param int[][] $complexMappings - * - * @phpstan-param array $simpleMappings - * @phpstan-param array> $complexMappings - */ - public function __construct(ItemTypeDictionary $dictionary, array $simpleMappings, array $complexMappings){ - foreach($dictionary->getEntries() as $entry){ - $stringId = $entry->getStringId(); - $netId = $entry->getNumericId(); - if(isset($complexMappings[$stringId])){ - [$id, $meta] = $complexMappings[$stringId]; - $this->complexCoreToNetMapping[$id][$meta] = $netId; - $this->complexNetToCoreMapping[$netId] = [$id, $meta]; - }elseif(isset($simpleMappings[$stringId])){ - $this->simpleCoreToNetMapping[$simpleMappings[$stringId]] = $netId; - $this->simpleNetToCoreMapping[$netId] = $simpleMappings[$stringId]; - }else{ - //not all items have a legacy mapping - for now, we only support the ones that do - continue; - } - } - } - - /** - * @return int[] - * @phpstan-return array{int, int} - */ - public function toNetworkId(int $internalId, int $internalMeta) : array{ - if($internalMeta === -1){ - $internalMeta = 0x7fff; - } - if(isset($this->complexCoreToNetMapping[$internalId][$internalMeta])){ - return [$this->complexCoreToNetMapping[$internalId][$internalMeta], 0]; - } - if(array_key_exists($internalId, $this->simpleCoreToNetMapping)){ - return [$this->simpleCoreToNetMapping[$internalId], $internalMeta]; - } - - throw new InvalidArgumentException("Unmapped ID/metadata combination $internalId:$internalMeta"); - } - - /** - * @return int[] - * @phpstan-return array{int, int} - */ - public function fromNetworkId(int $networkId, int $networkMeta, ?bool &$isComplexMapping = null) : array{ - if(isset($this->complexNetToCoreMapping[$networkId])){ - if($networkMeta !== 0){ - throw new UnexpectedValueException("Unexpected non-zero network meta on complex item mapping"); - } - $isComplexMapping = true; - return $this->complexNetToCoreMapping[$networkId]; - } - $isComplexMapping = false; - if(isset($this->simpleNetToCoreMapping[$networkId])){ - return [$this->simpleNetToCoreMapping[$networkId], $networkMeta]; - } - throw new UnexpectedValueException("Unmapped network ID/metadata combination $networkId:$networkMeta"); - } - - /** - * @return int[] - * @phpstan-return array{int, int} - */ - public function fromNetworkIdWithWildcardHandling(int $networkId, int $networkMeta) : array{ - $isComplexMapping = false; - if($networkMeta !== 0x7fff){ - return $this->fromNetworkId($networkId, $networkMeta); - } - [$id, $meta] = $this->fromNetworkId($networkId, 0, $isComplexMapping); - return [$id, $isComplexMapping ? $meta : -1]; - } -} diff --git a/src/pocketmine/network/mcpe/convert/ItemTypeDictionary.php b/src/pocketmine/network/mcpe/convert/ItemTypeDictionary.php index 75632605..7e79ac90 100644 --- a/src/pocketmine/network/mcpe/convert/ItemTypeDictionary.php +++ b/src/pocketmine/network/mcpe/convert/ItemTypeDictionary.php @@ -30,7 +30,6 @@ use function array_key_exists; use function file_get_contents; use function is_array; -use function is_bool; use function is_int; use function is_string; use function json_decode; @@ -56,7 +55,7 @@ final class ItemTypeDictionary{ private $stringToIntMap = []; private static function make() : self{ - $data = file_get_contents(RESOURCE_PATH . '/vanilla/required_item_list.json'); + $data = file_get_contents(RESOURCE_PATH . '/vanilla/runtime_item_states.json'); if($data === false) throw new AssumptionFailedError("Missing required resource file"); $table = json_decode($data, true); if(!is_array($table)){ @@ -64,11 +63,16 @@ private static function make() : self{ } $params = []; - foreach($table as $name => $entry){ - if(!is_array($entry) || !is_string($name) || !isset($entry["component_based"], $entry["runtime_id"]) || !is_bool($entry["component_based"]) || !is_int($entry["runtime_id"])){ + foreach($table as $entry){ + if(!is_array($entry) || !isset($entry["name"], $entry["id"]) || !is_string($entry["name"]) || !is_int($entry["id"])){ throw new AssumptionFailedError("Invalid item list format"); } - $params[] = new ItemTypeEntry($name, $entry["runtime_id"], $entry["component_based"]); + + $params[] = new ItemTypeEntry( + stringId: $entry["name"], + numericId: $entry["id"], + componentBased: false + ); } return new self($params); } diff --git a/src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php b/src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php new file mode 100644 index 00000000..cf458a1a --- /dev/null +++ b/src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php @@ -0,0 +1,151 @@ +getNbtCompoundRoot(new BigEndianNBTStream)->getTag("blocks") as $value) { + $list[] = $value; + } + + self::$bedrockKnownStates = $list; + + self::setupBlockMappings(); + } + + private static function setupBlockMappings(): void + { + /** + * @var int[][] $idToStatesMap string id -> int[] list of candidate state indices + */ + $idToStatesMap = []; + $idToNetIdsMap = []; + foreach (self::$bedrockKnownStates as $state) { + $idToStatesMap[$stringId = $state->getString("name")][] = $state->getInt("block_id"); + $idToNetIdsMap[$stringId][] = $state->getInt("network_id"); + } + + $oldName = ""; + $legacyMeta = 0; + foreach ($idToNetIdsMap as $name => $ids) { + if ($name !== $oldName) { + $legacyMeta = 0; + } + + $netId = $ids[$legacyMeta] ?? null; + $legacyId = $idToStatesMap[$name][$legacyMeta] ?? null; + if($netId === null){ + throw new RuntimeException("No network ID matches $name"); + } + if($legacyId === null){ + throw new RuntimeException("No legacy ID matches $name"); + } + + if ($legacyMeta > 15) { // pm doesn't support >4 bits + $legacyMeta = 0; + continue; + } + + self::registerMapping($netId, $legacyId, $legacyMeta); + + ++$legacyMeta; + $oldName = $name; + } + } + + private static function lazyInit() : void{ + if(self::$bedrockKnownStates === null){ + self::init(); + } + } + + public static function toStaticNetworkId(int $id, int $meta = 0) : int{ + self::lazyInit(); + /* + * try id+meta first + * if not found, try id+0 (strip meta) + * if still not found, return update! block + */ + return self::$legacyToNetworkMap[($id << 4) | $meta] ?? self::$legacyToNetworkMap[$id << 4] ?? self::$legacyToNetworkMap[BlockIds::INFO_UPDATE << 4]; + } + + /** + * @return int[] [id, meta] + */ + public static function fromStaticNetworkId(int $networkId) : array{ + self::lazyInit(); + $v = self::$networkToLegacyMap[$networkId]; + return [$v >> 4, $v & 0xf]; + } + + private static function registerMapping(int $staticNetworkId, int $legacyId, int $legacyMeta) : void{ + self::$legacyToNetworkMap[($legacyId << 4) | $legacyMeta] = $staticNetworkId; + self::$networkToLegacyMap[$staticNetworkId] = ($legacyId << 4) | $legacyMeta; + } + + /** + * @return CompoundTag[] + */ + public static function getBedrockKnownStates() : array{ + self::lazyInit(); + return self::$bedrockKnownStates; + } +} diff --git a/src/pocketmine/network/mcpe/convert/NetworkItemMapping.php b/src/pocketmine/network/mcpe/convert/NetworkItemMapping.php new file mode 100644 index 00000000..51a79aa3 --- /dev/null +++ b/src/pocketmine/network/mcpe/convert/NetworkItemMapping.php @@ -0,0 +1,213 @@ + $simpleMappings */ + // $simpleMappings = []; + // foreach($json["simple"] as $oldId => $newId){ + // if(!is_string($oldId) || !is_string($newId)){ + // throw new AssumptionFailedError("Invalid item table format"); + // } + // if(!isset($legacyStringToIntMap[$oldId])){ + // //new item without a fixed legacy ID - we can't handle this right now + // continue; + // } + // $simpleMappings[$newId] = $legacyStringToIntMap[$oldId]; + // } + // foreach($legacyStringToIntMap as $stringId => $intId){ + // if(isset($simpleMappings[$stringId])){ + // throw new UnexpectedValueException("Old ID $stringId collides with new ID"); + // } + // $simpleMappings[$stringId] = $intId; + // } + + // /** @phpstan-var array $complexMappings */ + // $complexMappings = []; + // foreach($json["complex"] as $oldId => $map){ + // if(!is_string($oldId) || !is_array($map)){ + // throw new AssumptionFailedError("Invalid item table format"); + // } + // foreach($map as $meta => $newId){ + // if(!is_numeric($meta) || !is_string($newId)){ + // throw new AssumptionFailedError("Invalid item table format"); + // } + // $legacyStringToIntMap["minecraft:stone_block_slab"] = 44; + // $complexMappings[$newId] = [$legacyStringToIntMap[$oldId], (int) $meta]; + // } + // } + $itemMappingsRaw = file_get_contents(RESOURCE_PATH . '/vanilla/item_mappings.json'); + if($itemMappingsRaw === false) throw new AssumptionFailedError("Missing required resource file"); + $itemMappings = json_decode($itemMappingsRaw, true); + if(!is_array($itemMappings)){ + throw new AssumptionFailedError("Invalid item table format"); + } + + $legacyItemIdsRaw = file_get_contents(RESOURCE_PATH . '/vanilla/legacy_item_ids.json'); + if($legacyItemIdsRaw === false){ + throw new AssumptionFailedError("Missing required resource file"); + } + $legacyItemIds = json_decode($legacyItemIdsRaw, true); + if(!is_array($legacyItemIds)){ + throw new AssumptionFailedError("Invalid mapping table format"); + } + + return new self(ItemTypeDictionary::getInstance(), $itemMappings, $legacyItemIds); + } + + public function __construct(ItemTypeDictionary $dictionary, array $itemMappings, array $legacyItemIds){ + foreach($dictionary->getEntries() as $entry){ + $stringId = $entry->getStringId(); + $netId = $entry->getNumericId(); + + if (isset($itemMappings[$stringId])) { + foreach ($itemMappings[$stringId] as $meta => $newStrId) { + $meta = intval($meta); + $legacyId = $legacyItemIds[$newStrId]; + + if (!isset($this->mappedCoreToNetMap[$legacyId])) { + $this->mappedCoreToNetMap[$legacyId] = []; + } + + $this->mappedCoreToNetMap[$legacyId][$meta] = $netId; + $this->netToMappedCoreMap[$legacyId] = [$legacyId, $meta]; + } + }elseif(isset($legacyItemIds[$stringId])) { + if (!isset($this->coreToNetMap[$netId])) { + $this->coreToNetMap[$netId] = []; + } + + $this->coreToNetMap[$legacyItemIds[$stringId]][0] = $netId; + $this->netToCoreMap[$netId] = [$legacyItemIds[$stringId], 0]; + } else { + // var_dump("It is non legacy - todo"); + // continue; + if (!isset($this->nonLegacyCoreToNetMap[$netId])) { + $this->nonLegacyCoreToNetMap[$netId] = []; + } + + $this->nonLegacyCoreToNetMap[$netId][0] = $netId; + $this->netToNonLegacyCoreMap[$netId] = [$netId, 0]; + // $this->coreToNetMap[$netId][0] = []; + } + } + } + + /** + * @return int[] + * @phpstan-return array{int, int} + */ + public function toNetworkId(int $internalId, int $internalMeta) : array{ + if($internalMeta === -1){ + $internalMeta = 0x7fff; + } + if (isset($this->mappedCoreToNetMap[$internalId][$internalMeta])) { + return [$this->mappedCoreToNetMap[$internalId][$internalMeta], 0]; + } + if(isset($this->coreToNetMap[$internalId][$internalMeta])){ + return [$this->coreToNetMap[$internalId][$internalMeta], $internalMeta]; + } + if (isset($this->nonLegacyCoreToNetMap[$internalId][$internalMeta])) { + return [$this->nonLegacyCoreToNetMap[$internalId][$internalMeta], 0]; + } + + // throw new InvalidArgumentException("Unmapped ID/metadata combination $internalId:$internalMeta"); + return [NetworkBlockMapping::toStaticNetworkId($internalId, $internalMeta), $internalMeta]; // TODO: HACK (in the rewrite this will be removed) + } + + /** + * @return int[] + * @phpstan-return array{int, int} + */ + public function fromNetworkId(int $networkId, int $networkMeta, bool &$isMapped = false) : array{ + if($networkMeta !== 0){ + throw new UnexpectedValueException("Unexpected non-zero network meta on complex item mapping"); + } + if (isset($this->mappedCoreToNetMap[$networkId][$networkMeta])) { + $isMapped = true; + return $this->mappedCoreToNetMap[$networkId]; + } + if(isset($this->netToCoreMap[$networkId])){ + return $this->netToCoreMap[$networkId]; + } + if (isset($this->netToNonLegacyCoreMap[$networkId][$networkMeta])) { + return $this->netToNonLegacyCoreMap[$networkId]; + } + throw new UnexpectedValueException("Unmapped network ID/metadata combination $networkId:$networkMeta"); + } + + /** + * @return int[] + * @phpstan-return array{int, int} + */ + public function fromNetworkIdWithWildcardHandling(int $networkId, int $networkMeta) : array{ + $isMapped = false; + if($networkMeta !== 0x7fff){ + return $this->fromNetworkId($networkId, $networkMeta); + } + [$id, $meta] = $this->fromNetworkId($networkId, 0, $isMapped); + return [$id, $isMapped ? $meta : -1]; + } +} diff --git a/src/pocketmine/network/mcpe/convert/R12ToCurrentBlockMapEntry.php b/src/pocketmine/network/mcpe/convert/R12ToCurrentBlockMapEntry.php.tmp similarity index 100% rename from src/pocketmine/network/mcpe/convert/R12ToCurrentBlockMapEntry.php rename to src/pocketmine/network/mcpe/convert/R12ToCurrentBlockMapEntry.php.tmp diff --git a/src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php b/src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php deleted file mode 100644 index acf99d19..00000000 --- a/src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php +++ /dev/null @@ -1,160 +0,0 @@ -feof()){ - $list[] = $stream->getNbtCompoundRoot(); - } - self::$bedrockKnownStates = $list; - - self::setupLegacyMappings(); - } - - private static function setupLegacyMappings() : void{ - $legacyIdMap = json_decode(file_get_contents(RESOURCE_PATH . "vanilla/block_id_map.json"), true); - - /** @var R12ToCurrentBlockMapEntry[] $legacyStateMap */ - $legacyStateMap = []; - $legacyStateMapReader = new NetworkBinaryStream(file_get_contents(RESOURCE_PATH . "vanilla/r12_to_current_block_map.bin")); - $nbtReader = new NetworkLittleEndianNBTStream(); - while(!$legacyStateMapReader->feof()){ - $id = $legacyStateMapReader->getString(); - $meta = $legacyStateMapReader->getLShort(); - - $offset = $legacyStateMapReader->getOffset(); - $state = $nbtReader->read($legacyStateMapReader->getBuffer(), false, $offset); - $legacyStateMapReader->setOffset($offset); - if(!($state instanceof CompoundTag)){ - throw new RuntimeException("Blockstate should be a TAG_Compound"); - } - $legacyStateMap[] = new R12ToCurrentBlockMapEntry($id, $meta, $state); - } - - /** - * @var int[][] $idToStatesMap string id -> int[] list of candidate state indices - */ - $idToStatesMap = []; - foreach(self::$bedrockKnownStates as $k => $state){ - $idToStatesMap[$state->getString("name")][] = $k; - } - foreach($legacyStateMap as $pair){ - $id = $legacyIdMap[$pair->getId()] ?? null; - if($id === null){ - throw new RuntimeException("No legacy ID matches " . $pair->getId()); - } - $data = $pair->getMeta(); - if($data > 15){ - //we can't handle metadata with more than 4 bits - continue; - } - $mappedState = $pair->getBlockState(); - - //TODO HACK: idiotic NBT compare behaviour on 3.x compares keys which are stored by values - $mappedState->setName(""); - $mappedName = $mappedState->getString("name"); - if(!isset($idToStatesMap[$mappedName])){ - throw new RuntimeException("Mapped new state does not appear in network table"); - } - foreach($idToStatesMap[$mappedName] as $k){ - $networkState = self::$bedrockKnownStates[$k]; - if($mappedState->equals($networkState)){ - self::registerMapping($k, $id, $data); - continue 2; - } - } - throw new RuntimeException("Mapped new state does not appear in network table"); - } - } - - private static function lazyInit() : void{ - if(self::$bedrockKnownStates === null){ - self::init(); - } - } - - public static function toStaticRuntimeId(int $id, int $meta = 0) : int{ - self::lazyInit(); - /* - * try id+meta first - * if not found, try id+0 (strip meta) - * if still not found, return update! block - */ - return self::$legacyToRuntimeMap[($id << 4) | $meta] ?? self::$legacyToRuntimeMap[$id << 4] ?? self::$legacyToRuntimeMap[BlockIds::INFO_UPDATE << 4]; - } - - /** - * @return int[] [id, meta] - */ - public static function fromStaticRuntimeId(int $runtimeId) : array{ - self::lazyInit(); - $v = self::$runtimeToLegacyMap[$runtimeId]; - return [$v >> 4, $v & 0xf]; - } - - private static function registerMapping(int $staticRuntimeId, int $legacyId, int $legacyMeta) : void{ - self::$legacyToRuntimeMap[($legacyId << 4) | $legacyMeta] = $staticRuntimeId; - self::$runtimeToLegacyMap[$staticRuntimeId] = ($legacyId << 4) | $legacyMeta; - } - - /** - * @return CompoundTag[] - */ - public static function getBedrockKnownStates() : array{ - self::lazyInit(); - return self::$bedrockKnownStates; - } -} diff --git a/src/pocketmine/network/mcpe/protocol/AvailableActorIdentifiersPacket.php b/src/pocketmine/network/mcpe/protocol/AvailableActorIdentifiersPacket.php index bbcc27cf..f197e139 100644 --- a/src/pocketmine/network/mcpe/protocol/AvailableActorIdentifiersPacket.php +++ b/src/pocketmine/network/mcpe/protocol/AvailableActorIdentifiersPacket.php @@ -44,7 +44,7 @@ protected function encodePayload(){ $this->put( $this->namedtag ?? self::$DEFAULT_NBT_CACHE ?? - (self::$DEFAULT_NBT_CACHE = file_get_contents(RESOURCE_PATH . '/vanilla/entity_identifiers.nbt')) + (self::$DEFAULT_NBT_CACHE = file_get_contents(RESOURCE_PATH . '/vanilla/entity_identifiers.dat')) ); } diff --git a/src/pocketmine/network/mcpe/protocol/BiomeDefinitionListPacket.php b/src/pocketmine/network/mcpe/protocol/BiomeDefinitionListPacket.php index 55f27881..34e7981c 100644 --- a/src/pocketmine/network/mcpe/protocol/BiomeDefinitionListPacket.php +++ b/src/pocketmine/network/mcpe/protocol/BiomeDefinitionListPacket.php @@ -44,7 +44,7 @@ protected function encodePayload(){ $this->put( $this->namedtag ?? self::$DEFAULT_NBT_CACHE ?? - (self::$DEFAULT_NBT_CACHE = file_get_contents(RESOURCE_PATH . '/vanilla/biome_definitions.nbt')) + (self::$DEFAULT_NBT_CACHE = file_get_contents(RESOURCE_PATH . '/vanilla/biome_definitions.dat')) ); } diff --git a/src/pocketmine/network/mcpe/protocol/CraftingDataPacket.php b/src/pocketmine/network/mcpe/protocol/CraftingDataPacket.php index 056668d2..7a6746fe 100644 --- a/src/pocketmine/network/mcpe/protocol/CraftingDataPacket.php +++ b/src/pocketmine/network/mcpe/protocol/CraftingDataPacket.php @@ -29,7 +29,7 @@ use pocketmine\inventory\ShapedRecipe; use pocketmine\inventory\ShapelessRecipe; use pocketmine\item\ItemFactory; -use pocketmine\network\mcpe\convert\ItemTranslator; +use pocketmine\network\mcpe\convert\NetworkItemMapping; use pocketmine\network\mcpe\NetworkBinaryStream; use pocketmine\network\mcpe\NetworkSession; use pocketmine\network\mcpe\protocol\types\MaterialReducerRecipe; @@ -133,10 +133,10 @@ protected function decodePayload(){ case self::ENTRY_FURNACE_DATA: $inputIdNet = $this->getVarInt(); if($recipeType === self::ENTRY_FURNACE){ - [$inputId, $inputData] = ItemTranslator::getInstance()->fromNetworkIdWithWildcardHandling($inputIdNet, 0x7fff); + [$inputId, $inputData] = NetworkItemMapping::getInstance()->fromNetworkIdWithWildcardHandling($inputIdNet, 0x7fff); }else{ $inputMetaNet = $this->getVarInt(); - [$inputId, $inputData] = ItemTranslator::getInstance()->fromNetworkIdWithWildcardHandling($inputIdNet, $inputMetaNet); + [$inputId, $inputData] = NetworkItemMapping::getInstance()->fromNetworkIdWithWildcardHandling($inputIdNet, $inputMetaNet); } $entry["input"] = ItemFactory::get($inputId, $inputData); $entry["output"] = $out = $this->getItemStackWithoutStackId(); @@ -158,23 +158,23 @@ protected function decodePayload(){ for($i = 0, $count = $this->getUnsignedVarInt(); $i < $count; ++$i){ $inputIdNet = $this->getVarInt(); $inputMetaNet = $this->getVarInt(); - [$input, $inputMeta] = ItemTranslator::getInstance()->fromNetworkId($inputIdNet, $inputMetaNet); + [$input, $inputMeta] = NetworkItemMapping::getInstance()->fromNetworkId($inputIdNet, $inputMetaNet); $ingredientIdNet = $this->getVarInt(); $ingredientMetaNet = $this->getVarInt(); - [$ingredient, $ingredientMeta] = ItemTranslator::getInstance()->fromNetworkId($ingredientIdNet, $ingredientMetaNet); + [$ingredient, $ingredientMeta] = NetworkItemMapping::getInstance()->fromNetworkId($ingredientIdNet, $ingredientMetaNet); $outputIdNet = $this->getVarInt(); $outputMetaNet = $this->getVarInt(); - [$output, $outputMeta] = ItemTranslator::getInstance()->fromNetworkId($outputIdNet, $outputMetaNet); + [$output, $outputMeta] = NetworkItemMapping::getInstance()->fromNetworkId($outputIdNet, $outputMetaNet); $this->potionTypeRecipes[] = new PotionTypeRecipe($input, $inputMeta, $ingredient, $ingredientMeta, $output, $outputMeta); } for($i = 0, $count = $this->getUnsignedVarInt(); $i < $count; ++$i){ //TODO: we discard inbound ID here, not safe because netID on its own might map to internalID+internalMeta for us $inputIdNet = $this->getVarInt(); - [$input,] = ItemTranslator::getInstance()->fromNetworkId($inputIdNet, 0); + [$input,] = NetworkItemMapping::getInstance()->fromNetworkId($inputIdNet, 0); $ingredientIdNet = $this->getVarInt(); - [$ingredient,] = ItemTranslator::getInstance()->fromNetworkId($ingredientIdNet, 0); + [$ingredient,] = NetworkItemMapping::getInstance()->fromNetworkId($ingredientIdNet, 0); $outputIdNet = $this->getVarInt(); - [$output,] = ItemTranslator::getInstance()->fromNetworkId($outputIdNet, 0); + [$output,] = NetworkItemMapping::getInstance()->fromNetworkId($outputIdNet, 0); $this->potionContainerRecipes[] = new PotionContainerChangeRecipe($input, $ingredient, $output); } for($i = 0, $count = $this->getUnsignedVarInt(); $i < $count; ++$i){ @@ -259,10 +259,10 @@ private static function writeShapedRecipe(ShapedRecipe $recipe, NetworkBinaryStr private static function writeFurnaceRecipe(FurnaceRecipe $recipe, NetworkBinaryStream $stream) : int{ $input = $recipe->getInput(); if($input->hasAnyDamageValue()){ - [$netId,] = ItemTranslator::getInstance()->toNetworkId($input->getId(), 0); + [$netId,] = NetworkItemMapping::getInstance()->toNetworkId($input->getId(), 0); $netData = 0x7fff; }else{ - [$netId, $netData] = ItemTranslator::getInstance()->toNetworkId($input->getId(), $input->getDamage()); + [$netId, $netData] = NetworkItemMapping::getInstance()->toNetworkId($input->getId(), $input->getDamage()); } $stream->putVarInt($netId); $stream->putVarInt($netData); diff --git a/src/pocketmine/network/mcpe/protocol/StartGamePacket.php b/src/pocketmine/network/mcpe/protocol/StartGamePacket.php index 824520ab..c13c551a 100644 --- a/src/pocketmine/network/mcpe/protocol/StartGamePacket.php +++ b/src/pocketmine/network/mcpe/protocol/StartGamePacket.php @@ -143,7 +143,7 @@ class StartGamePacket extends DataPacket{ public int $blockPaletteChecksum; public UUID $worldTemplateId; public bool $clientSideGeneration = false; - public bool $blockNetworkIdsAreHashes = false; + public bool $blockNetworkIdsAreHashes = true; public bool $serverAuthSound = true; protected function decodePayload(){ diff --git a/src/pocketmine/network/mcpe/protocol/UpdateBlockPacket.php b/src/pocketmine/network/mcpe/protocol/UpdateBlockPacket.php index 25d24dfd..076c2a4c 100644 --- a/src/pocketmine/network/mcpe/protocol/UpdateBlockPacket.php +++ b/src/pocketmine/network/mcpe/protocol/UpdateBlockPacket.php @@ -49,7 +49,7 @@ class UpdateBlockPacket extends DataPacket{ /** @var int */ public $y; /** @var int */ - public $blockRuntimeId; + public $blockNetworkId; /** @var int */ public $flags; /** @var int */ @@ -57,14 +57,14 @@ class UpdateBlockPacket extends DataPacket{ protected function decodePayload(){ $this->getBlockPosition($this->x, $this->y, $this->z); - $this->blockRuntimeId = $this->getUnsignedVarInt(); + $this->blockNetworkId = $this->getUnsignedVarInt(); $this->flags = $this->getUnsignedVarInt(); $this->dataLayerId = $this->getUnsignedVarInt(); } protected function encodePayload(){ $this->putBlockPosition($this->x, $this->y, $this->z); - $this->putUnsignedVarInt($this->blockRuntimeId); + $this->putUnsignedVarInt($this->blockNetworkId); $this->putUnsignedVarInt($this->flags); $this->putUnsignedVarInt($this->dataLayerId); } diff --git a/src/pocketmine/resources/vanilla/.gitattributes b/src/pocketmine/resources/vanilla/.gitattributes index e106df7d..d8a682ca 100644 --- a/src/pocketmine/resources/vanilla/.gitattributes +++ b/src/pocketmine/resources/vanilla/.gitattributes @@ -1,30 +1,3 @@ -# Auto detect text files and perform LF normalization -* text=auto -*.php text eol=lf -*.sh text eol=lf -*.txt text eol=lf -*.properties text eol=lf -*.json text eol=lf -*.bat text eol=crlf -*.cmd text eol=crlf -*.ps1 text eol=crlf - -# Custom for Visual Studio -*.cs diff=csharp -*.sln merge=union -*.csproj merge=union -*.vbproj merge=union -*.fsproj merge=union -*.dbproj merge=union - -# Standard to msysgit -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain +* text eol=lf +*.dat binary +*.nbt binary \ No newline at end of file diff --git a/src/pocketmine/resources/vanilla/biome_definitions.dat b/src/pocketmine/resources/vanilla/biome_definitions.dat new file mode 100644 index 0000000000000000000000000000000000000000..dfee570e48866c87a60fce4f93041093f7696468 GIT binary patch literal 41676 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�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

<8kA1=h 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 literal 0 HcmV?d00001 diff --git a/src/pocketmine/resources/vanilla/creative_contents.dat b/src/pocketmine/resources/vanilla/creative_contents.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e2e06a8ee61491ecccab3042c75b4588ded822d GIT binary patch literal 36449 zcmcKDdt6o7l_zk{JrB>l)FZE|R4S>wlTIf+nM`ITlgXre`dR7j=}FS*>X{^yuC7W| zO{Y4QRHiEFq|@mH5fKp)5fKp)5fKp)5fKp)5fKp)5fKp)5fKp)5fKq_?pk|N{MP#L z8Ll6-{``LSI%n;D_Bwmta}L(lXe(qzMO9{6p{RHM3lLQavWcn%IYc#rT%uY*9#Ng3 zc}M1jt@#6RM*o5xrna8~1uqh1V5?AiAWY@YL91w{3Z%!FDv=&%szQ2#sT%1?rW&Mo zF*PH-o2d@zJxujT?`5h*dLL5*(o;+=NKZ30BE6rf3F(>5PIx4;z6&Gqf#XC48}ULu zyM-*~S!njbJ8qc9YOvXdmUv++{slC9ZUIqG6*l|u3T_q+%|5c9E@jr!Kp!o%!qmPK zBR|I0A?)L9ox(oB)+OwdY~8{>#nvP2(R`vU^+3(J$ zVH!(C5dAQg`Fg{_Pl9?2FLs3#X_H zsjmV3y9Jb5=MRCtxR9t9kN@v4(XkqyfL8w@p7QVdCeVMpNUeIl2lSav@}H8Z zQ9=Od%gIE&n=$+UoI;i<>?`$TU0K-fzci3#vL*yTxC#w7g&>syDP5%n$kIxY$#^AyJ^cR+u3f~fjs zpyy8$C5b}&+DWnkJm;UEAxbO6bN)pK^)o9M?JxVtI+6a{H3}^f6YZ}qkaeuXcK^MC ztoTQe+}E!YjaOo`Z=}_ zZ#U5#jTN2$ABWgpf}{Pwg_4N(sTSzITME zAL;Lo67_utTD^FTC{s+^zrRPfx(;zic#OnP1e4@-CoZyw^+)9k> ztNUnZJAVVsUTdM_M}hqBZePhi^l14(ua?*QwESbgmLEqZ?7ln5oP+*jbwwnF!X2VXz(U++Wb>9 zHEY3P|M?Y~mW?<^esPs(@C_K_e{Q56jA9M_@-tyc6Z7F;dMU8(LlF2YrZ%L1WokwG zHB&FrZh7jcALEb)qF0>p)vX_prslcLtA02 z6D`eH586s&y=dviM$uLo8$`=6){VB>*f3hAu_3fI#=6k5jP;?dwPI;Zdk)}0XIqD9 zQ0s8bTxWedObxgz%CU}6v$8mhUC-^Bv0bh;MC~RQV7m=g6=B!Ez{Sin){VB&SPxph zv0k)I#`@3-jP;{!wvN+%pbuwTA?MtRId3t2D-nGw;&zSLZmVfmF4`5F4o`^=Z!jYWB1`IxIog_>XKX)6g zQ-otUb&pu5$-2bvt0wCV;WVzMN3FADm0~$XfuR<-EfX@fNaI}O$fJY%p_iMO*7p)y+nYbV7w^ovk z;k>(K(OxbWfA9=gFNG-%`+M2CNf*8>53kCgb(IF83e&q{eIZQ4c(@^^5u~e3qe#O{ zV@TJmemZ`PD2Wk+u>!9fj1xF&FkavdtCNn|jl(i#tt876zu|9M-wIor3qv|?y+EM{ za13r)n`mI_amzkoZ6+Ik9Aa-4NeGL5on|{ zPvfeP7T87inVx5009OWflMUcclk`9v#n$76Ulk~!b}=|K8G#{f-E1$KPPaK zED5ji`oJl&VVr}xfzxC;*y9a>Gh|uVk-WfJvI4OHZw#CxjK$vN2hNj?{0fG8Q{Vzw z%oaRzLEs_>M16u-D$olcjMS*s@c&*rOtFd0RVq-mM+l-B% zl^7dD+iq+at<+c>+74r#Xl2H_&~_RdLMu1chqlXD2U>-(0kqx5`q3(lwWIAZ){Ryb z=%jf$v=*<@UV~Ets|`*H+-ERRJa4Ko7$pI+hYiLEY&19`!jBl75ZDyxpz)l3A5_9oW64-<&Bl_@jv32BYcZCN zcHCGdTC1@bv=heS(b|k9pq(_9f!1y;1?`lvIJ6F9X=ta7rJ{8ji$yzQED^0MkViM! zc5&A@8|a`S@4)Bh-GOSdBC+D0Ggu|C$6%$v^9CCQ_8P1cc)?(Uz&?Y;0xudY6WDLC zT;L^x^#TVBRtvmruvFln!CHY=4Aux7GFT$;s=*3@!+{E#xHaP8-nBpj;n>$;Hjf1A z$r{D&`g)+9ut_|S9SyV)rr~z%Mxc#s9JkwJfl9Ig+^yUU)Q~0Oy=pvAOV)_X;H^L_ zS=9!-e@z4$36pVQy&b3~8^t~SWT2U>AMH+{oZE>vCsTnc!ZFO|ZlI2=Sp2q`4x|#M zirwZtgXsce?A^3~s>8Kr?Cn4NwP1%@fO?HX#+ZjmnzXdMa}BO(}X29ZA$YOU{8|R z3WP1Se-Ums@f|ovvQ4|ELU93>*-3PcQL!ybvHSVN_*-GQ-9`70Lfl5C+S_SZTf~p8 z6*k>IM({qJW`8(LX}GUnX@4k833%Pp?Vp4x_GQR;mHpW;ja6c2Gwf7KWEd~oYWt&M z8br#puTpPwu}0R|v6Nexczv2>ml9^a0_R<8@1x)^0cG23`FLwEmv#1fx*9oR=bB@0 zU=%Ia+nWh9#W?5M>j)D?_y&6;VS^~VJbNo)hL~C#?Jb1;;%894y^XK~)7)e~8>ZAc zv;w|Nqj;G%GmRq^GEE|FvDec;q=RA(hw%=?n!p z)wbJr=>)x^)JyGW!d8kkxPz$-sm#u$2~#8H{Z9MiVXF``x7>bj*s8>D(p}uHQnahE z>1|M!*vRbWc2%NXr5zn^*CU?)@8NdUqFt5!c(`3B4#8f#jwWT>w_yfW+fRmRK&%A& zOuKe$S7X0B+^!OD=KJkKRH%vgo2J%2OqNuKv*LigpDMpm-2dwAbA)3B*z%x#fUrh9 zY^=A>6K0DyeuwN$gt31FeQ7Y3jCR;q99pBX6tpA8;?bInrJ@}*mVnl5EDi0Lu|%{M zW9ewejU}PA8p}XCVV|dg9mJKm&Avc3j`Q-QeUhg66yCMk?Nel(VpLDrCkWfbMd`3l z6E=x$#cBJKVT%!Wo=&z{VQ1LlgmtmS3p;Dq(li{!#jD%c7}_~|8+ETpOzR$d5tVG> z9t$q~d3!NothkZ&+K+{80Jp0bmzNwnr_+6bkpp^JH~{aqnq8f`)Reo9!=WSy44-Kiav(JR#SEn9l!Kd7}vY@ zPM&RId7ie*sbQ;_TKDWi{X#y*`Gat?LflZyce?3#t-pqI#B#F&Y_`BOYr$r5PQO0E zLT4cztx1$-yuk*6iwrgjOfXn4aIwK=fr$p&1uikzDlo}lo4}<8TLdN>>=3xjSxh~O z!OyNzj7{NnS#E3^E!Eg0+6rT_c)T=c37sPa?*S`~C84DoOGaB|Oe}aA#>ASs+SyBW zJ0TYCOlKcq+{T-Qw#C^-)3nPe(Ny8&Xxi=MYN~Wf zHSKWj+C; zf6TNgX~HSg zy}j+!=vI@?SHrm_iZ6lhI7K>g%K1UK**ISLyG|{2s{wx;O&e=OyJxHkEym^8X0-Xn zTF_#RwW2L>mry;H;=L-)9iv>bM42sg_tHJ6LA+y+cQ;XVGtTuz?q;&u94wRscMD;; z*k>(vw-Pqu!`?)9Ko9B?x0{;bJWg^4b*rWBkfvmJSkp3hL{o}est>>1P0*C;wrX18 zj_PBjxkE>%%;}&Sjatk%Bb!#+byS19uxpkUy z+e`V39km zX{#Hf1B=~QP21cYO(kxFrtNOLrc!rA(+)RHQ<4(kXxjw!7bNx*saji=vHbv;>KxeayvC0b*nTryUm)8xgDBX+%8SW-BC@g?wF<% z?)SsD)uL$FV70mXX|2i<3)o5biLgzJ-B7z*LQ6z_9Ny$lxy6L}Vo%!P7V>H@){WC{ zlU@@$-BAke!6&w7+!Ts!dj(SLa(l=saQ}YR9nd?SZg)`AIrr1yz-oM_+rw0YblzP= z>)a%MV%KYI3hjciX|z6LG5FciMPspO{l?WxMLGBFx4e)v&votOhrt*W8PA(JFDVA8|KOy9V(r;<}qdyI5SXN8JKV zH{23UV{VP6n{I`sakp95`7JkBx0-MZHQjbgHBGv;n(nxjnx@NL&wsx-xVt@?}$ynNj%&MVfm&@0yz@6~Hs>hu|xc_X@2iZ`KYx!0~K)l1T6T;auNO7j}^8CQD4`dI1SxTaNJ zo2CpeQ6GM_H?3P`dJX!FYrG-dD$5(wwAO3Ylv|* zybMiwUY4efUZ$peuSuVAlh>*9D)16@tIb}QZdJ(S;jLo}(>$aiCLd`lQxK_`DTK6* zDH^GS=`p13Opha#GChH`gXu}6GNyMS?PPj4QaRImkajV>7pa2jeMq~RoLqJB;pJ&+^E&nB=A>7vTeW)`nofC{nmW8hO{cvCO`TqqrZZlhrY^5k(^)TD zQ@2;4>6}-me{c18S-RDEFIBhd_0si7T=07Iji%2V);Fz-UXwmnzt^G9c*$$khad3L zbl_z#Mbn^{p?`Q>@kVuCLrfMOPJ! zi6m}%19}L@y%HUG%PZA1;gxB+?Uieq^jb9C@#6J(O?hLw)m?8&)3n#2FULJEPPdAg z*REU5XA+kqmPw4n0w!@e;+VwcSjZ$UM?90b9E+I5YujQbv9={LiM4GBlUUo5 zn8ez)lu4{@$xLExTgD{TwiG6@wk>B8Yg;OlSld=GiM1__Nvv%vnZ(+b&Lq~hRZL=S z%U}{~+iE7Uwq-JjwQUWPSlhCg#M-u&Nvv(zOk!15R4|Ex+07&hrjkh%%pN9D zFjY*VVD>VJf~jT_1+$My6if}1D46|BqF`#7M8OMU|N|(!JJ?c1=GeP z3g#q}D46znBf4NtF^PidU=js$nn@H)CzB|cGfbjjx|l@4oMjRP)6FCb<{XnKm>wok zFz1;>!SphTg1NvX3Z{=q6wE~?Q84{XqF^pDiGmqm5(RUaNfgW=lPH)gOrl_hm_)%` zWfBE5%p?lt8j~oP5hhVE*O^4Yj53LWxxpj~W{gP`%uOayFyl<3U~Vyqf|+0v1#_E8 z6wD-(D407;qF|<&M8Vu;5(P8OBnsvplPH)NpQ=L?%zS@X@AzWWxypLxRQ*IHHn7#>2Vy-S`5>=bXBieCQ%AYnM9=}Gl_Cv#w02&g-O)o zawc)>NM#atfEE6$;fJv)_%E`h`K#!cP6fX7UFq+l=icMuNp8Bojvls;h=<6l{M8hl zD?SI!@ORNw$rGQMtoC;kX5e3GX8L=`3h?Fk8h$Z@@Ym@G^DOf$SSNtTM$dI3`>8hWiY1mKIbj?rGG~&nTPF?pqbgNOnQ_~H7L)MDJIyXX@0O*Q*5wL z(}LiH?si--E!=IfEn3JVHazi6Vk5SQNo>Rtn8YHpm`QHxf@w7Aig58=5?n)f+dQ!x zBn5X@(-LwkgikA}X(X>3+t0^@&ttY~Y;55B| z$77`hV|1&P!B|b{!6_ZMD%hvbm=SE(mt}RZR#RrMP1pIFV81?ARxn8?u{M~eDLWXe zkF_osqbVnts{_{u$2H{!hjgkNg6+ChUNA$l?5~PJ#lAnNT0Dh zIH74*uvH(cBABRYcd%JgWw1}vo?wPPd{r=q3b0!2yY~jK(L5}C4%VCMV5RQBzF@pQ zLrpM2)Ba$BK51<*o9T1+?$KU4=tRBt<5zybhYtjzUVk+zDqu&w@lUiZeCNLd5yk}G zi3sm0BaE>j=3s;|4#d>Y5o68LpFO;=V3z(Ii7*EH(-dJ0 z_UCAXG1#BxIb!Tt`g1J880=3=gfZBk;}OPSe_H2=ac1eyi3nq`KW!1lV1G_V7=!(3 zpCiVdr9Y=4jKThNL>PnpIXy>=H%o4v5yoI{XCjQj+`8t7nKw&rXCsWk+`1!-!Q9Tx z5#!I2ThAOZ!C7L?M;L?s>5VW3`*R_}7@XIA5yrT%mRy`8CN#?!^hX$jV{j?L7#xFv z2xD*zE=L%HV=y>JO!O>ca3#VR9D|_Pm)#YGr{xh;$^2IpIRgfTeZ7R?d!zFEc~A;K6OgT-^iJT=RC66c6{ zdX|_abHu!VmYAdnW3WFX34EM!WhhLTZA!~TS;g{Km6Yw8rM`B8r8HTG^VL6G@)r{Xi`&oC{{le-xW&G zR1r$nv^$ijsWOzLX-_CcQ&lKc)80^;rs_}}y+TX)Ey94?CFuwKb)f?Np#NYfUsHW(NFVD^sDxe&4&cW&4WSH5V*vk^ zi^HKrvI+6eVKj!aDR@wP$aEyMjt&evEK7w1n~=I)LNY9a>75j9)063nfw7br{?e%BQo$_dA=nVZbdVX}Krr79o zO$(y4G{r?{Yg!ncqbWW*SJR^CJWUDFnS80gY*G&eqn>~Lt=E43=375}JA7aMvtRt= zjW^$Z{mmc0%{{TasOR5!{U3fn-#h;Hzs3LW04uFIj=&4YyvN@;{-3=0#+&p%poxl_ z_t-o5{L8PtMr1uXLvOtP$`4qfBr41E=Rc%Jfnn zIK9UoWqKE3b#PMU#2${raJqyf$!N z!TZYVq3z9NUWH3;%;c5FdD-`s*F)Qs$-KV!!h)H+HgaCk_m$T}+l|S*e!pXSCa-+X zD|BCZJ+y6@%4cmURhaB&*Zf^ ix>rBLD~vu%k8lUXi-|4KHM(6<^o0JKqOH;6n*J|r{*ZkD literal 0 HcmV?d00001 diff --git a/src/pocketmine/resources/vanilla/creative_items.json b/src/pocketmine/resources/vanilla/creative_items.json new file mode 100644 index 00000000..4bd0ab60 --- /dev/null +++ b/src/pocketmine/resources/vanilla/creative_items.json @@ -0,0 +1,6214 @@ +{ + "items": [ + { + "id": "minecraft:oak_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQFAAAACAQAbmFtZRQAbWluZWNyYWZ0Om9ha19wbGFua3MECQBuYW1lX2hhc2ilMDLR92rQ4wMKAG5ldHdvcmtfaWS2GotyCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:spruce_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTiAwAACAQAbmFtZRcAbWluZWNyYWZ0OnNwcnVjZV9wbGFua3MECQBuYW1lX2hhc2iumBkmFGFE8gMKAG5ldHdvcmtfaWSo8TFgCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:birch_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTjAwAACAQAbmFtZRYAbWluZWNyYWZ0OmJpcmNoX3BsYW5rcwQJAG5hbWVfaGFzaLrrAKJqV2WFAwoAbmV0d29ya19pZL+e3ZAKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:jungle_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTkAwAACAQAbmFtZRcAbWluZWNyYWZ0Omp1bmdsZV9wbGFua3MECQBuYW1lX2hhc2iBM3k4T3FAugMKAG5ldHdvcmtfaWSXUmBCCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:acacia_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTlAwAACAQAbmFtZRcAbWluZWNyYWZ0OmFjYWNpYV9wbGFua3MECQBuYW1lX2hhc2g60edJxO5/aAMKAG5ldHdvcmtfaWTUXozECgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dark_oak_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTmAwAACAQAbmFtZRkAbWluZWNyYWZ0OmRhcmtfb2FrX3BsYW5rcwQJAG5hbWVfaGFzaAr64wkQ9cA7AwoAbmV0d29ya19pZFbMeR0KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mangrove_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTlAgAACAQAbmFtZRkAbWluZWNyYWZ0Om1hbmdyb3ZlX3BsYW5rcwQJAG5hbWVfaGFzaPvLtcEA0F8xAwoAbmV0d29ya19pZEvnlCYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cherry_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQYAwAACAQAbmFtZRcAbWluZWNyYWZ0OmNoZXJyeV9wbGFua3MECQBuYW1lX2hhc2hNIvVh/lVW7gMKAG5ldHdvcmtfaWQTXpRoCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bamboo_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT9AgAACAQAbmFtZRcAbWluZWNyYWZ0OmJhbWJvb19wbGFua3MECQBuYW1lX2hhc2gYnjNz7SCCjgMKAG5ldHdvcmtfaWTi8ySSCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bamboo_mosaic", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT8AgAACAQAbmFtZRcAbWluZWNyYWZ0OmJhbWJvb19tb3NhaWMECQBuYW1lX2hhc2izSEgiMKOp/AMKAG5ldHdvcmtfaWQZ/p8xCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:crimson_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTxAQAACAQAbmFtZRgAbWluZWNyYWZ0OmNyaW1zb25fcGxhbmtzBAkAbmFtZV9oYXNoJc5IKqNXJnwDCgBuZXR3b3JrX2lkwtJDdQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:warped_planks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTyAQAACAQAbmFtZRcAbWluZWNyYWZ0OndhcnBlZF9wbGFua3MECQBuYW1lX2hhc2g3yGXEWhe6LgMKAG5ldHdvcmtfaWStTABvCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWSE4JosCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlCwBjb2JibGVzdG9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWTUvV6XCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlEQBtb3NzeV9jb2JibGVzdG9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWT4opb2CgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlBwBncmFuaXRlCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfZWFzdAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX25vcnRoBABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfc291dGgEAG5vbmUIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV93ZXN0BABub25lAQ0Ad2FsbF9wb3N0X2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWQAMQTVCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlBwBkaW9yaXRlCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfZWFzdAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX25vcnRoBABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfc291dGgEAG5vbmUIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV93ZXN0BABub25lAQ0Ad2FsbF9wb3N0X2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWQIbDOcCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlCABhbmRlc2l0ZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWSZKhusCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlCQBzYW5kc3RvbmUIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWSp4zgCCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlDQByZWRfc2FuZHN0b25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfZWFzdAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX25vcnRoBABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfc291dGgEAG5vbmUIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV93ZXN0BABub25lAQ0Ad2FsbF9wb3N0X2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWRbqVHTCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlCwBzdG9uZV9icmljawgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWRr0ZT/CgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlEQBtb3NzeV9zdG9uZV9icmljawgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWRnLis3CgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlBQBicmljawgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWQNLzfSCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlDABuZXRoZXJfYnJpY2sIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWQ5h0xwCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlEAByZWRfbmV0aGVyX2JyaWNrCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfZWFzdAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX25vcnRoBABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfc291dGgEAG5vbmUIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV93ZXN0BABub25lAQ0Ad2FsbF9wb3N0X2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWS9J0B2CgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlCQBlbmRfYnJpY2sIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cobblestone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3dhbGwECQBuYW1lX2hhc2hZu/xE7lYtNgMKAG5ldHdvcmtfaWRPbkJeCgYAc3RhdGVzCA8Ad2FsbF9ibG9ja190eXBlCgBwcmlzbWFyaW5lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfZWFzdAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX25vcnRoBABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfc291dGgEAG5vbmUIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV93ZXN0BABub25lAQ0Ad2FsbF9wb3N0X2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:blackstone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQUAgAACAQAbmFtZRkAbWluZWNyYWZ0OmJsYWNrc3RvbmVfd2FsbAQJAG5hbWVfaGFzaMP8XppUSU1RAwoAbmV0d29ya19pZMbeBBsKBgBzdGF0ZXMIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_blackstone_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQoAgAACAQAbmFtZSIAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfd2FsbAQJAG5hbWVfaGFzaP6SwV08YwzAAwoAbmV0d29ya19pZAJLsz8KBgBzdGF0ZXMIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_blackstone_brick_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQVAgAACAQAbmFtZSgAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfYnJpY2tfd2FsbAQJAG5hbWVfaGFzaBBIDZbHxiEzAwoAbmV0d29ya19pZEbLV8cKBgBzdGF0ZXMIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cobbled_deepslate_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR9AgAACAQAbmFtZSAAbWluZWNyYWZ0OmNvYmJsZWRfZGVlcHNsYXRlX3dhbGwECQBuYW1lX2hhc2iECY5oKxeT+gMKAG5ldHdvcmtfaWRCnPrFCgYAc3RhdGVzCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfZWFzdAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX25vcnRoBABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfc291dGgEAG5vbmUIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV93ZXN0BABub25lAQ0Ad2FsbF9wb3N0X2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:deepslate_tile_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSFAgAACAQAbmFtZR0AbWluZWNyYWZ0OmRlZXBzbGF0ZV90aWxlX3dhbGwECQBuYW1lX2hhc2jz7N+PeuEXgQMKAG5ldHdvcmtfaWTqw4s4CgYAc3RhdGVzCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfZWFzdAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX25vcnRoBABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfc291dGgEAG5vbmUIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV93ZXN0BABub25lAQ0Ad2FsbF9wb3N0X2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:polished_deepslate_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSBAgAACAQAbmFtZSEAbWluZWNyYWZ0OnBvbGlzaGVkX2RlZXBzbGF0ZV93YWxsBAkAbmFtZV9oYXNoHxjTdj9pevMDCgBuZXR3b3JrX2lkIvBYYwoGAHN0YXRlcwgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:deepslate_brick_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSJAgAACAQAbmFtZR4AbWluZWNyYWZ0OmRlZXBzbGF0ZV9icmlja193YWxsBAkAbmFtZV9oYXNoEs3EQrjroyEDCgBuZXR3b3JrX2lkwlrCGwoGAHN0YXRlcwgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:mud_brick_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTgAgAACAQAbmFtZRgAbWluZWNyYWZ0Om11ZF9icmlja193YWxsBAkAbmFtZV9oYXNov9b98ATpUSwDCgBuZXR3b3JrX2lkH/1WZQoGAHN0YXRlcwgZAHdhbGxfY29ubmVjdGlvbl90eXBlX2Vhc3QEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9ub3J0aAQAbm9uZQgaAHdhbGxfY29ubmVjdGlvbl90eXBlX3NvdXRoBABub25lCBkAd2FsbF9jb25uZWN0aW9uX3R5cGVfd2VzdAQAbm9uZQENAHdhbGxfcG9zdF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:oak_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRVAAAACAQAbmFtZRMAbWluZWNyYWZ0Om9ha19mZW5jZQQJAG5hbWVfaGFzaGEmid7AaCWRAwoAbmV0d29ya19pZDvPEXcKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:spruce_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRCAwAACAQAbmFtZRYAbWluZWNyYWZ0OnNwcnVjZV9mZW5jZQQJAG5hbWVfaGFzaPQCm+aX1ZQeAwoAbmV0d29ya19pZD1QUEoKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:birch_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ/AwAACAQAbmFtZRUAbWluZWNyYWZ0OmJpcmNoX2ZlbmNlBAkAbmFtZV9oYXNo6CJ2ATpANfgDCgBuZXR3b3JrX2lkmCUV2QoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:jungle_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRBAwAACAQAbmFtZRYAbWluZWNyYWZ0Omp1bmdsZV9mZW5jZQQJAG5hbWVfaGFzaOX4cD9uAmsdAwoAbmV0d29ya19pZHz1VxkKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:acacia_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ+AwAACAQAbmFtZRYAbWluZWNyYWZ0OmFjYWNpYV9mZW5jZQQJAG5hbWVfaGFzaGjn+RlKVDH6AwoAbmV0d29ya19pZNVGubwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dark_oak_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRAAwAACAQAbmFtZRgAbWluZWNyYWZ0OmRhcmtfb2FrX2ZlbmNlBAkAbmFtZV9oYXNoGPj0gCgM0c0DCgBuZXR3b3JrX2lk2w+gEwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:mangrove_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTqAgAACAQAbmFtZRgAbWluZWNyYWZ0Om1hbmdyb3ZlX2ZlbmNlBAkAbmFtZV9oYXNowwAd7tPu9bsDCgBuZXR3b3JrX2lkKEcd0goGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cherry_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQTAwAACAQAbmFtZRYAbWluZWNyYWZ0OmNoZXJyeV9mZW5jZQQJAG5hbWVfaGFzaFmtUfHfTxcxAwoAbmV0d29ya19pZPCBxAIKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:bamboo_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQCAwAACAQAbmFtZRYAbWluZWNyYWZ0OmJhbWJvb19mZW5jZQQJAG5hbWVfaGFzaCKRbxfXsfkiAwoAbmV0d29ya19pZJNXKFcKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:nether_brick_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRxAAAACAQAbmFtZRwAbWluZWNyYWZ0Om5ldGhlcl9icmlja19mZW5jZQQJAG5hbWVfaGFzaA6030ngawxcAwoAbmV0d29ya19pZLnjLF4KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crimson_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT/AQAACAQAbmFtZRcAbWluZWNyYWZ0OmNyaW1zb25fZmVuY2UECQBuYW1lX2hhc2jhUhKv1HGj9AMKAG5ldHdvcmtfaWR3OH3OCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:warped_fence", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQAAgAACAQAbmFtZRYAbWluZWNyYWZ0OndhcnBlZF9mZW5jZQQJAG5hbWVfaGFzaJfb3/YuKmOWAwoAbmV0d29ya19pZCpaGC8KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRrAAAACAQAbmFtZRQAbWluZWNyYWZ0OmZlbmNlX2dhdGUECQBuYW1lX2hhc2hTxpjEDmRzAwMKAG5ldHdvcmtfaWR+T9kTCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAELAGluX3dhbGxfYml0AAEIAG9wZW5fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:spruce_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS3AAAACAQAbmFtZRsAbWluZWNyYWZ0OnNwcnVjZV9mZW5jZV9nYXRlBAkAbmFtZV9oYXNoanTVB84HRbkDCgBuZXR3b3JrX2lkEnw5egoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCwBpbl93YWxsX2JpdAABCABvcGVuX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:birch_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS4AAAACAQAbmFtZRoAbWluZWNyYWZ0OmJpcmNoX2ZlbmNlX2dhdGUECQBuYW1lX2hhc2jmfPklI8azSwMKAG5ldHdvcmtfaWQL77/BCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAELAGluX3dhbGxfYml0AAEIAG9wZW5fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:jungle_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS5AAAACAQAbmFtZRsAbWluZWNyYWZ0Omp1bmdsZV9mZW5jZV9nYXRlBAkAbmFtZV9oYXNobYVQkfBomIcDCgBuZXR3b3JrX2lkA1zgtgoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCwBpbl93YWxsX2JpdAABCABvcGVuX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:acacia_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS7AAAACAQAbmFtZRsAbWluZWNyYWZ0OmFjYWNpYV9mZW5jZV9nYXRlBAkAbmFtZV9oYXNoZnrLUx/XSekDCgBuZXR3b3JrX2lkHg/kTgoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCwBpbl93YWxsX2JpdAABCABvcGVuX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dark_oak_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS6AAAACAQAbmFtZR0AbWluZWNyYWZ0OmRhcmtfb2FrX2ZlbmNlX2dhdGUECQBuYW1lX2hhc2j2PTvdJJHcVQMKAG5ldHdvcmtfaWTwjOCeCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAELAGluX3dhbGxfYml0AAEIAG9wZW5fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:mangrove_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTrAgAACAQAbmFtZR0AbWluZWNyYWZ0Om1hbmdyb3ZlX2ZlbmNlX2dhdGUECQBuYW1lX2hhc2i/kOhBKiI/dAMKAG5ldHdvcmtfaWSfweCSCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAELAGluX3dhbGxfYml0AAEIAG9wZW5fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cherry_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQUAwAACAQAbmFtZRsAbWluZWNyYWZ0OmNoZXJyeV9mZW5jZV9nYXRlBAkAbmFtZV9oYXNoKWLgCk0z+PsDCgBuZXR3b3JrX2lk/9bTZQoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCwBpbl93YWxsX2JpdAABCABvcGVuX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:bamboo_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQDAwAACAQAbmFtZRsAbWluZWNyYWZ0OmJhbWJvb19mZW5jZV9nYXRlBAkAbmFtZV9oYXNopH1JrUgwdIADCgBuZXR3b3JrX2lkzIpPywoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCwBpbl93YWxsX2JpdAABCABvcGVuX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crimson_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQBAgAACAQAbmFtZRwAbWluZWNyYWZ0OmNyaW1zb25fZmVuY2VfZ2F0ZQQJAG5hbWVfaGFzaHE3Gfd0Z2d2AwoAbmV0d29ya19pZDQzVbEKBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQsAaW5fd2FsbF9iaXQAAQgAb3Blbl9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:warped_fence_gate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQCAgAACAQAbmFtZRsAbWluZWNyYWZ0OndhcnBlZF9mZW5jZV9nYXRlBAkAbmFtZV9oYXNoy0oIBjDIG4kDCgBuZXR3b3JrX2lkkf+/3QoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCwBpbl93YWxsX2JpdAABCABvcGVuX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:normal_stone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSzAQAACAQAbmFtZR0AbWluZWNyYWZ0Om5vcm1hbF9zdG9uZV9zdGFpcnMECQBuYW1lX2hhc2hAEktZZOkGIwMKAG5ldHdvcmtfaWQeH1ALCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRDAAAACAQAbmFtZRYAbWluZWNyYWZ0OnN0b25lX3N0YWlycwQJAG5hbWVfaGFzaNRjqVC5GRVDAwoAbmV0d29ya19pZDcCv+MKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mossy_cobblestone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSyAQAACAQAbmFtZSIAbWluZWNyYWZ0Om1vc3N5X2NvYmJsZXN0b25lX3N0YWlycwQJAG5hbWVfaGFzaMVSTq5z9n1RAwoAbmV0d29ya19pZFIfrhkKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:oak_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ1AAAACAQAbmFtZRQAbWluZWNyYWZ0Om9ha19zdGFpcnMECQBuYW1lX2hhc2jk/HFzdXy0FQMKAG5ldHdvcmtfaWQJjyzBCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:spruce_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSGAAAACAQAbmFtZRcAbWluZWNyYWZ0OnNwcnVjZV9zdGFpcnMECQBuYW1lX2hhc2iznygw7uBPBQMKAG5ldHdvcmtfaWTv+is3CgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:birch_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSHAAAACAQAbmFtZRYAbWluZWNyYWZ0OmJpcmNoX3N0YWlycwQJAG5hbWVfaGFzaPfhbL619a3GAwoAbmV0d29ya19pZFyPlHAKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:jungle_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSIAAAACAQAbmFtZRcAbWluZWNyYWZ0Omp1bmdsZV9zdGFpcnMECQBuYW1lX2hhc2jodJsHUbOVxQMKAG5ldHdvcmtfaWR0z5d4CgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:acacia_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSjAAAACAQAbmFtZRcAbWluZWNyYWZ0OmFjYWNpYV9zdGFpcnMECQBuYW1lX2hhc2h3x1NmD43IqQMKAG5ldHdvcmtfaWS7Jwz6CgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dark_oak_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSkAAAACAQAbmFtZRkAbWluZWNyYWZ0OmRhcmtfb2FrX3N0YWlycwQJAG5hbWVfaGFzaMfwkbYPbNmAAwoAbmV0d29ya19pZCmBYKAKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mangrove_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTnAgAACAQAbmFtZRkAbWluZWNyYWZ0Om1hbmdyb3ZlX3N0YWlycwQJAG5hbWVfaGFzaNpUDY+uGMpyAwoAbmV0d29ya19pZChzUAsKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cherry_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQcAwAACAQAbmFtZRcAbWluZWNyYWZ0OmNoZXJyeV9zdGFpcnMECQBuYW1lX2hhc2jMtr0v9JY4zwMKAG5ldHdvcmtfaWRQwq31CgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bamboo_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT/AgAACAQAbmFtZRcAbWluZWNyYWZ0OmJhbWJvb19zdGFpcnMECQBuYW1lX2hhc2jFOzWL8PalKwMKAG5ldHdvcmtfaWTVPh42CgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bamboo_mosaic_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQKAwAACAQAbmFtZR4AbWluZWNyYWZ0OmJhbWJvb19tb3NhaWNfc3RhaXJzBAkAbmFtZV9oYXNoNLPiveSHPaoDCgBuZXR3b3JrX2lk44PHjgoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRtAAAACAQAbmFtZRwAbWluZWNyYWZ0OnN0b25lX2JyaWNrX3N0YWlycwQJAG5hbWVfaGFzaN6tQViRo5cwAwoAbmV0d29ya19pZDMyMgIKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mossy_stone_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSuAQAACAQAbmFtZSIAbWluZWNyYWZ0Om1vc3N5X3N0b25lX2JyaWNrX3N0YWlycwQJAG5hbWVfaGFzaIB/Zv5YBPuYAwoAbmV0d29ya19pZANTOsMKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sandstone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSAAAAACAQAbmFtZRoAbWluZWNyYWZ0OnNhbmRzdG9uZV9zdGFpcnMECQBuYW1lX2hhc2hOyA0BoYUOPQMKAG5ldHdvcmtfaWSV/834CgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:smooth_sandstone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSwAQAACAQAbmFtZSEAbWluZWNyYWZ0OnNtb290aF9zYW5kc3RvbmVfc3RhaXJzBAkAbmFtZV9oYXNoB+CuCd8Ruz8DCgBuZXR3b3JrX2lksR+m8QoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:red_sandstone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS0AAAACAQAbmFtZR4AbWluZWNyYWZ0OnJlZF9zYW5kc3RvbmVfc3RhaXJzBAkAbmFtZV9oYXNoPs0LpHPL24YDCgBuZXR3b3JrX2lkLYVt3woGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:smooth_red_sandstone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSvAQAACAQAbmFtZSUAbWluZWNyYWZ0OnNtb290aF9yZWRfc2FuZHN0b25lX3N0YWlycwQJAG5hbWVfaGFzaBvjtQv5pf+MAwoAbmV0d29ya19pZMHNND8KBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:granite_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSoAQAACAQAbmFtZRgAbWluZWNyYWZ0OmdyYW5pdGVfc3RhaXJzBAkAbmFtZV9oYXNoGzpvtoqKQjgDCgBuZXR3b3JrX2lkPkcB1goGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_granite_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSrAQAACAQAbmFtZSEAbWluZWNyYWZ0OnBvbGlzaGVkX2dyYW5pdGVfc3RhaXJzBAkAbmFtZV9oYXNo3PvbSfEQklIDCgBuZXR3b3JrX2lkMmEm3AoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:diorite_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSpAQAACAQAbmFtZRgAbWluZWNyYWZ0OmRpb3JpdGVfc3RhaXJzBAkAbmFtZV9oYXNoi73T8VQuZmcDCgBuZXR3b3JrX2lk6i6nBQoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_diorite_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSsAQAACAQAbmFtZSEAbWluZWNyYWZ0OnBvbGlzaGVkX2Rpb3JpdGVfc3RhaXJzBAkAbmFtZV9oYXNoFKRJd5Wk5L0DCgBuZXR3b3JrX2lkbt2ioAoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:andesite_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSqAQAACAQAbmFtZRkAbWluZWNyYWZ0OmFuZGVzaXRlX3N0YWlycwQJAG5hbWVfaGFzaO5w2FKBw76EAwoAbmV0d29ya19pZKhXEgUKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:polished_andesite_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWStAQAACAQAbmFtZSIAbWluZWNyYWZ0OnBvbGlzaGVkX2FuZGVzaXRlX3N0YWlycwQJAG5hbWVfaGFzaNcZZ/zmLInIAwoAbmV0d29ya19pZJTHrlEKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRsAAAACAQAbmFtZRYAbWluZWNyYWZ0OmJyaWNrX3N0YWlycwQJAG5hbWVfaGFzaMyt+cRDk5O2AwoAbmV0d29ya19pZNeMh58KBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:nether_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRyAAAACAQAbmFtZR0AbWluZWNyYWZ0Om5ldGhlcl9icmlja19zdGFpcnMECQBuYW1lX2hhc2jRqIoOXgifBAMKAG5ldHdvcmtfaWQDiw5yCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:red_nether_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS3AQAACAQAbmFtZSEAbWluZWNyYWZ0OnJlZF9uZXRoZXJfYnJpY2tfc3RhaXJzBAkAbmFtZV9oYXNogQvosSbcj7kDCgBuZXR3b3JrX2lkx2IMtAoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:end_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSxAQAACAQAbmFtZRoAbWluZWNyYWZ0OmVuZF9icmlja19zdGFpcnMECQBuYW1lX2hhc2hmlAk+QhsUsQMKAG5ldHdvcmtfaWTN7KFaCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:quartz_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWScAAAACAQAbmFtZRcAbWluZWNyYWZ0OnF1YXJ0el9zdGFpcnMECQBuYW1lX2hhc2hmvpvOqGi6egMKAG5ldHdvcmtfaWRmUTh7CgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:smooth_quartz_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS4AQAACAQAbmFtZR4AbWluZWNyYWZ0OnNtb290aF9xdWFydHpfc3RhaXJzBAkAbmFtZV9oYXNoNZZ9rX0qZOsDCgBuZXR3b3JrX2lkzsgQyQoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:purpur_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTLAAAACAQAbmFtZRcAbWluZWNyYWZ0OnB1cnB1cl9zdGFpcnMECQBuYW1lX2hhc2ifwDxeezXD7gMKAG5ldHdvcmtfaWTT+rxiCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:prismarine_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQBAQAACAQAbmFtZRsAbWluZWNyYWZ0OnByaXNtYXJpbmVfc3RhaXJzBAkAbmFtZV9oYXNooTHSZ+IrYtcDCgBuZXR3b3JrX2lkxTJfeAoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:dark_prismarine_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQCAQAACAQAbmFtZSAAbWluZWNyYWZ0OmRhcmtfcHJpc21hcmluZV9zdGFpcnMECQBuYW1lX2hhc2hIciLmam4o4AMKAG5ldHdvcmtfaWTVu7TCCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:prismarine_bricks_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQDAQAACAQAbmFtZSIAbWluZWNyYWZ0OnByaXNtYXJpbmVfYnJpY2tzX3N0YWlycwQJAG5hbWVfaGFzaNIjq1oBlZMMAwoAbmV0d29ya19pZGEFwLYKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crimson_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT9AQAACAQAbmFtZRgAbWluZWNyYWZ0OmNyaW1zb25fc3RhaXJzBAkAbmFtZV9oYXNoZJqIzCBpCq4DCgBuZXR3b3JrX2lktXE00AoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:warped_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT+AQAACAQAbmFtZRcAbWluZWNyYWZ0OndhcnBlZF9zdGFpcnMECQBuYW1lX2hhc2hOkY27jLD4RQMKAG5ldHdvcmtfaWQ+E5VrCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:blackstone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQTAgAACAQAbmFtZRsAbWluZWNyYWZ0OmJsYWNrc3RvbmVfc3RhaXJzBAkAbmFtZV9oYXNokdoUb76p9McDCgBuZXR3b3JrX2lk5fWI5goGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_blackstone_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQjAgAACAQAbmFtZSQAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfc3RhaXJzBAkAbmFtZV9oYXNolCFtFIE8MmADCgBuZXR3b3JrX2lkGTf7sgoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_blackstone_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQSAgAACAQAbmFtZSoAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfYnJpY2tfc3RhaXJzBAkAbmFtZV9oYXNonks6UlfpOmkDCgBuZXR3b3JrX2lkgYeOdAoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cut_copper_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhAgAACAQAbmFtZRsAbWluZWNyYWZ0OmN1dF9jb3BwZXJfc3RhaXJzBAkAbmFtZV9oYXNoHfoAXYq5G3MDCgBuZXR3b3JrX2lkeetf7woGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:exposed_cut_copper_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRiAgAACAQAbmFtZSMAbWluZWNyYWZ0OmV4cG9zZWRfY3V0X2NvcHBlcl9zdGFpcnMECQBuYW1lX2hhc2howneQGtZ9cgMKAG5ldHdvcmtfaWSg73zdCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:weathered_cut_copper_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRjAgAACAQAbmFtZSUAbWluZWNyYWZ0OndlYXRoZXJlZF9jdXRfY29wcGVyX3N0YWlycwQJAG5hbWVfaGFzaP+R5loXxrVgAwoAbmV0d29ya19pZOnbRf4KBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:oxidized_cut_copper_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRkAgAACAQAbmFtZSQAbWluZWNyYWZ0Om94aWRpemVkX2N1dF9jb3BwZXJfc3RhaXJzBAkAbmFtZV9oYXNo6Jeoq5rsPxsDCgBuZXR3b3JrX2lkmRjDnQoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_cut_copper_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRlAgAACAQAbmFtZSEAbWluZWNyYWZ0OndheGVkX2N1dF9jb3BwZXJfc3RhaXJzBAkAbmFtZV9oYXNoh07CQj0/SR8DCgBuZXR3b3JrX2lkmYqoqAoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_exposed_cut_copper_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRmAgAACAQAbmFtZSkAbWluZWNyYWZ0OndheGVkX2V4cG9zZWRfY3V0X2NvcHBlcl9zdGFpcnMECQBuYW1lX2hhc2guVct1ilmxTwMKAG5ldHdvcmtfaWQgCPROCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_weathered_cut_copper_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRnAgAACAQAbmFtZSsAbWluZWNyYWZ0OndheGVkX3dlYXRoZXJlZF9jdXRfY29wcGVyX3N0YWlycwQJAG5hbWVfaGFzaPXC8Sz/phCpAwoAbmV0d29ya19pZHlwHVsKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS/AgAACAQAbmFtZSoAbWluZWNyYWZ0OndheGVkX294aWRpemVkX2N1dF9jb3BwZXJfc3RhaXJzBAkAbmFtZV9oYXNoaqGdkuhxVZUDCgBuZXR3b3JrX2lkYQXzzgoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cobbled_deepslate_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR8AgAACAQAbmFtZSIAbWluZWNyYWZ0OmNvYmJsZWRfZGVlcHNsYXRlX3N0YWlycwQJAG5hbWVfaGFzaPIfa+TpyJcIAwoAbmV0d29ya19pZJUvOYIKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:deepslate_tile_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSEAgAACAQAbmFtZR8AbWluZWNyYWZ0OmRlZXBzbGF0ZV90aWxlX3N0YWlycwQJAG5hbWVfaGFzaGFRFzB72mN2AwoAbmV0d29ya19pZJEOgIsKBgBzdGF0ZXMBDwB1cHNpZGVfZG93bl9iaXQAAxAAd2VpcmRvX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:polished_deepslate_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSAAgAACAQAbmFtZSMAbWluZWNyYWZ0OnBvbGlzaGVkX2RlZXBzbGF0ZV9zdGFpcnMECQBuYW1lX2hhc2iNCYxVik9sGAMKAG5ldHdvcmtfaWSRVPnYCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:deepslate_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSIAgAACAQAbmFtZSAAbWluZWNyYWZ0OmRlZXBzbGF0ZV9icmlja19zdGFpcnMECQBuYW1lX2hhc2hIasOahEf83wMKAG5ldHdvcmtfaWQ1qEDCCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:mud_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTfAgAACAQAbmFtZRoAbWluZWNyYWZ0Om11ZF9icmlja19zdGFpcnMECQBuYW1lX2hhc2gt3qxK1NWajAMKAG5ldHdvcmtfaWSm9N3MCgYAc3RhdGVzAQ8AdXBzaWRlX2Rvd25fYml0AAMQAHdlaXJkb19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:wooden_door" + }, + { + "id": "minecraft:spruce_door" + }, + { + "id": "minecraft:birch_door" + }, + { + "id": "minecraft:jungle_door" + }, + { + "id": "minecraft:acacia_door" + }, + { + "id": "minecraft:dark_oak_door" + }, + { + "id": "minecraft:mangrove_door" + }, + { + "id": "minecraft:cherry_door" + }, + { + "id": "minecraft:bamboo_door" + }, + { + "id": "minecraft:iron_door" + }, + { + "id": "minecraft:crimson_door" + }, + { + "id": "minecraft:warped_door" + }, + { + "id": "minecraft:trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRgAAAACAQAbmFtZRIAbWluZWNyYWZ0OnRyYXBkb29yBAkAbmFtZV9oYXNotYiAJGtN0xADCgBuZXR3b3JrX2lkyTAWkAoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCABvcGVuX2JpdAABDwB1cHNpZGVfZG93bl9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:spruce_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSUAQAACAQAbmFtZRkAbWluZWNyYWZ0OnNwcnVjZV90cmFwZG9vcgQJAG5hbWVfaGFzaOwlfbgBkUW4AwoAbmV0d29ya19pZPHy1K0KBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:birch_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSRAQAACAQAbmFtZRgAbWluZWNyYWZ0OmJpcmNoX3RyYXBkb29yBAkAbmFtZV9oYXNoSLtLweOLJ7wDCgBuZXR3b3JrX2lkeJWDfgoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCABvcGVuX2JpdAABDwB1cHNpZGVfZG93bl9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:jungle_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSTAQAACAQAbmFtZRkAbWluZWNyYWZ0Omp1bmdsZV90cmFwZG9vcgQJAG5hbWVfaGFzaDP/TnM9wyCIAwoAbmV0d29ya19pZEy2fJoKBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:acacia_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSQAQAACAQAbmFtZRkAbWluZWNyYWZ0OmFjYWNpYV90cmFwZG9vcgQJAG5hbWVfaGFzaMj8xi3vmEKOAwoAbmV0d29ya19pZOHj8E8KBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:dark_oak_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSSAQAACAQAbmFtZRsAbWluZWNyYWZ0OmRhcmtfb2FrX3RyYXBkb29yBAkAbmFtZV9oYXNomB2GGJQ2aOMDCgBuZXR3b3JrX2lko5ZHTwoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCABvcGVuX2JpdAABDwB1cHNpZGVfZG93bl9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:mangrove_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTvAgAACAQAbmFtZRsAbWluZWNyYWZ0Om1hbmdyb3ZlX3RyYXBkb29yBAkAbmFtZV9oYXNooV3kQsQUUmkDCgBuZXR3b3JrX2lkkF/mxAoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCABvcGVuX2JpdAABDwB1cHNpZGVfZG93bl9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cherry_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQeAwAACAQAbmFtZRkAbWluZWNyYWZ0OmNoZXJyeV90cmFwZG9vcgQJAG5hbWVfaGFzaH/PefpfdHgtAwoAbmV0d29ya19pZOA7eNgKBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:bamboo_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQHAwAACAQAbmFtZRkAbWluZWNyYWZ0OmJhbWJvb190cmFwZG9vcgQJAG5hbWVfaGFzaJrEOpsTwtKCAwoAbmV0d29ya19pZLvbPz8KBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:iron_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSnAAAACAQAbmFtZRcAbWluZWNyYWZ0Omlyb25fdHJhcGRvb3IECQBuYW1lX2hhc2gwA+IumsEiGQMKAG5ldHdvcmtfaWTvSVl/CgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAEIAG9wZW5fYml0AAEPAHVwc2lkZV9kb3duX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crimson_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT1AQAACAQAbmFtZRoAbWluZWNyYWZ0OmNyaW1zb25fdHJhcGRvb3IECQBuYW1lX2hhc2jHXufTnwUkYgMKAG5ldHdvcmtfaWQLjMYVCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAEIAG9wZW5fYml0AAEPAHVwc2lkZV9kb3duX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:warped_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT2AQAACAQAbmFtZRkAbWluZWNyYWZ0OndhcnBlZF90cmFwZG9vcgQJAG5hbWVfaGFzaA20wG/+vkd6AwoAbmV0d29ya19pZHKR/hYKBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:iron_bars", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRlAAAACAQAbmFtZRMAbWluZWNyYWZ0Omlyb25fYmFycwQJAG5hbWVfaGFzaPuefWSNAe56AwoAbmV0d29ya19pZN2LB5IKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQUAAAACAQAbmFtZQ8AbWluZWNyYWZ0OmdsYXNzBAkAbmFtZV9oYXNowGJByfWff6gDCgBuZXR3b3JrX2lk0hdLNwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:white_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTxAAAACAQAbmFtZR0AbWluZWNyYWZ0OndoaXRlX3N0YWluZWRfZ2xhc3MECQBuYW1lX2hhc2iHubqoMbu9fAMKAG5ldHdvcmtfaWRndBrUCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:light_gray_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSnAwAACAQAbmFtZSIAbWluZWNyYWZ0OmxpZ2h0X2dyYXlfc3RhaW5lZF9nbGFzcwQJAG5hbWVfaGFzaKKa+LrRsHQhAwoAbmV0d29ya19pZEv2giYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:gray_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSmAwAACAQAbmFtZRwAbWluZWNyYWZ0OmdyYXlfc3RhaW5lZF9nbGFzcwQJAG5hbWVfaGFzaIETy7Y/HZREAwoAbmV0d29ya19pZDomVrUKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:black_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSuAwAACAQAbmFtZR0AbWluZWNyYWZ0OmJsYWNrX3N0YWluZWRfZ2xhc3MECQBuYW1lX2hhc2iV6BCwpfDMmwMKAG5ldHdvcmtfaWSV7doJCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brown_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSrAwAACAQAbmFtZR0AbWluZWNyYWZ0OmJyb3duX3N0YWluZWRfZ2xhc3MECQBuYW1lX2hhc2igsEiq5np8JgMKAG5ldHdvcmtfaWRMzE/lCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:red_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWStAwAACAQAbmFtZRsAbWluZWNyYWZ0OnJlZF9zdGFpbmVkX2dsYXNzBAkAbmFtZV9oYXNoCa2J12/lQoIDCgBuZXR3b3JrX2lk283lWAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:orange_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSgAwAACAQAbmFtZR4AbWluZWNyYWZ0Om9yYW5nZV9zdGFpbmVkX2dsYXNzBAkAbmFtZV9oYXNozgjAuvzhxGsDCgBuZXR3b3JrX2lkW5CkhQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:yellow_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSjAwAACAQAbmFtZR4AbWluZWNyYWZ0OnllbGxvd19zdGFpbmVkX2dsYXNzBAkAbmFtZV9oYXNo7EbHMd5WVugDCgBuZXR3b3JrX2lkkdDyXQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:lime_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSkAwAACAQAbmFtZRwAbWluZWNyYWZ0OmxpbWVfc3RhaW5lZF9nbGFzcwQJAG5hbWVfaGFzaBtZA1nZtwcFAwoAbmV0d29ya19pZDxX85UKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:green_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSsAwAACAQAbmFtZR0AbWluZWNyYWZ0OmdyZWVuX3N0YWluZWRfZ2xhc3MECQBuYW1lX2hhc2h91ptDgbehWwMKAG5ldHdvcmtfaWTlDhnECgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cyan_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSoAwAACAQAbmFtZRwAbWluZWNyYWZ0OmN5YW5fc3RhaW5lZF9nbGFzcwQJAG5hbWVfaGFzaBkIYQ8nQLqbAwoAbmV0d29ya19pZOL1lHsKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:light_blue_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSiAwAACAQAbmFtZSIAbWluZWNyYWZ0OmxpZ2h0X2JsdWVfc3RhaW5lZF9nbGFzcwQJAG5hbWVfaGFzaLt05n1G0fiSAwoAbmV0d29ya19pZNbwulIKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:blue_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSqAwAACAQAbmFtZRwAbWluZWNyYWZ0OmJsdWVfc3RhaW5lZF9nbGFzcwQJAG5hbWVfaGFzaPhLocSfzduRAwoAbmV0d29ya19pZENsjFwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:purple_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSpAwAACAQAbmFtZR4AbWluZWNyYWZ0OnB1cnBsZV9zdGFpbmVkX2dsYXNzBAkAbmFtZV9oYXNoJk0DhRO0szUDCgBuZXR3b3JrX2lkD98ZxgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:magenta_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAwAACAQAbmFtZR8AbWluZWNyYWZ0Om1hZ2VudGFfc3RhaW5lZF9nbGFzcwQJAG5hbWVfaGFzaFEDeFiJj3zSAwoAbmV0d29ya19pZG+iFRoKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:pink_stained_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSlAwAACAQAbmFtZRwAbWluZWNyYWZ0OnBpbmtfc3RhaW5lZF9nbGFzcwQJAG5hbWVfaGFzaDijTX87ywxhAwoAbmV0d29ya19pZKdEricKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:tinted_glass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRNAgAACAQAbmFtZRYAbWluZWNyYWZ0OnRpbnRlZF9nbGFzcwQJAG5hbWVfaGFzaAFZWSamk6KdAwoAbmV0d29ya19pZGSvWX8KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRmAAAACAQAbmFtZRQAbWluZWNyYWZ0OmdsYXNzX3BhbmUECQBuYW1lX2hhc2gRSBHwNMQ4gQMKAG5ldHdvcmtfaWRGwixuCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:white_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSgAAAACAQAbmFtZSIAbWluZWNyYWZ0OndoaXRlX3N0YWluZWRfZ2xhc3NfcGFuZQQJAG5hbWVfaGFzaHgxQmgJVtRrAwoAbmV0d29ya19pZBEr/DYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:light_gray_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSJAwAACAQAbmFtZScAbWluZWNyYWZ0OmxpZ2h0X2dyYXlfc3RhaW5lZF9nbGFzc19wYW5lBAkAbmFtZV9oYXNon0aQw9lNkSEDCgBuZXR3b3JrX2lk9dp5VgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:gray_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSIAwAACAQAbmFtZSEAbWluZWNyYWZ0OmdyYXlfc3RhaW5lZF9nbGFzc19wYW5lBAkAbmFtZV9oYXNors74IIw+2MMDCgBuZXR3b3JrX2lkmrGO5woGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:black_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSQAwAACAQAbmFtZSIAbWluZWNyYWZ0OmJsYWNrX3N0YWluZWRfZ2xhc3NfcGFuZQQJAG5hbWVfaGFzaOK/5ZRRd+M1AwoAbmV0d29ya19pZDv++oQKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:brown_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSNAwAACAQAbmFtZSIAbWluZWNyYWZ0OmJyb3duX3N0YWluZWRfZ2xhc3NfcGFuZQQJAG5hbWVfaGFzaLHeGJyRFTIWAwoAbmV0d29ya19pZMz9L0wKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:red_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSPAwAACAQAbmFtZSAAbWluZWNyYWZ0OnJlZF9zdGFpbmVkX2dsYXNzX3BhbmUECQBuYW1lX2hhc2gGr4x6JheAywMKAG5ldHdvcmtfaWQBjCTmCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:orange_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSCAwAACAQAbmFtZSMAbWluZWNyYWZ0Om9yYW5nZV9zdGFpbmVkX2dsYXNzX3BhbmUECQBuYW1lX2hhc2hbHxPD2gEbEAMKAG5ldHdvcmtfaWSt/7a5CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:yellow_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSFAwAACAQAbmFtZSMAbWluZWNyYWZ0OnllbGxvd19zdGFpbmVkX2dsYXNzX3BhbmUECQBuYW1lX2hhc2g9tl4aOCyZBwMKAG5ldHdvcmtfaWTXRAS7CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:lime_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSGAwAACAQAbmFtZSEAbWluZWNyYWZ0OmxpbWVfc3RhaW5lZF9nbGFzc19wYW5lBAkAbmFtZV9oYXNo3CtUyLwoGegDCgBuZXR3b3JrX2lkYJDnggoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:green_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSOAwAACAQAbmFtZSIAbWluZWNyYWZ0OmdyZWVuX3N0YWluZWRfZ2xhc3NfcGFuZQQJAG5hbWVfaGFzaJo6YP7IMy9SAwoAbmV0d29ya19pZHOnixoKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cyan_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSKAwAACAQAbmFtZSEAbWluZWNyYWZ0OmN5YW5fc3RhaW5lZF9nbGFzc19wYW5lBAkAbmFtZV9oYXNoti97c6QrbLQDCgBuZXR3b3JrX2lkUqFUeQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:light_blue_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSEAwAACAQAbmFtZScAbWluZWNyYWZ0OmxpZ2h0X2JsdWVfc3RhaW5lZF9nbGFzc19wYW5lBAkAbmFtZV9oYXNovDg/gQle104DCgBuZXR3b3JrX2lkFuy4MQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:blue_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSMAwAACAQAbmFtZSEAbWluZWNyYWZ0OmJsdWVfc3RhaW5lZF9nbGFzc19wYW5lBAkAbmFtZV9oYXNoGc57tiexbQMDCgBuZXR3b3JrX2lk1eBLUAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:purple_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAwAACAQAbmFtZSMAbWluZWNyYWZ0OnB1cnBsZV9zdGFpbmVkX2dsYXNzX3BhbmUECQBuYW1lX2hhc2hDJHYdd0FdfQMKAG5ldHdvcmtfaWSNsdK5CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:magenta_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSDAwAACAQAbmFtZSQAbWluZWNyYWZ0Om1hZ2VudGFfc3RhaW5lZF9nbGFzc19wYW5lBAkAbmFtZV9oYXNo3pcOw5bs5XoDCgBuZXR3b3JrX2lkVbOR7AoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:pink_stained_glass_pane", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSHAwAACAQAbmFtZSEAbWluZWNyYWZ0OnBpbmtfc3RhaW5lZF9nbGFzc19wYW5lBAkAbmFtZV9oYXNoWRhSACMWgswDCgBuZXR3b3JrX2lkIR92xwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:ladder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRBAAAACAQAbmFtZRAAbWluZWNyYWZ0OmxhZGRlcgQJAG5hbWVfaGFzaKBhqheJVOz+AwoAbmV0d29ya19pZCgvzlsKBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:scaffolding", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSkAQAACAQAbmFtZRUAbWluZWNyYWZ0OnNjYWZmb2xkaW5nBAkAbmFtZV9oYXNoYrkevrqcljwDCgBuZXR3b3JrX2lkD13mlAoGAHN0YXRlcwMJAHN0YWJpbGl0eQAAAAABDwBzdGFiaWxpdHlfY2hlY2sAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:smooth_stone_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQsAAAACAQAbmFtZRsAbWluZWNyYWZ0OnNtb290aF9zdG9uZV9zbGFiBAkAbmFtZV9oYXNon5I1yVw74uMDCgBuZXR3b3JrX2lkqvjcBQoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stone_block_slab4", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSlAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWI0BAkAbmFtZV9oYXNoNA3274NQmpMDCgBuZXR3b3JrX2lkQJoxlgoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfNAUAc3RvbmUAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cobblestone_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRoBAAACAQAbmFtZRoAbWluZWNyYWZ0OmNvYmJsZXN0b25lX3NsYWIECQBuYW1lX2hhc2h5CXtW7vlQVgMKAG5ldHdvcmtfaWRDGyj2CgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab2", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIyBAkAbmFtZV9oYXNoMg3274NQmpMDCgBuZXR3b3JrX2lkVRZB+woGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMhEAbW9zc3lfY29iYmxlc3RvbmUAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:oak_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSeAAAACAQAbmFtZRIAbWluZWNyYWZ0Om9ha19zbGFiBAkAbmFtZV9oYXNoJp1Cp1M4jlwDCgBuZXR3b3JrX2lkZH6+owoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:spruce_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQjBAAACAQAbmFtZRUAbWluZWNyYWZ0OnNwcnVjZV9zbGFiBAkAbmFtZV9oYXNodQi70jB238cDCgBuZXR3b3JrX2lkrriOYQoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:birch_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQkBAAACAQAbmFtZRQAbWluZWNyYWZ0OmJpcmNoX3NsYWIECQBuYW1lX2hhc2gZPpfMxoOsTAMKAG5ldHdvcmtfaWThR9jyCgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:jungle_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQlBAAACAQAbmFtZRUAbWluZWNyYWZ0Omp1bmdsZV9zbGFiBAkAbmFtZV9oYXNo6gLs79NXak4DCgBuZXR3b3JrX2lk5ZiKgwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:acacia_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQmBAAACAQAbmFtZRUAbWluZWNyYWZ0OmFjYWNpYV9zbGFiBAkAbmFtZV9oYXNomSdFmDnv4OUDCgBuZXR3b3JrX2lkHttaXAoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dark_oak_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQnBAAACAQAbmFtZRcAbWluZWNyYWZ0OmRhcmtfb2FrX3NsYWIECQBuYW1lX2hhc2hJjTohRFyhIQMKAG5ldHdvcmtfaWRMzDTyCgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:mangrove_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWToAgAACAQAbmFtZRcAbWluZWNyYWZ0Om1hbmdyb3ZlX3NsYWIECQBuYW1lX2hhc2jYCcmhJPeNMwMKAG5ldHdvcmtfaWQx6U1yCgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cherry_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQaAwAACAQAbmFtZRUAbWluZWNyYWZ0OmNoZXJyeV9zbGFiBAkAbmFtZV9oYXNoTt0MmVn/mqoDCgBuZXR3b3JrX2lk2VVsZQoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:bamboo_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQAAwAACAQAbmFtZRUAbWluZWNyYWZ0OmJhbWJvb19zbGFiBAkAbmFtZV9oYXNoo1xuFqINeLYDCgBuZXR3b3JrX2lkVC+0twoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:bamboo_mosaic_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQLAwAACAQAbmFtZRwAbWluZWNyYWZ0OmJhbWJvb19tb3NhaWNfc2xhYgQJAG5hbWVfaGFzaNbVRBZ/ChI3AwoAbmV0d29ya19pZOLZHFMKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stone_brick_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRqBAAACAQAbmFtZRoAbWluZWNyYWZ0OnN0b25lX2JyaWNrX3NsYWIECQBuYW1lX2hhc2js6EexuKuzrQMKAG5ldHdvcmtfaWRSsMxaCgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab4", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSlAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWI0BAkAbmFtZV9oYXNoNA3274NQmpMDCgBuZXR3b3JrX2lkoF89tgoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfNBEAbW9zc3lfc3RvbmVfYnJpY2sAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sandstone_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRnBAAACAQAbmFtZRgAbWluZWNyYWZ0OnNhbmRzdG9uZV9zbGFiBAkAbmFtZV9oYXNo/GMI0MZnrhsDCgBuZXR3b3JrX2lkFP8WmwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stone_block_slab4", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSlAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWI0BAkAbmFtZV9oYXNoNA3274NQmpMDCgBuZXR3b3JrX2lkWfF7pgoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfNA0AY3V0X3NhbmRzdG9uZQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab2", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIyBAkAbmFtZV9oYXNoMg3274NQmpMDCgBuZXR3b3JrX2lkbKRChAoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMhAAc21vb3RoX3NhbmRzdG9uZQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab2", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIyBAkAbmFtZV9oYXNoMg3274NQmpMDCgBuZXR3b3JrX2lkBlrvqAoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMg0AcmVkX3NhbmRzdG9uZQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab4", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSlAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWI0BAkAbmFtZV9oYXNoNA3274NQmpMDCgBuZXR3b3JrX2lkRWFXuwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfNBEAY3V0X3JlZF9zYW5kc3RvbmUAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stone_block_slab3", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIzBAkAbmFtZV9oYXNoMw3274NQmpMDCgBuZXR3b3JrX2lkom8neQoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMxQAc21vb3RoX3JlZF9zYW5kc3RvbmUAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stone_block_slab3", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIzBAkAbmFtZV9oYXNoMw3274NQmpMDCgBuZXR3b3JrX2lkd1ZaWgoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMwcAZ3Jhbml0ZQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab3", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIzBAkAbmFtZV9oYXNoMw3274NQmpMDCgBuZXR3b3JrX2lkISH4iwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMxAAcG9saXNoZWRfZ3Jhbml0ZQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab3", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIzBAkAbmFtZV9oYXNoMw3274NQmpMDCgBuZXR3b3JrX2lkqxEDMwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMwcAZGlvcml0ZQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab3", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIzBAkAbmFtZV9oYXNoMw3274NQmpMDCgBuZXR3b3JrX2lkSYs86QoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMxAAcG9saXNoZWRfZGlvcml0ZQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab3", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIzBAkAbmFtZV9oYXNoMw3274NQmpMDCgBuZXR3b3JrX2lkq6BU6goGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMwgAYW5kZXNpdGUAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stone_block_slab3", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIzBAkAbmFtZV9oYXNoMw3274NQmpMDCgBuZXR3b3JrX2lkTSXY8AoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMxEAcG9saXNoZWRfYW5kZXNpdGUAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:brick_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRpBAAACAQAbmFtZRQAbWluZWNyYWZ0OmJyaWNrX3NsYWIECQBuYW1lX2hhc2hO/Da4jU2v4wMKAG5ldHdvcmtfaWRG/qphCgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:nether_brick_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRsBAAACAQAbmFtZRsAbWluZWNyYWZ0Om5ldGhlcl9icmlja19zbGFiBAkAbmFtZV9oYXNonymoa2zbbqMDCgBuZXR3b3JrX2lkquvR1QoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stone_block_slab2", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIyBAkAbmFtZV9oYXNoMg3274NQmpMDCgBuZXR3b3JrX2lk/hXQ7AoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMhAAcmVkX25ldGhlcl9icmljawADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab3", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIzBAkAbmFtZV9oYXNoMw3274NQmpMDCgBuZXR3b3JrX2lkYJNxrwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMw8AZW5kX3N0b25lX2JyaWNrAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:quartz_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRrBAAACAQAbmFtZRUAbWluZWNyYWZ0OnF1YXJ0el9zbGFiBAkAbmFtZV9oYXNo9JMj3upfsbwDCgBuZXR3b3JrX2lkn2g2VAoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stone_block_slab4", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSlAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWI0BAkAbmFtZV9oYXNoNA3274NQmpMDCgBuZXR3b3JrX2lkMae+2goGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfNA0Ac21vb3RoX3F1YXJ0egADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab2", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIyBAkAbmFtZV9oYXNoMg3274NQmpMDCgBuZXR3b3JrX2lk+kMHGAoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMgYAcHVycHVyAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stone_block_slab2", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIyBAkAbmFtZV9oYXNoMg3274NQmpMDCgBuZXR3b3JrX2lkKOSOMAoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMhAAcHJpc21hcmluZV9yb3VnaAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stone_block_slab2", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIyBAkAbmFtZV9oYXNoMg3274NQmpMDCgBuZXR3b3JrX2lk8igLCQoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMg8AcHJpc21hcmluZV9kYXJrAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stone_block_slab2", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lX2Jsb2NrX3NsYWIyBAkAbmFtZV9oYXNoMg3274NQmpMDCgBuZXR3b3JrX2lkSFbyEwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20IEQBzdG9uZV9zbGFiX3R5cGVfMhAAcHJpc21hcmluZV9icmljawADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:crimson_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQHAgAACAQAbmFtZRYAbWluZWNyYWZ0OmNyaW1zb25fc2xhYgQJAG5hbWVfaGFzaKZ+EfP0ZYOZAwoAbmV0d29ya19pZAxRUWAKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:warped_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQIAgAACAQAbmFtZRUAbWluZWNyYWZ0OndhcnBlZF9zbGFiBAkAbmFtZV9oYXNo/AT0e/Z9W7UDCgBuZXR3b3JrX2lk1yq11AoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:blackstone_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQZAgAACAQAbmFtZRkAbWluZWNyYWZ0OmJsYWNrc3RvbmVfc2xhYgQJAG5hbWVfaGFzaF/DD4ZUlNgtAwoAbmV0d29ya19pZGy1DjwKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_blackstone_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQkAgAACAQAbmFtZSIAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfc2xhYgQJAG5hbWVfaGFzaDYnuUs86EWfAwoAbmV0d29ya19pZJj2bXIKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_blackstone_brick_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQbAgAACAQAbmFtZSgAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfYnJpY2tfc2xhYgQJAG5hbWVfaGFzaKySLqvHc4xXAwoAbmV0d29ya19pZOyWX94KBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cut_copper_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRoAgAACAQAbmFtZRkAbWluZWNyYWZ0OmN1dF9jb3BwZXJfc2xhYgQJAG5hbWVfaGFzaDsNpb2qs4iBAwoAbmV0d29ya19pZOTm2nsKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:exposed_cut_copper_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRpAgAACAQAbmFtZSEAbWluZWNyYWZ0OmV4cG9zZWRfY3V0X2NvcHBlcl9zbGFiBAkAbmFtZV9oYXNoahQ5OwIQb7kDCgBuZXR3b3JrX2lkrUlZLwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:weathered_cut_copper_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRqAgAACAQAbmFtZSMAbWluZWNyYWZ0OndlYXRoZXJlZF9jdXRfY29wcGVyX3NsYWIECQBuYW1lX2hhc2hBIuGIOVVXogMKAG5ldHdvcmtfaWQgnaDiCgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:oxidized_cut_copper_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRrAgAACAQAbmFtZSIAbWluZWNyYWZ0Om94aWRpemVkX2N1dF9jb3BwZXJfc2xhYgQJAG5hbWVfaGFzaOptj9ycfpaDAwoAbmV0d29ya19pZMzFSRgKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_cut_copper_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRsAgAACAQAbmFtZR8AbWluZWNyYWZ0OndheGVkX2N1dF9jb3BwZXJfc2xhYgQJAG5hbWVfaGFzaAlx6DZOCTHzAwoAbmV0d29ya19pZFRBvDAKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_exposed_cut_copper_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRtAgAACAQAbmFtZScAbWluZWNyYWZ0OndheGVkX2V4cG9zZWRfY3V0X2NvcHBlcl9zbGFiBAkAbmFtZV9oYXNo3KqS5OnhtRIDCgBuZXR3b3JrX2lkHTGcTgoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_weathered_cut_copper_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRuAgAACAQAbmFtZSkAbWluZWNyYWZ0OndheGVkX3dlYXRoZXJlZF9jdXRfY29wcGVyX3NsYWIECQBuYW1lX2hhc2gzZ1oX0HCFtwMKAG5ldHdvcmtfaWSgJR+XCgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_oxidized_cut_copper_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTAAgAACAQAbmFtZSgAbWluZWNyYWZ0OndheGVkX294aWRpemVkX2N1dF9jb3BwZXJfc2xhYgQJAG5hbWVfaGFzaMjjTnLu1KcqAwoAbmV0d29ya19pZIxsnFYKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cobbled_deepslate_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR7AgAACAQAbmFtZSAAbWluZWNyYWZ0OmNvYmJsZWRfZGVlcHNsYXRlX3NsYWIECQBuYW1lX2hhc2gwJIVWK1TM2QMKAG5ldHdvcmtfaWTYAoX5CgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_deepslate_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR/AgAACAQAbmFtZSEAbWluZWNyYWZ0OnBvbGlzaGVkX2RlZXBzbGF0ZV9zbGFiBAkAbmFtZV9oYXNoC/Adiz8k6RYDCgBuZXR3b3JrX2lkuFYMAAoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:deepslate_tile_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSDAgAACAQAbmFtZR0AbWluZWNyYWZ0OmRlZXBzbGF0ZV90aWxlX3NsYWIECQBuYW1lX2hhc2hPydV6emzIXAMKAG5ldHdvcmtfaWQwlbFCCgYAc3RhdGVzCBcAbWluZWNyYWZ0OnZlcnRpY2FsX2hhbGYGAGJvdHRvbQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:deepslate_brick_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSHAgAACAQAbmFtZR4AbWluZWNyYWZ0OmRlZXBzbGF0ZV9icmlja19zbGFiBAkAbmFtZV9oYXNoSv62V7iw10UDCgBuZXR3b3JrX2lkWMoragoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mud_brick_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTdAgAACAQAbmFtZRgAbWluZWNyYWZ0Om11ZF9icmlja19zbGFiBAkAbmFtZV9oYXNoq/tGBQWkv08DCgBuZXR3b3JrX2lkl4nnMwoGAHN0YXRlcwgXAG1pbmVjcmFmdDp2ZXJ0aWNhbF9oYWxmBgBib3R0b20AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:brick_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQtAAAACAQAbmFtZRUAbWluZWNyYWZ0OmJyaWNrX2Jsb2NrBAkAbmFtZV9oYXNo5Qc2E005S3oDCgBuZXR3b3JrX2lkqeGWRgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:chiseled_nether_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQtAgAACAQAbmFtZSAAbWluZWNyYWZ0OmNoaXNlbGVkX25ldGhlcl9icmlja3MECQBuYW1lX2hhc2g31SBPTcUK1QMKAG5ldHdvcmtfaWS8TJ+TCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cracked_nether_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQuAgAACAQAbmFtZR8AbWluZWNyYWZ0OmNyYWNrZWRfbmV0aGVyX2JyaWNrcwQJAG5hbWVfaGFzaAdC6eKzXT5tAwoAbmV0d29ya19pZIUSejwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:quartz_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQvAgAACAQAbmFtZRcAbWluZWNyYWZ0OnF1YXJ0el9icmlja3MECQBuYW1lX2hhc2jSZO590dd8sAMKAG5ldHdvcmtfaWSc5xCLCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stonebrick", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRiAAAACAQAbmFtZRQAbWluZWNyYWZ0OnN0b25lYnJpY2sECQBuYW1lX2hhc2ii9DAAVXKptwMKAG5ldHdvcmtfaWQ5kni1CgYAc3RhdGVzCBAAc3RvbmVfYnJpY2tfdHlwZQcAZGVmYXVsdAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stonebrick", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRiAAAACAQAbmFtZRQAbWluZWNyYWZ0OnN0b25lYnJpY2sECQBuYW1lX2hhc2ii9DAAVXKptwMKAG5ldHdvcmtfaWTDw813CgYAc3RhdGVzCBAAc3RvbmVfYnJpY2tfdHlwZQUAbW9zc3kAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stonebrick", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRiAAAACAQAbmFtZRQAbWluZWNyYWZ0OnN0b25lYnJpY2sECQBuYW1lX2hhc2ii9DAAVXKptwMKAG5ldHdvcmtfaWSTvQGECgYAc3RhdGVzCBAAc3RvbmVfYnJpY2tfdHlwZQcAY3JhY2tlZAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stonebrick", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRiAAAACAQAbmFtZRQAbWluZWNyYWZ0OnN0b25lYnJpY2sECQBuYW1lX2hhc2ii9DAAVXKptwMKAG5ldHdvcmtfaWQIM0OwCgYAc3RhdGVzCBAAc3RvbmVfYnJpY2tfdHlwZQgAY2hpc2VsZWQAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:end_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTOAAAACAQAbmFtZRQAbWluZWNyYWZ0OmVuZF9icmlja3MECQBuYW1lX2hhc2hIUFfxNLZaFgMKAG5ldHdvcmtfaWQ/vDihCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:prismarine", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSoAAAACAQAbmFtZRQAbWluZWNyYWZ0OnByaXNtYXJpbmUECQBuYW1lX2hhc2jcnQCHi9CspQMKAG5ldHdvcmtfaWSH021WCgYAc3RhdGVzCBUAcHJpc21hcmluZV9ibG9ja190eXBlBgBicmlja3MAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:polished_blackstone_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQRAgAACAQAbmFtZSQAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfYnJpY2tzBAkAbmFtZV9oYXNoIHgsgIdzKXcDCgBuZXR3b3JrX2lkUw9b3woGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cracked_polished_blackstone_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQXAgAACAQAbmFtZSwAbWluZWNyYWZ0OmNyYWNrZWRfcG9saXNoZWRfYmxhY2tzdG9uZV9icmlja3MECQBuYW1lX2hhc2jQIO1GQDk80AMKAG5ldHdvcmtfaWQ3UlRYCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:gilded_blackstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQYAgAACAQAbmFtZRsAbWluZWNyYWZ0OmdpbGRlZF9ibGFja3N0b25lBAkAbmFtZV9oYXNoNoWt1ocG0HEDCgBuZXR3b3JrX2lktL8gUwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:chiseled_polished_blackstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQWAgAACAQAbmFtZSYAbWluZWNyYWZ0OmNoaXNlbGVkX3BvbGlzaGVkX2JsYWNrc3RvbmUECQBuYW1lX2hhc2gzFa+kEjCJgAMKAG5ldHdvcmtfaWR2NJX2CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:deepslate_tiles", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSCAgAACAQAbmFtZRkAbWluZWNyYWZ0OmRlZXBzbGF0ZV90aWxlcwQJAG5hbWVfaGFzaGcLLx3NXAFvAwoAbmV0d29ya19pZI/G/xYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cracked_deepslate_tiles", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSYAgAACAQAbmFtZSEAbWluZWNyYWZ0OmNyYWNrZWRfZGVlcHNsYXRlX3RpbGVzBAkAbmFtZV9oYXNo9zWgkFuMM1QDCgBuZXR3b3JrX2lkGwY6OgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:deepslate_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSGAgAACAQAbmFtZRoAbWluZWNyYWZ0OmRlZXBzbGF0ZV9icmlja3MECQBuYW1lX2hhc2gucvFmPdZxigMKAG5ldHdvcmtfaWSH4HDPCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cracked_deepslate_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSZAgAACAQAbmFtZSIAbWluZWNyYWZ0OmNyYWNrZWRfZGVlcHNsYXRlX2JyaWNrcwQJAG5hbWVfaGFzaN40aqhh9WqHAwoAbmV0d29ya19pZO9GPBQKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:chiseled_deepslate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSKAgAACAQAbmFtZRwAbWluZWNyYWZ0OmNoaXNlbGVkX2RlZXBzbGF0ZQQJAG5hbWVfaGFzaEU7/uRG8HSBAwoAbmV0d29ya19pZEqmI0EKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cobblestone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQEAAAACAQAbmFtZRUAbWluZWNyYWZ0OmNvYmJsZXN0b25lBAkAbmFtZV9oYXNoPoK7mGlSUz4DCgBuZXR3b3JrX2lkLm7RZwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:mossy_cobblestone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQwAAAACAQAbmFtZRsAbWluZWNyYWZ0Om1vc3N5X2NvYmJsZXN0b25lBAkAbmFtZV9oYXNoGJ67FCbkChMDCgBuZXR3b3JrX2lk/pYs1AoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cobbled_deepslate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR6AgAACAQAbmFtZRsAbWluZWNyYWZ0OmNvYmJsZWRfZGVlcHNsYXRlBAkAbmFtZV9oYXNoLUz9Y/ywmLwDCgBuZXR3b3JrX2lkNwzZ+AoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:smooth_stone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS2AQAACAQAbmFtZRYAbWluZWNyYWZ0OnNtb290aF9zdG9uZQQJAG5hbWVfaGFzaMwf87/JaTNvAwoAbmV0d29ya19pZLkZICEKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sandstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQYAAAACAQAbmFtZRMAbWluZWNyYWZ0OnNhbmRzdG9uZQQJAG5hbWVfaGFzaFEmWsEHFI1AAwoAbmV0d29ya19pZB2wApMKBgBzdGF0ZXMIDwBzYW5kX3N0b25lX3R5cGUHAGRlZmF1bHQAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sandstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQYAAAACAQAbmFtZRMAbWluZWNyYWZ0OnNhbmRzdG9uZQQJAG5hbWVfaGFzaFEmWsEHFI1AAwoAbmV0d29ya19pZB7E+eQKBgBzdGF0ZXMIDwBzYW5kX3N0b25lX3R5cGULAGhlaXJvZ2x5cGhzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:sandstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQYAAAACAQAbmFtZRMAbWluZWNyYWZ0OnNhbmRzdG9uZQQJAG5hbWVfaGFzaFEmWsEHFI1AAwoAbmV0d29ya19pZFQnDaEKBgBzdGF0ZXMIDwBzYW5kX3N0b25lX3R5cGUDAGN1dAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:sandstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQYAAAACAQAbmFtZRMAbWluZWNyYWZ0OnNhbmRzdG9uZQQJAG5hbWVfaGFzaFEmWsEHFI1AAwoAbmV0d29ya19pZPO4A3IKBgBzdGF0ZXMIDwBzYW5kX3N0b25lX3R5cGUGAHNtb290aAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:red_sandstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSzAAAACAQAbmFtZRcAbWluZWNyYWZ0OnJlZF9zYW5kc3RvbmUECQBuYW1lX2hhc2jBO4Gv2v59uAMKAG5ldHdvcmtfaWRhNYiFCgYAc3RhdGVzCA8Ac2FuZF9zdG9uZV90eXBlBwBkZWZhdWx0AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:red_sandstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSzAAAACAQAbmFtZRcAbWluZWNyYWZ0OnJlZF9zYW5kc3RvbmUECQBuYW1lX2hhc2jBO4Gv2v59uAMKAG5ldHdvcmtfaWTqXJr1CgYAc3RhdGVzCA8Ac2FuZF9zdG9uZV90eXBlCwBoZWlyb2dseXBocwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:red_sandstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSzAAAACAQAbmFtZRcAbWluZWNyYWZ0OnJlZF9zYW5kc3RvbmUECQBuYW1lX2hhc2jBO4Gv2v59uAMKAG5ldHdvcmtfaWTQRGkFCgYAc3RhdGVzCA8Ac2FuZF9zdG9uZV90eXBlAwBjdXQAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:red_sandstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSzAAAACAQAbmFtZRcAbWluZWNyYWZ0OnJlZF9zYW5kc3RvbmUECQBuYW1lX2hhc2jBO4Gv2v59uAMKAG5ldHdvcmtfaWTvAHWDCgYAc3RhdGVzCA8Ac2FuZF9zdG9uZV90eXBlBgBzbW9vdGgAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:coal_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWStAAAACAQAbmFtZRQAbWluZWNyYWZ0OmNvYWxfYmxvY2sECQBuYW1lX2hhc2jH8QQP3t5PiAMKAG5ldHdvcmtfaWRo+sR+CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dried_kelp_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSKAQAACAQAbmFtZRoAbWluZWNyYWZ0OmRyaWVkX2tlbHBfYmxvY2sECQBuYW1lX2hhc2iRoucexkrl8wMKAG5ldHdvcmtfaWQQCCrvCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:gold_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQpAAAACAQAbmFtZRQAbWluZWNyYWZ0OmdvbGRfYmxvY2sECQBuYW1lX2hhc2iYLshvjtXzFwMKAG5ldHdvcmtfaWTDJGBcCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:iron_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQqAAAACAQAbmFtZRQAbWluZWNyYWZ0Omlyb25fYmxvY2sECQBuYW1lX2hhc2jYINmJQbvV/gMKAG5ldHdvcmtfaWRf7AbICgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:copper_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRTAgAACAQAbmFtZRYAbWluZWNyYWZ0OmNvcHBlcl9ibG9jawQJAG5hbWVfaGFzaDVxnehsGaZ1AwoAbmV0d29ya19pZIiUodwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:copper_door" + }, + { + "id": "minecraft:copper_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQXBAAACAQAbmFtZRkAbWluZWNyYWZ0OmNvcHBlcl90cmFwZG9vcgQJAG5hbWVfaGFzaO9fXio+svKVAwoAbmV0d29ya19pZMCoRjEKBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:copper_grate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT/AwAACAQAbmFtZRYAbWluZWNyYWZ0OmNvcHBlcl9ncmF0ZQQJAG5hbWVfaGFzaC/JEFOWnmEcAwoAbmV0d29ya19pZC6YiiMKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:exposed_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRUAgAACAQAbmFtZRgAbWluZWNyYWZ0OmV4cG9zZWRfY29wcGVyBAkAbmFtZV9oYXNoQH3Fukmu3CEDCgBuZXR3b3JrX2lk72jFIwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:exposed_copper_door" + }, + { + "id": "minecraft:exposed_copper_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQYBAAACAQAbmFtZSEAbWluZWNyYWZ0OmV4cG9zZWRfY29wcGVyX3RyYXBkb29yBAkAbmFtZV9oYXNoYhDFUysN7qUDCgBuZXR3b3JrX2lkMzwGJgoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCABvcGVuX2JpdAABDwB1cHNpZGVfZG93bl9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:exposed_copper_grate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQABAAACAQAbmFtZR4AbWluZWNyYWZ0OmV4cG9zZWRfY29wcGVyX2dyYXRlBAkAbmFtZV9oYXNolFIBYLYU0IcDCgBuZXR3b3JrX2lk4UqptAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:weathered_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRVAgAACAQAbmFtZRoAbWluZWNyYWZ0OndlYXRoZXJlZF9jb3BwZXIECQBuYW1lX2hhc2hJCQXbvobv+gMKAG5ldHdvcmtfaWQwM0lJCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:weathered_copper_door" + }, + { + "id": "minecraft:weathered_copper_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQZBAAACAQAbmFtZSMAbWluZWNyYWZ0OndlYXRoZXJlZF9jb3BwZXJfdHJhcGRvb3IECQBuYW1lX2hhc2hFnEC282a1tgMKAG5ldHdvcmtfaWTk70oiCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAEIAG9wZW5fYml0AAEPAHVwc2lkZV9kb3duX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:weathered_copper_grate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQBBAAACAQAbmFtZSAAbWluZWNyYWZ0OndlYXRoZXJlZF9jb3BwZXJfZ3JhdGUECQBuYW1lX2hhc2jB3o8enlv1RgMKAG5ldHdvcmtfaWRih2pOCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:oxidized_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRWAgAACAQAbmFtZRkAbWluZWNyYWZ0Om94aWRpemVkX2NvcHBlcgQJAG5hbWVfaGFzaMDtJqR0G5Y7AwoAbmV0d29ya19pZGjN8bUKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:oxidized_copper_door" + }, + { + "id": "minecraft:oxidized_copper_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQaBAAACAQAbmFtZSIAbWluZWNyYWZ0Om94aWRpemVkX2NvcHBlcl90cmFwZG9vcgQJAG5hbWVfaGFzaOJpG/XFexVwAwoAbmV0d29ya19pZPhi0J4KBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:oxidized_copper_grate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQCBAAACAQAbmFtZR8AbWluZWNyYWZ0Om94aWRpemVkX2NvcHBlcl9ncmF0ZQQJAG5hbWVfaGFzaBRfNhyndve7AwoAbmV0d29ya19pZKY2cnEKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRXAgAACAQAbmFtZRYAbWluZWNyYWZ0OndheGVkX2NvcHBlcgQJAG5hbWVfaGFzaPF+FG6Eh5fsAwoAbmV0d29ya19pZIjtz/0KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_copper_door" + }, + { + "id": "minecraft:waxed_copper_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQbBAAACAQAbmFtZR8AbWluZWNyYWZ0OndheGVkX2NvcHBlcl90cmFwZG9vcgQJAG5hbWVfaGFzaO0JUKUHqNU6AwoAbmV0d29ya19pZJC3ZuMKBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_copper_grate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQDBAAACAQAbmFtZRwAbWluZWNyYWZ0OndheGVkX2NvcHBlcl9ncmF0ZQQJAG5hbWVfaGFzaDmC92M2RO+HAwoAbmV0d29ya19pZH4og2AKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_exposed_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRYAgAACAQAbmFtZR4AbWluZWNyYWZ0OndheGVkX2V4cG9zZWRfY29wcGVyBAkAbmFtZV9oYXNoig8IOc+SCikDCgBuZXR3b3JrX2lklz8yWQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_exposed_copper_door" + }, + { + "id": "minecraft:waxed_exposed_copper_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQcBAAACAQAbmFtZScAbWluZWNyYWZ0OndheGVkX2V4cG9zZWRfY29wcGVyX3RyYXBkb29yBAkAbmFtZV9oYXNoBHHxCpkUzpgDCgBuZXR3b3JrX2lkw2XBGQoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAABCABvcGVuX2JpdAABDwB1cHNpZGVfZG93bl9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_exposed_copper_grate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQEBAAACAQAbmFtZSQAbWluZWNyYWZ0OndheGVkX2V4cG9zZWRfY29wcGVyX2dyYXRlBAkAbmFtZV9oYXNoWmd6B+hWwiEDCgBuZXR3b3JrX2lk8d4ZQwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_weathered_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRZAgAACAQAbmFtZSAAbWluZWNyYWZ0OndheGVkX3dlYXRoZXJlZF9jb3BwZXIECQBuYW1lX2hhc2gjtPq8MOdvKgMKAG5ldHdvcmtfaWSQ9Ln9CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_weathered_copper_door" + }, + { + "id": "minecraft:waxed_weathered_copper_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQdBAAACAQAbmFtZSkAbWluZWNyYWZ0OndheGVkX3dlYXRoZXJlZF9jb3BwZXJfdHJhcGRvb3IECQBuYW1lX2hhc2gH9Fi3JCF4egMKAG5ldHdvcmtfaWRkGU6TCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAEIAG9wZW5fYml0AAEPAHVwc2lkZV9kb3duX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_weathered_copper_grate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQFBAAACAQAbmFtZSYAbWluZWNyYWZ0OndheGVkX3dlYXRoZXJlZF9jb3BwZXJfZ3JhdGUECQBuYW1lX2hhc2hXfilVFDAiYQMKAG5ldHdvcmtfaWQqTGC1CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_oxidized_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS9AgAACAQAbmFtZR8AbWluZWNyYWZ0OndheGVkX294aWRpemVkX2NvcHBlcgQJAG5hbWVfaGFzaMaORhsO+LzjAwoAbmV0d29ya19pZJhGfLEKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_oxidized_copper_door" + }, + { + "id": "minecraft:waxed_oxidized_copper_trapdoor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQeBAAACAQAbmFtZSgAbWluZWNyYWZ0OndheGVkX294aWRpemVkX2NvcHBlcl90cmFwZG9vcgQJAG5hbWVfaGFzaNA/q9qAy6Z9AwoAbmV0d29ya19pZDgExS8KBgBzdGF0ZXMDCQBkaXJlY3Rpb24AAAAAAQgAb3Blbl9iaXQAAQ8AdXBzaWRlX2Rvd25fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_oxidized_copper_grate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQGBAAACAQAbmFtZSUAbWluZWNyYWZ0OndheGVkX294aWRpemVkX2NvcHBlcl9ncmF0ZQQJAG5hbWVfaGFzaEbeMT605GP4AwoAbmV0d29ya19pZOZjpkkKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cut_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRaAgAACAQAbmFtZRQAbWluZWNyYWZ0OmN1dF9jb3BwZXIECQBuYW1lX2hhc2hAfN3NGax3eAMKAG5ldHdvcmtfaWTnFBtYCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:exposed_cut_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRbAgAACAQAbmFtZRwAbWluZWNyYWZ0OmV4cG9zZWRfY3V0X2NvcHBlcgQJAG5hbWVfaGFzaA85G3yv/w6pAwoAbmV0d29ya19pZMQhr0QKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:weathered_cut_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRcAgAACAQAbmFtZR4AbWluZWNyYWZ0OndlYXRoZXJlZF9jdXRfY29wcGVyBAkAbmFtZV9oYXNoVgRV0fBaz88DCgBuZXR3b3JrX2lk/0cYugoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:oxidized_cut_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRdAgAACAQAbmFtZR0AbWluZWNyYWZ0Om94aWRpemVkX2N1dF9jb3BwZXIECQBuYW1lX2hhc2iP8WmFWOkriwMKAG5ldHdvcmtfaWQPdce7CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_cut_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWReAgAACAQAbmFtZRoAbWluZWNyYWZ0OndheGVkX2N1dF9jb3BwZXIECQBuYW1lX2hhc2jumiwOZIqv2AMKAG5ldHdvcmtfaWQvuxx9CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_exposed_cut_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRfAgAACAQAbmFtZSIAbWluZWNyYWZ0OndheGVkX2V4cG9zZWRfY3V0X2NvcHBlcgQJAG5hbWVfaGFzaPE/OfK6IoVMAwoAbmV0d29ya19pZHy5HkcKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_weathered_cut_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRgAgAACAQAbmFtZSQAbWluZWNyYWZ0OndheGVkX3dlYXRoZXJlZF9jdXRfY29wcGVyBAkAbmFtZV9oYXNoCA1xDp11bnwDCgBuZXR3b3JrX2lkDyEDVQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_oxidized_cut_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWS+AgAACAQAbmFtZSMAbWluZWNyYWZ0OndheGVkX294aWRpemVkX2N1dF9jb3BwZXIECQBuYW1lX2hhc2i1pZAsZYHLDAMKAG5ldHdvcmtfaWQ/wSkCCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:chiseled_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT3AwAACAQAbmFtZRkAbWluZWNyYWZ0OmNoaXNlbGVkX2NvcHBlcgQJAG5hbWVfaGFzaIsW5pmpJEuQAwoAbmV0d29ya19pZHetwrkKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:exposed_chiseled_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT4AwAACAQAbmFtZSEAbWluZWNyYWZ0OmV4cG9zZWRfY2hpc2VsZWRfY29wcGVyBAkAbmFtZV9oYXNoOvrLJ0UowbgDCgBuZXR3b3JrX2lkZj7cPwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:weathered_chiseled_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT5AwAACAQAbmFtZSMAbWluZWNyYWZ0OndlYXRoZXJlZF9jaGlzZWxlZF9jb3BwZXIECQBuYW1lX2hhc2hh+42XlsWvGAMKAG5ldHdvcmtfaWS7Cy59CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:oxidized_chiseled_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT6AwAACAQAbmFtZSIAbWluZWNyYWZ0Om94aWRpemVkX2NoaXNlbGVkX2NvcHBlcgQJAG5hbWVfaGFzaLpTIsnfluiCAwoAbmV0d29ya19pZB9/jS8KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_chiseled_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT7AwAACAQAbmFtZR8AbWluZWNyYWZ0OndheGVkX2NoaXNlbGVkX2NvcHBlcgQJAG5hbWVfaGFzaFnXvXY5OinzAwoAbmV0d29ya19pZAcKtHsKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_exposed_chiseled_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT8AwAACAQAbmFtZScAbWluZWNyYWZ0OndheGVkX2V4cG9zZWRfY2hpc2VsZWRfY29wcGVyBAkAbmFtZV9oYXNoHJdq+Pph6hMDCgBuZXR3b3JrX2lkdge7IAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_oxidized_chiseled_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT9AwAACAQAbmFtZSgAbWluZWNyYWZ0OndheGVkX294aWRpemVkX2NoaXNlbGVkX2NvcHBlcgQJAG5hbWVfaGFzaMj49OvlTpgCAwoAbmV0d29ya19pZN/r+roKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_weathered_chiseled_copper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT+AwAACAQAbmFtZSkAbWluZWNyYWZ0OndheGVkX3dlYXRoZXJlZF9jaGlzZWxlZF9jb3BwZXIECQBuYW1lX2hhc2hzuO+Sg9LYQwMKAG5ldHdvcmtfaWQ7AN7iCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:copper_bulb", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQHBAAACAQAbmFtZRUAbWluZWNyYWZ0OmNvcHBlcl9idWxiBAkAbmFtZV9oYXNo41TimHOsMWcDCgBuZXR3b3JrX2lkJnZvAgoGAHN0YXRlcwEDAGxpdAABCwBwb3dlcmVkX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:exposed_copper_bulb", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQIBAAACAQAbmFtZR0AbWluZWNyYWZ0OmV4cG9zZWRfY29wcGVyX2J1bGIECQBuYW1lX2hhc2g++f1wYLLCrAMKAG5ldHdvcmtfaWRLdMmGCgYAc3RhdGVzAQMAbGl0AAELAHBvd2VyZWRfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:weathered_copper_bulb", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQJBAAACAQAbmFtZR8AbWluZWNyYWZ0OndlYXRoZXJlZF9jb3BwZXJfYnVsYgQJAG5hbWVfaGFzaMEtsYfwRTXlAwoAbmV0d29ya19pZAp51LQKBgBzdGF0ZXMBAwBsaXQAAQsAcG93ZXJlZF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:oxidized_copper_bulb", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQKBAAACAQAbmFtZR4AbWluZWNyYWZ0Om94aWRpemVkX2NvcHBlcl9idWxiBAkAbmFtZV9oYXNovnrBQZs8nDIDCgBuZXR3b3JrX2lkPsj0AAoGAHN0YXRlcwEDAGxpdAABCwBwb3dlcmVkX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_copper_bulb", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQLBAAACAQAbmFtZRsAbWluZWNyYWZ0OndheGVkX2NvcHBlcl9idWxiBAkAbmFtZV9oYXNoGTg6TYllMiIDCgBuZXR3b3JrX2lk9m0WhgoGAHN0YXRlcwEDAGxpdAABCwBwb3dlcmVkX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waxed_exposed_copper_bulb", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQMBAAACAQAbmFtZSMAbWluZWNyYWZ0OndheGVkX2V4cG9zZWRfY29wcGVyX2J1bGIECQBuYW1lX2hhc2gI6xkPcvBDVwMKAG5ldHdvcmtfaWR7BRcACgYAc3RhdGVzAQMAbGl0AAELAHBvd2VyZWRfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:waxed_weathered_copper_bulb", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQNBAAACAQAbmFtZSUAbWluZWNyYWZ0OndheGVkX3dlYXRoZXJlZF9jb3BwZXJfYnVsYgQJAG5hbWVfaGFzaMsUnmp3/VqVAwoAbmV0d29ya19pZEoworoKBgBzdGF0ZXMBAwBsaXQAAQsAcG93ZXJlZF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:waxed_oxidized_copper_bulb", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQOBAAACAQAbmFtZSQAbWluZWNyYWZ0OndheGVkX294aWRpemVkX2NvcHBlcl9idWxiBAkAbmFtZV9oYXNoBFKxY3fjVq4DCgBuZXR3b3JrX2lkzrJ6aAoGAHN0YXRlcwEDAGxpdAABCwBwb3dlcmVkX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:emerald_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSFAAAACAQAbmFtZRcAbWluZWNyYWZ0OmVtZXJhbGRfYmxvY2sECQBuYW1lX2hhc2hK6QunqJznNAMKAG5ldHdvcmtfaWRk5+otCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:diamond_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ5AAAACAQAbmFtZRcAbWluZWNyYWZ0OmRpYW1vbmRfYmxvY2sECQBuYW1lX2hhc2iGKrxuvkytFQMKAG5ldHdvcmtfaWQQeQZXCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:lapis_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQWAAAACAQAbmFtZRUAbWluZWNyYWZ0OmxhcGlzX2Jsb2NrBAkAbmFtZV9oYXNoDZ44xdb2zVoDCgBuZXR3b3JrX2lktVy0BAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:raw_iron_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTCAgAACAQAbmFtZRgAbWluZWNyYWZ0OnJhd19pcm9uX2Jsb2NrBAkAbmFtZV9oYXNo9XyzNIQXxvwDCgBuZXR3b3JrX2lknms1QAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:raw_copper_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTDAgAACAQAbmFtZRoAbWluZWNyYWZ0OnJhd19jb3BwZXJfYmxvY2sECQBuYW1lX2hhc2hw1KG0TNUGgwMKAG5ldHdvcmtfaWS1vGo/CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:raw_gold_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTEAgAACAQAbmFtZRgAbWluZWNyYWZ0OnJhd19nb2xkX2Jsb2NrBAkAbmFtZV9oYXNo6YuwuLwfOBwDCgBuZXR3b3JrX2lkLiQ5gQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:quartz_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSbAAAACAQAbmFtZRYAbWluZWNyYWZ0OnF1YXJ0el9ibG9jawQJAG5hbWVfaGFzaCfpbqyIIvZCAwoAbmV0d29ya19pZEupC1AKBgBzdGF0ZXMICwBjaGlzZWxfdHlwZQcAZGVmYXVsdAgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:quartz_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSbAAAACAQAbmFtZRYAbWluZWNyYWZ0OnF1YXJ0el9ibG9jawQJAG5hbWVfaGFzaCfpbqyIIvZCAwoAbmV0d29ya19pZM97+l0KBgBzdGF0ZXMICwBjaGlzZWxfdHlwZQUAbGluZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:quartz_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSbAAAACAQAbmFtZRYAbWluZWNyYWZ0OnF1YXJ0el9ibG9jawQJAG5hbWVfaGFzaCfpbqyIIvZCAwoAbmV0d29ya19pZCbTfssKBgBzdGF0ZXMICwBjaGlzZWxfdHlwZQgAY2hpc2VsZWQICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:quartz_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSbAAAACAQAbmFtZRYAbWluZWNyYWZ0OnF1YXJ0el9ibG9jawQJAG5hbWVfaGFzaCfpbqyIIvZCAwoAbmV0d29ya19pZJss8V0KBgBzdGF0ZXMICwBjaGlzZWxfdHlwZQYAc21vb3RoCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:prismarine", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSoAAAACAQAbmFtZRQAbWluZWNyYWZ0OnByaXNtYXJpbmUECQBuYW1lX2hhc2jcnQCHi9CspQMKAG5ldHdvcmtfaWRFIsoGCgYAc3RhdGVzCBUAcHJpc21hcmluZV9ibG9ja190eXBlBwBkZWZhdWx0AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:prismarine", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSoAAAACAQAbmFtZRQAbWluZWNyYWZ0OnByaXNtYXJpbmUECQBuYW1lX2hhc2jcnQCHi9CspQMKAG5ldHdvcmtfaWTDNWOvCgYAc3RhdGVzCBUAcHJpc21hcmluZV9ibG9ja190eXBlBABkYXJrAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:slime", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSlAAAACAQAbmFtZQ8AbWluZWNyYWZ0OnNsaW1lBAkAbmFtZV9oYXNoHJiEEJx+JlkDCgBuZXR3b3JrX2lkfgfVzAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:honey_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTbAQAACAQAbmFtZRUAbWluZWNyYWZ0OmhvbmV5X2Jsb2NrBAkAbmFtZV9oYXNo9zLYSUlelywDCgBuZXR3b3JrX2lko+dyWgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:honeycomb_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTcAQAACAQAbmFtZRkAbWluZWNyYWZ0OmhvbmV5Y29tYl9ibG9jawQJAG5hbWVfaGFzaASIPuOCYd1oAwoAbmV0d29ya19pZKys4n4KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:hay_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSqAAAACAQAbmFtZRMAbWluZWNyYWZ0OmhheV9ibG9jawQJAG5hbWVfaGFzaIB2VxKxX8EpAwoAbmV0d29ya19pZKuQSloKBgBzdGF0ZXMDCgBkZXByZWNhdGVkAAAAAAgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bone_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTYAAAACAQAbmFtZRQAbWluZWNyYWZ0OmJvbmVfYmxvY2sECQBuYW1lX2hhc2i4ZX576W9AWgMKAG5ldHdvcmtfaWTWGacQCgYAc3RhdGVzAwoAZGVwcmVjYXRlZAAAAAAICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:nether_brick", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRwAAAACAQAbmFtZRYAbWluZWNyYWZ0Om5ldGhlcl9icmljawQJAG5hbWVfaGFzaMxcRiheU+nXAwoAbmV0d29ya19pZMkmzloKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:red_nether_brick", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTXAAAACAQAbmFtZRoAbWluZWNyYWZ0OnJlZF9uZXRoZXJfYnJpY2sECQBuYW1lX2hhc2j8pRO4LfoECAMKAG5ldHdvcmtfaWRpdF0YCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:netherite_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQNAgAACAQAbmFtZRkAbWluZWNyYWZ0Om5ldGhlcml0ZV9ibG9jawQJAG5hbWVfaGFzaMghh6Zib/ZKAwoAbmV0d29ya19pZIz0mq0KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:lodestone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTdAQAACAQAbmFtZRMAbWluZWNyYWZ0OmxvZGVzdG9uZQQJAG5hbWVfaGFzaJ2gmHOTlXv8AwoAbmV0d29ya19pZEfgB4wKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:white_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQjAAAACAQAbmFtZRQAbWluZWNyYWZ0OndoaXRlX3dvb2wECQBuYW1lX2hhc2jRWB7vaIEDiQMKAG5ldHdvcmtfaWSO8paQCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:light_gray_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQnAwAACAQAbmFtZRkAbWluZWNyYWZ0OmxpZ2h0X2dyYXlfd29vbAQJAG5hbWVfaGFzaOpdQ1a2v4b3AwoAbmV0d29ya19pZIqZCYEKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:gray_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQoAwAACAQAbmFtZRMAbWluZWNyYWZ0OmdyYXlfd29vbAQJAG5hbWVfaGFzaLsc1Lp1xdIOAwoAbmV0d29ya19pZFUs+HgKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:black_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQpAwAACAQAbmFtZRQAbWluZWNyYWZ0OmJsYWNrX3dvb2wECQBuYW1lX2hhc2hP2HC6o0X4HAMKAG5ldHdvcmtfaWRUbORcCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brown_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQqAwAACAQAbmFtZRQAbWluZWNyYWZ0OmJyb3duX3dvb2wECQBuYW1lX2hhc2ig5IW89PrREwMKAG5ldHdvcmtfaWRjT9j8CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:red_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQrAwAACAQAbmFtZRIAbWluZWNyYWZ0OnJlZF93b29sBAkAbmFtZV9oYXNoY4TBDq+mFgUDCgBuZXR3b3JrX2lktn9lcAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:orange_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQsAwAACAQAbmFtZRUAbWluZWNyYWZ0Om9yYW5nZV93b29sBAkAbmFtZV9oYXNoFstfrTZfSCgDCgBuZXR3b3JrX2lk+rqywwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:yellow_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQtAwAACAQAbmFtZRUAbWluZWNyYWZ0OnllbGxvd193b29sBAkAbmFtZV9oYXNoTFyus2RHegcDCgBuZXR3b3JrX2lkkKBhXAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:lime_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQuAwAACAQAbmFtZRMAbWluZWNyYWZ0OmxpbWVfd29vbAQJAG5hbWVfaGFzaNVnnzKiMxmeAwoAbmV0d29ya19pZG9b32kKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:green_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQvAwAACAQAbmFtZRQAbWluZWNyYWZ0OmdyZWVuX3dvb2wECQBuYW1lX2hhc2i3mElRYHIcSQMKAG5ldHdvcmtfaWSssprwCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cyan_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQwAwAACAQAbmFtZRMAbWluZWNyYWZ0OmN5YW5fd29vbAQJAG5hbWVfaGFzaBNDfvHn8dqFAwoAbmV0d29ya19pZK0hAbgKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:light_blue_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQxAwAACAQAbmFtZRkAbWluZWNyYWZ0OmxpZ2h0X2JsdWVfd29vbAQJAG5hbWVfaGFzaLWFAUfyxFPNAwoAbmV0d29ya19pZL2oEugKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:blue_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQyAwAACAQAbmFtZRMAbWluZWNyYWZ0OmJsdWVfd29vbAQJAG5hbWVfaGFzaLjHyxxbTWCLAwoAbmV0d29ya19pZPaLdFQKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:purple_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQzAwAACAQAbmFtZRUAbWluZWNyYWZ0OnB1cnBsZV93b29sBAkAbmFtZV9oYXNojvFtqzjAf/4DCgBuZXR3b3JrX2lklqASNQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:magenta_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ0AwAACAQAbmFtZRYAbWluZWNyYWZ0Om1hZ2VudGFfd29vbAQJAG5hbWVfaGFzaGuOHvf+Pd4yAwoAbmV0d29ya19pZI4UoDQKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:pink_wool", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ1AwAACAQAbmFtZRMAbWluZWNyYWZ0OnBpbmtfd29vbAQJAG5hbWVfaGFzaPiVA2pFeoFLAwoAbmV0d29ya19pZOZRO6oKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:white_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSrAAAACAQAbmFtZRYAbWluZWNyYWZ0OndoaXRlX2NhcnBldAQJAG5hbWVfaGFzaNeMHTI1fWPXAwoAbmV0d29ya19pZEahDFcKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:light_gray_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRbAwAACAQAbmFtZRsAbWluZWNyYWZ0OmxpZ2h0X2dyYXlfY2FycGV0BAkAbmFtZV9oYXNoHPw6ArBAsP0DCgBuZXR3b3JrX2lkQoAeUAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:gray_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRaAwAACAQAbmFtZRUAbWluZWNyYWZ0OmdyYXlfY2FycGV0BAkAbmFtZV9oYXNoZVR0OI+1VRADCgBuZXR3b3JrX2lkETF4WwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:black_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRiAwAACAQAbmFtZRYAbWluZWNyYWZ0OmJsYWNrX2NhcnBldAQJAG5hbWVfaGFzaOk7LP9NptyhAwoAbmV0d29ya19pZFjmXtIKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:brown_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRfAwAACAQAbmFtZRYAbWluZWNyYWZ0OmJyb3duX2NhcnBldAQJAG5hbWVfaGFzaNaXFyOsAvIvAwoAbmV0d29ya19pZHPjFuoKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:red_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhAwAACAQAbmFtZRQAbWluZWNyYWZ0OnJlZF9jYXJwZXQECQBuYW1lX2hhc2i9eSKBf6SO3wMKAG5ldHdvcmtfaWQuhI/KCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:orange_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRUAwAACAQAbmFtZRcAbWluZWNyYWZ0Om9yYW5nZV9jYXJwZXQECQBuYW1lX2hhc2hIUkO4HlAdygMKAG5ldHdvcmtfaWSyKV9OCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:yellow_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRXAwAACAQAbmFtZRcAbWluZWNyYWZ0OnllbGxvd19jYXJwZXQECQBuYW1lX2hhc2hSDKX3scCamwMKAG5ldHdvcmtfaWT8nq+ECgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:lime_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRYAwAACAQAbmFtZRUAbWluZWNyYWZ0OmxpbWVfY2FycGV0BAkAbmFtZV9oYXNo+6KFOpzsib4DCgBuZXR3b3JrX2lkT+DS4woGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:green_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRgAwAACAQAbmFtZRYAbWluZWNyYWZ0OmdyZWVuX2NhcnBldAQJAG5hbWVfaGFzaCHPMP9ltqFJAwoAbmV0d29ya19pZBgwAvAKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cyan_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRcAwAACAQAbmFtZRUAbWluZWNyYWZ0OmN5YW5fY2FycGV0BAkAbmFtZV9oYXNobXf62dQBJj8DCgBuZXR3b3JrX2lkKVppLgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:light_blue_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRWAwAACAQAbmFtZRsAbWluZWNyYWZ0OmxpZ2h0X2JsdWVfY2FycGV0BAkAbmFtZV9oYXNo20l4oktdZ3sDCgBuZXR3b3JrX2lkjdeMiwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:blue_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWReAwAACAQAbmFtZRUAbWluZWNyYWZ0OmJsdWVfY2FycGV0BAkAbmFtZV9oYXNo3p3lsW0eQwsDCgBuZXR3b3JrX2lkAovdPQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:purple_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRdAwAACAQAbmFtZRcAbWluZWNyYWZ0OnB1cnBsZV9jYXJwZXQECQBuYW1lX2hhc2jwIA9pW/qp7QMKAG5ldHdvcmtfaWTqJqhjCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:magenta_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRVAwAACAQAbmFtZRgAbWluZWNyYWZ0Om1hZ2VudGFfY2FycGV0BAkAbmFtZV9oYXNoFXT36YNNZhMDCgBuZXR3b3JrX2lk+tqsGAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:pink_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRZAwAACAQAbmFtZRUAbWluZWNyYWZ0OnBpbmtfY2FycGV0BAkAbmFtZV9oYXNoHll72oqk+OoDCgBuZXR3b3JrX2lkrnBYDwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:white_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTtAAAACAQAbmFtZR8AbWluZWNyYWZ0OndoaXRlX2NvbmNyZXRlX3Bvd2RlcgQJAG5hbWVfaGFzaFUk9iXVjwV8AwoAbmV0d29ya19pZJPZY8AKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:light_gray_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTLAwAACAQAbmFtZSQAbWluZWNyYWZ0OmxpZ2h0X2dyYXlfY29uY3JldGVfcG93ZGVyBAkAbmFtZV9oYXNo7EUk30hmUtYDCgBuZXR3b3JrX2lkh8jVIwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:gray_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTKAwAACAQAbmFtZR4AbWluZWNyYWZ0OmdyYXlfY29uY3JldGVfcG93ZGVyBAkAbmFtZV9oYXNoW77af6WihdwDCgBuZXR3b3JrX2lkSsqC1woGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:black_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTSAwAACAQAbmFtZR8AbWluZWNyYWZ0OmJsYWNrX2NvbmNyZXRlX3Bvd2RlcgQJAG5hbWVfaGFzaAfWYp0xtgcfAwoAbmV0d29ya19pZMWTC8EKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:brown_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTPAwAACAQAbmFtZR8AbWluZWNyYWZ0OmJyb3duX2NvbmNyZXRlX3Bvd2RlcgQJAG5hbWVfaGFzaB74EeiLO46XAwoAbmV0d29ya19pZEDHKqwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:red_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTRAwAACAQAbmFtZR0AbWluZWNyYWZ0OnJlZF9jb25jcmV0ZV9wb3dkZXIECQBuYW1lX2hhc2gjFut6Z/VH1gMKAG5ldHdvcmtfaWSvcmwYCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:orange_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTEAwAACAQAbmFtZSAAbWluZWNyYWZ0Om9yYW5nZV9jb25jcmV0ZV9wb3dkZXIECQBuYW1lX2hhc2gADDj2IJiw+gMKAG5ldHdvcmtfaWTHph0FCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:yellow_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTHAwAACAQAbmFtZSAAbWluZWNyYWZ0OnllbGxvd19jb25jcmV0ZV9wb3dkZXIECQBuYW1lX2hhc2iy6qKNn3ob5wMKAG5ldHdvcmtfaWQZAI39CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:lime_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTIAwAACAQAbmFtZR4AbWluZWNyYWZ0OmxpbWVfY29uY3JldGVfcG93ZGVyBAkAbmFtZV9oYXNo4dYIPslbXPUDCgBuZXR3b3JrX2lk2O8X0AoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:green_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTQAwAACAQAbmFtZR8AbWluZWNyYWZ0OmdyZWVuX2NvbmNyZXRlX3Bvd2RlcgQJAG5hbWVfaGFzaM/c9x2aJh3HAwoAbmV0d29ya19pZA0VfBMKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cyan_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTMAwAACAQAbmFtZR4AbWluZWNyYWZ0OmN5YW5fY29uY3JldGVfcG93ZGVyBAkAbmFtZV9oYXNok+xKAe7XXjoDCgBuZXR3b3JrX2lkmkn6uwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:light_blue_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTGAwAACAQAbmFtZSQAbWluZWNyYWZ0OmxpZ2h0X2JsdWVfY29uY3JldGVfcG93ZGVyBAkAbmFtZV9oYXNogScpIQceyAEDCgBuZXR3b3JrX2lkOmVSbgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:blue_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTOAwAACAQAbmFtZR4AbWluZWNyYWZ0OmJsdWVfY29uY3JldGVfcG93ZGVyBAkAbmFtZV9oYXNoFp7mmeL86r0DCgBuZXR3b3JrX2lkS3b3RQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:purple_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTNAwAACAQAbmFtZSAAbWluZWNyYWZ0OnB1cnBsZV9jb25jcmV0ZV9wb3dkZXIECQBuYW1lX2hhc2iYcVU04hoStwMKAG5ldHdvcmtfaWQXimEjCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:magenta_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTFAwAACAQAbmFtZSEAbWluZWNyYWZ0Om1hZ2VudGFfY29uY3JldGVfcG93ZGVyBAkAbmFtZV9oYXNoy/70q6VPsWgDCgBuZXR3b3JrX2lkf9mxQwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:pink_concrete_powder", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTJAwAACAQAbmFtZR4AbWluZWNyYWZ0OnBpbmtfY29uY3JldGVfcG93ZGVyBAkAbmFtZV9oYXNoVikSAf8DwV0DCgBuZXR3b3JrX2lku2MivwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:white_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTsAAAACAQAbmFtZRgAbWluZWNyYWZ0OndoaXRlX2NvbmNyZXRlBAkAbmFtZV9oYXNo6zAp7lsLlvkDCgBuZXR3b3JrX2lk3MAYQAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:light_gray_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR6AwAACAQAbmFtZR0AbWluZWNyYWZ0OmxpZ2h0X2dyYXlfY29uY3JldGUECQBuYW1lX2hhc2hEtet5wuDIKAMKAG5ldHdvcmtfaWQISs02CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:gray_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR5AwAACAQAbmFtZRcAbWluZWNyYWZ0OmdyYXlfY29uY3JldGUECQBuYW1lX2hhc2j92INnb0a83AMKAG5ldHdvcmtfaWQj8RHwCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:black_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSBAwAACAQAbmFtZRgAbWluZWNyYWZ0OmJsYWNrX2NvbmNyZXRlBAkAbmFtZV9oYXNo2X7NDIQmZ70DCgBuZXR3b3JrX2lk2uiVDQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:brown_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR+AwAACAQAbmFtZRgAbWluZWNyYWZ0OmJyb3duX2NvbmNyZXRlBAkAbmFtZV9oYXNoeka02BwXf6oDCgBuZXR3b3JrX2lkYf+xDQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:red_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSAAwAACAQAbmFtZRYAbWluZWNyYWZ0OnJlZF9jb25jcmV0ZQQJAG5hbWVfaGFzaPWmNowLGubqAwoAbmV0d29ya19pZKwyx58KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:orange_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRzAwAACAQAbmFtZRkAbWluZWNyYWZ0Om9yYW5nZV9jb25jcmV0ZQQJAG5hbWVfaGFzaAgE8XmaAi6+AwoAbmV0d29ya19pZMDQNz8KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:yellow_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR2AwAACAQAbmFtZRkAbWluZWNyYWZ0OnllbGxvd19jb25jcmV0ZQQJAG5hbWVfaGFzaE6ONfJPBd0+AwoAbmV0d29ya19pZMarutwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:lime_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR3AwAACAQAbmFtZRcAbWluZWNyYWZ0OmxpbWVfY29uY3JldGUECQBuYW1lX2hhc2gnd8JW6wmJcAMKAG5ldHdvcmtfaWTd47aoCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:green_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR/AwAACAQAbmFtZRgAbWluZWNyYWZ0OmdyZWVuX2NvbmNyZXRlBAkAbmFtZV9oYXNokbFxRKchQZkDCgBuZXR3b3JrX2lkmhZWUgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cyan_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR7AwAACAQAbmFtZRcAbWluZWNyYWZ0OmN5YW5fY29uY3JldGUECQBuYW1lX2hhc2hFRrWJ33qj1wMKAG5ldHdvcmtfaWQbi5b8CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:light_blue_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR1AwAACAQAbmFtZR0AbWluZWNyYWZ0OmxpZ2h0X2JsdWVfY29uY3JldGUECQBuYW1lX2hhc2gHAe0kl0SE4AMKAG5ldHdvcmtfaWRL/GbSCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:blue_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR9AwAACAQAbmFtZRcAbWluZWNyYWZ0OmJsdWVfY29uY3JldGUECQBuYW1lX2hhc2hiay301nnj1wMKAG5ldHdvcmtfaWRMvFXNCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:purple_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR8AwAACAQAbmFtZRkAbWluZWNyYWZ0OnB1cnBsZV9jb25jcmV0ZQQJAG5hbWVfaGFzaHBHflsPIwdXAwoAbmV0d29ya19pZCyKA5gKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:magenta_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR0AwAACAQAbmFtZRoAbWluZWNyYWZ0Om1hZ2VudGFfY29uY3JldGUECQBuYW1lX2hhc2gN7LuB/OvdZAMKAG5ldHdvcmtfaWTc6ZOdCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:pink_concrete", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR4AwAACAQAbmFtZRcAbWluZWNyYWZ0OnBpbmtfY29uY3JldGUECQBuYW1lX2hhc2ii2G5F0u3SOAMKAG5ldHdvcmtfaWSszGgrCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:clay", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRSAAAACAQAbmFtZQ4AbWluZWNyYWZ0OmNsYXkECQBuYW1lX2hhc2j/S6sKXRcpzwMKAG5ldHdvcmtfaWRmsb8nCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:hardened_clay", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSsAAAACAQAbmFtZRcAbWluZWNyYWZ0OmhhcmRlbmVkX2NsYXkECQBuYW1lX2hhc2jrnRwCJ0krJAMKAG5ldHdvcmtfaWRBCOrrCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:white_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSfAAAACAQAbmFtZRoAbWluZWNyYWZ0OndoaXRlX3RlcnJhY290dGEECQBuYW1lX2hhc2j3RSdgmnAIewMKAG5ldHdvcmtfaWSimKw+CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:light_gray_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTaAwAACAQAbmFtZR8AbWluZWNyYWZ0OmxpZ2h0X2dyYXlfdGVycmFjb3R0YQQJAG5hbWVfaGFzaAz1Ri3wIxomAwoAbmV0d29ya19pZH5qgOcKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:gray_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTZAwAACAQAbmFtZRkAbWluZWNyYWZ0OmdyYXlfdGVycmFjb3R0YQQJAG5hbWVfaGFzaAXdSLAaNZ9vAwoAbmV0d29ya19pZM1QDV0KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:black_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWThAwAACAQAbmFtZRoAbWluZWNyYWZ0OmJsYWNrX3RlcnJhY290dGEECQBuYW1lX2hhc2jxssdv5vlbpgMKAG5ldHdvcmtfaWRE3Ru/CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brown_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTeAwAACAQAbmFtZRoAbWluZWNyYWZ0OmJyb3duX3RlcnJhY290dGEECQBuYW1lX2hhc2gG4kPenmOF9gMKAG5ldHdvcmtfaWQ/i0iNCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:red_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTgAwAACAQAbmFtZRgAbWluZWNyYWZ0OnJlZF90ZXJyYWNvdHRhBAkAbmFtZV9oYXNo7fX56HXFejEDCgBuZXR3b3JrX2lk8tTF8QoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:orange_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTTAwAACAQAbmFtZRsAbWluZWNyYWZ0Om9yYW5nZV90ZXJyYWNvdHRhBAkAbmFtZV9oYXNo0Hjmql3sruMDCgBuZXR3b3JrX2lklmqmkAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:yellow_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTWAwAACAQAbmFtZRsAbWluZWNyYWZ0OnllbGxvd190ZXJyYWNvdHRhBAkAbmFtZV9oYXNoqkyKKrmA3VcDCgBuZXR3b3JrX2lkaM/orAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:lime_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTXAwAACAQAbmFtZRkAbWluZWNyYWZ0OmxpbWVfdGVycmFjb3R0YQQJAG5hbWVfaGFzaANjADFOF9v7AwoAbmV0d29ya19pZJt0XsgKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:green_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTfAwAACAQAbmFtZRoAbWluZWNyYWZ0OmdyZWVuX3RlcnJhY290dGEECQBuYW1lX2hhc2j5Ybq36yYwRQMKAG5ldHdvcmtfaWQ8kGdHCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cyan_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTbAwAACAQAbmFtZRkAbWluZWNyYWZ0OmN5YW5fdGVycmFjb3R0YQQJAG5hbWVfaGFzaN09COzMuHwAAwoAbmV0d29ya19pZIWPCzoKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:light_blue_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTVAwAACAQAbmFtZR8AbWluZWNyYWZ0OmxpZ2h0X2JsdWVfdGVycmFjb3R0YQQJAG5hbWVfaGFzaOMytez7cOZiAwoAbmV0d29ya19pZFHK1UsKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:blue_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTdAwAACAQAbmFtZRkAbWluZWNyYWZ0OmJsdWVfdGVycmFjb3R0YQQJAG5hbWVfaGFzaF6inyTK5RpAAwoAbmV0d29ya19pZF5mVZIKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:purple_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTcAwAACAQAbmFtZRsAbWluZWNyYWZ0OnB1cnBsZV90ZXJyYWNvdHRhBAkAbmFtZV9oYXNoKF7YG61yTbEDCgBuZXR3b3JrX2lkhtRDlwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:magenta_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTUAwAACAQAbmFtZRwAbWluZWNyYWZ0Om1hZ2VudGFfdGVycmFjb3R0YQQJAG5hbWVfaGFzaLWvtpAVtztyAwoAbmV0d29ya19pZN5SoakKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:pink_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTYAwAACAQAbmFtZRkAbWluZWNyYWZ0OnBpbmtfdGVycmFjb3R0YQQJAG5hbWVfaGFzaJ7mzvyzSQZTAwoAbmV0d29ya19pZDJWe4YKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:white_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTcAAAACAQAbmFtZSEAbWluZWNyYWZ0OndoaXRlX2dsYXplZF90ZXJyYWNvdHRhBAkAbmFtZV9oYXNoiVzCdoHAJo0DCgBuZXR3b3JrX2lkIlj9AAoGAHN0YXRlcwMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:silver_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTkAAAACAQAbmFtZSIAbWluZWNyYWZ0OnNpbHZlcl9nbGF6ZWRfdGVycmFjb3R0YQQJAG5hbWVfaGFzaAVsA0CnhzA4AwoAbmV0d29ya19pZPnxtJEKBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:gray_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTjAAAACAQAbmFtZSAAbWluZWNyYWZ0OmdyYXlfZ2xhemVkX3RlcnJhY290dGEECQBuYW1lX2hhc2jvLZt9u/lF/AMKAG5ldHdvcmtfaWQVU8eFCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:black_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTrAAAACAQAbmFtZSEAbWluZWNyYWZ0OmJsYWNrX2dsYXplZF90ZXJyYWNvdHRhBAkAbmFtZV9oYXNoe8I4xAXbO5UDCgBuZXR3b3JrX2lk2Icb9AoGAHN0YXRlcwMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brown_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWToAAAACAQAbmFtZSEAbWluZWNyYWZ0OmJyb3duX2dsYXplZF90ZXJyYWNvdHRhBAkAbmFtZV9oYXNoSiNZOobbpjoDCgBuZXR3b3JrX2lkJy0jwgoGAHN0YXRlcwMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:red_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTqAAAACAQAbmFtZR8AbWluZWNyYWZ0OnJlZF9nbGF6ZWRfdGVycmFjb3R0YQQJAG5hbWVfaGFzaBdWFGLmCLFVAwoAbmV0d29ya19pZMYBJSEKBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:orange_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTdAAAACAQAbmFtZSIAbWluZWNyYWZ0Om9yYW5nZV9nbGF6ZWRfdGVycmFjb3R0YQQJAG5hbWVfaGFzaMyJMrnPr7szAwoAbmV0d29ya19pZN6+7TUKBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:yellow_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTgAAAACAQAbmFtZSIAbWluZWNyYWZ0OnllbGxvd19nbGF6ZWRfdGVycmFjb3R0YQQJAG5hbWVfaGFzaN6NaIhf6m0uAwoAbmV0d29ya19pZKRHXeoKBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:lime_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWThAAAACAQAbmFtZSAAbWluZWNyYWZ0OmxpbWVfZ2xhemVkX3RlcnJhY290dGEECQBuYW1lX2hhc2iF3E68/rB2EAMKAG5ldHdvcmtfaWSP7qQWCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:green_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTpAAAACAQAbmFtZSEAbWluZWNyYWZ0OmdyZWVuX2dsYXplZF90ZXJyYWNvdHRhBAkAbmFtZV9oYXNow5mo8aQDFboDCgBuZXR3b3JrX2lkoF11kgoGAHN0YXRlcwMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:cyan_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTlAAAACAQAbmFtZSAAbWluZWNyYWZ0OmN5YW5fZ2xhemVkX3RlcnJhY290dGEECQBuYW1lX2hhc2gnNB+cCFRJhwMKAG5ldHdvcmtfaWT9buMtCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:light_blue_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTfAAAACAQAbmFtZSYAbWluZWNyYWZ0OmxpZ2h0X2JsdWVfZ2xhemVkX3RlcnJhY290dGEECQBuYW1lX2hhc2gladnCDBKCigMKAG5ldHdvcmtfaWS5CszFCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:blue_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTnAAAACAQAbmFtZSAAbWluZWNyYWZ0OmJsdWVfZ2xhemVkX3RlcnJhY290dGEECQBuYW1lX2hhc2giOZK+2nB1igMKAG5ldHdvcmtfaWR+e22CCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:purple_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTbAAAACAQAbmFtZSIAbWluZWNyYWZ0OnB1cnBsZV9nbGF6ZWRfdGVycmFjb3R0YQQJAG5hbWVfaGFzaIQU03txeAfHAwoAbmV0d29ya19pZLKbSE4KBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:magenta_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTeAAAACAQAbmFtZSMAbWluZWNyYWZ0Om1hZ2VudGFfZ2xhemVkX3RlcnJhY290dGEECQBuYW1lX2hhc2i/SNqDJbfjMgMKAG5ldHdvcmtfaWQKf9UvCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:pink_glazed_terracotta", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTiAAAACAQAbmFtZSAAbWluZWNyYWZ0OnBpbmtfZ2xhemVkX3RlcnJhY290dGEECQBuYW1lX2hhc2hik8DVt4g+twMKAG5ldHdvcmtfaWTKzav2CgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:purpur_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTJAAAACAQAbmFtZRYAbWluZWNyYWZ0OnB1cnB1cl9ibG9jawQJAG5hbWVfaGFzaAgLwnUZGlzsAwoAbmV0d29ya19pZLD8ox4KBgBzdGF0ZXMICwBjaGlzZWxfdHlwZQcAZGVmYXVsdAgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:purpur_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTJAAAACAQAbmFtZRYAbWluZWNyYWZ0OnB1cnB1cl9ibG9jawQJAG5hbWVfaGFzaAgLwnUZGlzsAwoAbmV0d29ya19pZPSAFFsKBgBzdGF0ZXMICwBjaGlzZWxfdHlwZQUAbGluZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:packed_mud", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTcAgAACAQAbmFtZRQAbWluZWNyYWZ0OnBhY2tlZF9tdWQECQBuYW1lX2hhc2gHOMa121h4FgMKAG5ldHdvcmtfaWTUb6LyCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:mud_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTaAgAACAQAbmFtZRQAbWluZWNyYWZ0Om11ZF9icmlja3MECQBuYW1lX2hhc2iDL/SVl/PewQMKAG5ldHdvcmtfaWSkBjaDCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:nether_wart_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTWAAAACAQAbmFtZRsAbWluZWNyYWZ0Om5ldGhlcl93YXJ0X2Jsb2NrBAkAbmFtZV9oYXNo9XGS4GNnlV4DCgBuZXR3b3JrX2lkh3apIgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:warped_wart_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTiAQAACAQAbmFtZRsAbWluZWNyYWZ0OndhcnBlZF93YXJ0X2Jsb2NrBAkAbmFtZV9oYXNo9IqDS9yUPJoDCgBuZXR3b3JrX2lkMpKAbAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:shroomlight", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTlAQAACAQAbmFtZRUAbWluZWNyYWZ0OnNocm9vbWxpZ2h0BAkAbmFtZV9oYXNoZHCHcHX/HYADCgBuZXR3b3JrX2lkLG2JiwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:crimson_nylium", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTnAQAACAQAbmFtZRgAbWluZWNyYWZ0OmNyaW1zb25fbnlsaXVtBAkAbmFtZV9oYXNoOr6DJYW2bFYDCgBuZXR3b3JrX2lkuWpRDgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:warped_nylium", + "block_state_b64": "CgAAAwgAYmxvY2tfaWToAQAACAQAbmFtZRcAbWluZWNyYWZ0OndhcnBlZF9ueWxpdW0ECQBuYW1lX2hhc2g0Zf89cfr3rwMKAG5ldHdvcmtfaWSu/kekCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:netherrack", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRXAAAACAQAbmFtZRQAbWluZWNyYWZ0Om5ldGhlcnJhY2sECQBuYW1lX2hhc2i/r5ZyRsvPyQMKAG5ldHdvcmtfaWTAiTOACgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:basalt", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTpAQAACAQAbmFtZRAAbWluZWNyYWZ0OmJhc2FsdAQJAG5hbWVfaGFzaH+UQO2yWodiAwoAbmV0d29ya19pZBPNSV4KBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_basalt", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTqAQAACAQAbmFtZRkAbWluZWNyYWZ0OnBvbGlzaGVkX2Jhc2FsdAQJAG5hbWVfaGFzaMS+L0gMnRcBAwoAbmV0d29ya19pZF+/mHwKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:smooth_basalt", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR4AgAACAQAbmFtZRcAbWluZWNyYWZ0OnNtb290aF9iYXNhbHQECQBuYW1lX2hhc2jKPUdz89kuNAMKAG5ldHdvcmtfaWTkb/oVCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:soul_soil", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTrAQAACAQAbmFtZRMAbWluZWNyYWZ0OnNvdWxfc29pbAQJAG5hbWVfaGFzaC1/87ccutuTAwoAbmV0d29ya19pZKc63SMKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dirt", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQDAAAACAQAbmFtZQ4AbWluZWNyYWZ0OmRpcnQECQBuYW1lX2hhc2hXp6jnXAe+kQMKAG5ldHdvcmtfaWQmkQtoCgYAc3RhdGVzCAkAZGlydF90eXBlBgBub3JtYWwAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dirt", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQDAAAACAQAbmFtZQ4AbWluZWNyYWZ0OmRpcnQECQBuYW1lX2hhc2hXp6jnXAe+kQMKAG5ldHdvcmtfaWQId9pLCgYAc3RhdGVzCAkAZGlydF90eXBlBgBjb2Fyc2UAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:farmland", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ8AAAACAQAbmFtZRIAbWluZWNyYWZ0OmZhcm1sYW5kBAkAbmFtZV9oYXNoxyQ5ag7LolADCgBuZXR3b3JrX2lkX618FQoGAHN0YXRlcwMSAG1vaXN0dXJpemVkX2Ftb3VudAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:grass_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQCAAAACAQAbmFtZRUAbWluZWNyYWZ0OmdyYXNzX2Jsb2NrBAkAbmFtZV9oYXNojPyGp3/CSZwDCgBuZXR3b3JrX2lktCgx3goGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:grass_path", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTGAAAACAQAbmFtZRQAbWluZWNyYWZ0OmdyYXNzX3BhdGgECQBuYW1lX2hhc2i0/KZV8Qsy+gMKAG5ldHdvcmtfaWT7CcdzCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:podzol", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTzAAAACAQAbmFtZRAAbWluZWNyYWZ0OnBvZHpvbAQJAG5hbWVfaGFzaBzqokRjH4Z1AwoAbmV0d29ya19pZPPS/GUKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mycelium", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRuAAAACAQAbmFtZRIAbWluZWNyYWZ0Om15Y2VsaXVtBAkAbmFtZV9oYXNojTN09cKickIDCgBuZXR3b3JrX2lkLNPxXQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:mud", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTYAgAACAQAbmFtZQ0AbWluZWNyYWZ0Om11ZAQJAG5hbWVfaGFzaPb/3P+uLy+9AwoAbmV0d29ya19pZPIUlUkKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQBAAAACAQAbmFtZQ8AbWluZWNyYWZ0OnN0b25lBAkAbmFtZV9oYXNoE3mqhJxzJycDCgBuZXR3b3JrX2lkIQ4xgAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:iron_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQPAAAACAQAbmFtZRIAbWluZWNyYWZ0Omlyb25fb3JlBAkAbmFtZV9oYXNoS7BYtLnfx3gDCgBuZXR3b3JrX2lk3loneQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:gold_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQOAAAACAQAbmFtZRIAbWluZWNyYWZ0OmdvbGRfb3JlBAkAbmFtZV9oYXNoC5Y+DUGXLC4DCgBuZXR3b3JrX2lkNhvMfwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:diamond_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ4AAAACAQAbmFtZRUAbWluZWNyYWZ0OmRpYW1vbmRfb3JlBAkAbmFtZV9oYXNokUOJ2wZZrGQDCgBuZXR3b3JrX2lk/dChVAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:lapis_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQVAAAACAQAbmFtZRMAbWluZWNyYWZ0OmxhcGlzX29yZQQJAG5hbWVfaGFzaMrmrUrSzb7qAwoAbmV0d29ya19pZMg+qK4KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:redstone_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRJAAAACAQAbmFtZRYAbWluZWNyYWZ0OnJlZHN0b25lX29yZQQJAG5hbWVfaGFzaFHVnp8Wc4JbAwoAbmV0d29ya19pZKDYvQoKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:coal_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQQAAAACAQAbmFtZRIAbWluZWNyYWZ0OmNvYWxfb3JlBAkAbmFtZV9oYXNo1OjA+Iuy51oDCgBuZXR3b3JrX2lk+R/aKAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:copper_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ2AgAACAQAbmFtZRQAbWluZWNyYWZ0OmNvcHBlcl9vcmUECQBuYW1lX2hhc2iSZduSntOzOwMKAG5ldHdvcmtfaWQtIuCnCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:emerald_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSBAAAACAQAbmFtZRUAbWluZWNyYWZ0OmVtZXJhbGRfb3JlBAkAbmFtZV9oYXNoJTovr+VgINsDCgBuZXR3b3JrX2lknbkqCgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:quartz_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSZAAAACAQAbmFtZRQAbWluZWNyYWZ0OnF1YXJ0el9vcmUECQBuYW1lX2hhc2g0yNHLMK9TaQMKAG5ldHdvcmtfaWSzN7nzCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:nether_gold_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQfAgAACAQAbmFtZRkAbWluZWNyYWZ0Om5ldGhlcl9nb2xkX29yZQQJAG5hbWVfaGFzaEJZ7segIBgBAwoAbmV0d29ya19pZNI9pDgKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:ancient_debris", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQOAgAACAQAbmFtZRgAbWluZWNyYWZ0OmFuY2llbnRfZGVicmlzBAkAbmFtZV9oYXNoNrbxMc9AwKcDCgBuZXR3b3JrX2lkrSNjEAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:deepslate_iron_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSQAgAACAQAbmFtZRwAbWluZWNyYWZ0OmRlZXBzbGF0ZV9pcm9uX29yZQQJAG5hbWVfaGFzaB/fDL9pgvXXAwoAbmV0d29ya19pZFA0bz4KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:deepslate_gold_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSRAgAACAQAbmFtZRwAbWluZWNyYWZ0OmRlZXBzbGF0ZV9nb2xkX29yZQQJAG5hbWVfaGFzaF9G7WYhKFinAwoAbmV0d29ya19pZHQTfBUKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:deepslate_diamond_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSUAgAACAQAbmFtZR8AbWluZWNyYWZ0OmRlZXBzbGF0ZV9kaWFtb25kX29yZQQJAG5hbWVfaGFzaEUH5USh+iD3AwoAbmV0d29ya19pZHP6VzAKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:deepslate_lapis_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSPAgAACAQAbmFtZR0AbWluZWNyYWZ0OmRlZXBzbGF0ZV9sYXBpc19vcmUECQBuYW1lX2hhc2j+yFxU/KZs1gMKAG5ldHdvcmtfaWRKINzICgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:deepslate_redstone_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSSAgAACAQAbmFtZSAAbWluZWNyYWZ0OmRlZXBzbGF0ZV9yZWRzdG9uZV9vcmUECQBuYW1lX2hhc2iVgM3wWWD6ugMKAG5ldHdvcmtfaWReBdYRCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:deepslate_emerald_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSWAgAACAQAbmFtZR8AbWluZWNyYWZ0OmRlZXBzbGF0ZV9lbWVyYWxkX29yZQQJAG5hbWVfaGFzaNlfo5HTwS6wAwoAbmV0d29ya19pZNeie6sKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:deepslate_coal_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSVAgAACAQAbmFtZRwAbWluZWNyYWZ0OmRlZXBzbGF0ZV9jb2FsX29yZQQJAG5hbWVfaGFzaIjikmcbRrPPAwoAbmV0d29ya19pZD9TiygKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:deepslate_copper_ore", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSXAgAACAQAbmFtZR4AbWluZWNyYWZ0OmRlZXBzbGF0ZV9jb3BwZXJfb3JlBAkAbmFtZV9oYXNottjV4Ev5LAQDCgBuZXR3b3JrX2lkP23rgQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:gravel", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQNAAAACAQAbmFtZRAAbWluZWNyYWZ0OmdyYXZlbAQJAG5hbWVfaGFzaOFxz8XJd2r/AwoAbmV0d29ya19pZBpfI1sKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:granite", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRNAwAACAQAbmFtZREAbWluZWNyYWZ0OmdyYW5pdGUECQBuYW1lX2hhc2iq+Dur2pw4AwMKAG5ldHdvcmtfaWT2NMfJCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:diorite", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRPAwAACAQAbmFtZREAbWluZWNyYWZ0OmRpb3JpdGUECQBuYW1lX2hhc2iaFsq2iinZBQMKAG5ldHdvcmtfaWQqGE6XCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:andesite", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRRAwAACAQAbmFtZRIAbWluZWNyYWZ0OmFuZGVzaXRlBAkAbmFtZV9oYXNosaLIEnQQoSYDCgBuZXR3b3JrX2lkEApRZAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:blackstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQQAgAACAQAbmFtZRQAbWluZWNyYWZ0OmJsYWNrc3RvbmUECQBuYW1lX2hhc2iMFYziD80D6QMKAG5ldHdvcmtfaWSrUryHCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:deepslate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR5AgAACAQAbmFtZRMAbWluZWNyYWZ0OmRlZXBzbGF0ZQQJAG5hbWVfaGFzaKX5pAblxz8TAwoAbmV0d29ya19pZOJoQjsKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_granite", + "block_state_b64": "CgAAAwgAYmxvY2tfaWROAwAACAQAbmFtZRoAbWluZWNyYWZ0OnBvbGlzaGVkX2dyYW5pdGUECQBuYW1lX2hhc2iLiEfys8pFIAMKAG5ldHdvcmtfaWTCxxcHCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_diorite", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRQAwAACAQAbmFtZRoAbWluZWNyYWZ0OnBvbGlzaGVkX2Rpb3JpdGUECQBuYW1lX2hhc2hTxY4fKmNmlAMKAG5ldHdvcmtfaWTmtjdRCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_andesite", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRSAwAACAQAbmFtZRsAbWluZWNyYWZ0OnBvbGlzaGVkX2FuZGVzaXRlBAkAbmFtZV9oYXNovl28uFk4HuQDCgBuZXR3b3JrX2lklFjuCwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_blackstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQiAgAACAQAbmFtZR0AbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmUECQBuYW1lX2hhc2jT9fHCl6vWQQMKAG5ldHdvcmtfaWR/Ho6oCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_deepslate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR+AgAACAQAbmFtZRwAbWluZWNyYWZ0OnBvbGlzaGVkX2RlZXBzbGF0ZQQJAG5hbWVfaGFzaHC1edoaWF3uAwoAbmV0d29ya19pZCPeQsEKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sand", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQMAAAACAQAbmFtZQ4AbWluZWNyYWZ0OnNhbmQECQBuYW1lX2hhc2i6lthXXbAyWAMKAG5ldHdvcmtfaWTekU/mCgYAc3RhdGVzCAkAc2FuZF90eXBlBgBub3JtYWwAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sand", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQMAAAACAQAbmFtZQ4AbWluZWNyYWZ0OnNhbmQECQBuYW1lX2hhc2i6lthXXbAyWAMKAG5ldHdvcmtfaWSTgcqmCgYAc3RhdGVzCAkAc2FuZF90eXBlAwByZWQAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cactus", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRRAAAACAQAbmFtZRAAbWluZWNyYWZ0OmNhY3R1cwQJAG5hbWVfaGFzaCG9zL0N4wvGAwoAbmV0d29ya19pZDeCERAKBgBzdGF0ZXMDAwBhZ2UAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:oak_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQRAAAACAQAbmFtZREAbWluZWNyYWZ0Om9ha19sb2cECQBuYW1lX2hhc2ho6TS+K7PZFQMKAG5ldHdvcmtfaWQjfjoxCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stripped_oak_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQJAQAACAQAbmFtZRoAbWluZWNyYWZ0OnN0cmlwcGVkX29ha19sb2cECQBuYW1lX2hhc2h8dqh+OOHU4wMKAG5ldHdvcmtfaWSYKjdrCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:spruce_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ4AwAACAQAbmFtZRQAbWluZWNyYWZ0OnNwcnVjZV9sb2cECQBuYW1lX2hhc2hZ03qaLoF3WgMKAG5ldHdvcmtfaWRlFD8eCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stripped_spruce_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQEAQAACAQAbmFtZR0AbWluZWNyYWZ0OnN0cmlwcGVkX3NwcnVjZV9sb2cECQBuYW1lX2hhc2iNrhKjS5IyrgMKAG5ldHdvcmtfaWRQcEC3CgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:birch_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ5AwAACAQAbmFtZRMAbWluZWNyYWZ0OmJpcmNoX2xvZwQJAG5hbWVfaGFzaBUzT3NxsZAnAwoAbmV0d29ya19pZBKN3VQKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stripped_birch_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQFAQAACAQAbmFtZRwAbWluZWNyYWZ0OnN0cmlwcGVkX2JpcmNoX2xvZwQJAG5hbWVfaGFzaCFKS4AeuSidAwoAbmV0d29ya19pZN0IONIKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:jungle_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ6AwAACAQAbmFtZRQAbWluZWNyYWZ0Omp1bmdsZV9sb2cECQBuYW1lX2hhc2gkwW0KNulqDgMKAG5ldHdvcmtfaWQaziU/CgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stripped_jungle_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQGAQAACAQAbmFtZR0AbWluZWNyYWZ0OnN0cmlwcGVkX2p1bmdsZV9sb2cECQBuYW1lX2hhc2hAwMsgOk02JAMKAG5ldHdvcmtfaWQvls0eCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:acacia_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSiAAAACAQAbmFtZRQAbWluZWNyYWZ0OmFjYWNpYV9sb2cECQBuYW1lX2hhc2iV48VpYhjoYQMKAG5ldHdvcmtfaWRxEqe0CgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stripped_acacia_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQHAQAACAQAbmFtZR0AbWluZWNyYWZ0OnN0cmlwcGVkX2FjYWNpYV9sb2cECQBuYW1lX2hhc2hJb0lQqnEqlgMKAG5ldHdvcmtfaWRg3IdRCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dark_oak_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ7AwAACAQAbmFtZRYAbWluZWNyYWZ0OmRhcmtfb2FrX2xvZwQJAG5hbWVfaGFzaIWfVRd0XUo3AwoAbmV0d29ya19pZPMM7LYKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stripped_dark_oak_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQIAQAACAQAbmFtZR8AbWluZWNyYWZ0OnN0cmlwcGVkX2Rhcmtfb2FrX2xvZwQJAG5hbWVfaGFzaPFTdxRdPwkOAwoAbmV0d29ya19pZDIzenIKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:mangrove_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTjAgAACAQAbmFtZRYAbWluZWNyYWZ0Om1hbmdyb3ZlX2xvZwQJAG5hbWVfaGFzaHZe6DzPZBobAwoAbmV0d29ya19pZG6DuYkKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stripped_mangrove_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTkAgAACAQAbmFtZR8AbWluZWNyYWZ0OnN0cmlwcGVkX21hbmdyb3ZlX2xvZwQJAG5hbWVfaGFzaLqIBo4hwA//AwoAbmV0d29ya19pZPtRn7UKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cherry_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQXAwAACAQAbmFtZRQAbWluZWNyYWZ0OmNoZXJyeV9sb2cECQBuYW1lX2hhc2hwFlaioppB1wMKAG5ldHdvcmtfaWS2sdXECgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stripped_cherry_log", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQWAwAACAQAbmFtZR0AbWluZWNyYWZ0OnN0cmlwcGVkX2NoZXJyeV9sb2cECQBuYW1lX2hhc2i85H6G+WhXaAMKAG5ldHdvcmtfaWRjzoglCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crimson_stem", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTgAQAACAQAbmFtZRYAbWluZWNyYWZ0OmNyaW1zb25fc3RlbQQJAG5hbWVfaGFzaM0FzfL0UTKZAwoAbmV0d29ya19pZKvzID0KBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stripped_crimson_stem", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTvAQAACAQAbmFtZR8AbWluZWNyYWZ0OnN0cmlwcGVkX2NyaW1zb25fc3RlbQQJAG5hbWVfaGFzaDlA6nood57EAwoAbmV0d29ya19pZHrIqjIKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:warped_stem", + "block_state_b64": "CgAAAwgAYmxvY2tfaWThAQAACAQAbmFtZRUAbWluZWNyYWZ0OndhcnBlZF9zdGVtBAkAbmFtZV9oYXNon7cKfPZxdrUDCgBuZXR3b3JrX2lkerWyMwoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stripped_warped_stem", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTwAQAACAQAbmFtZR4AbWluZWNyYWZ0OnN0cmlwcGVkX3dhcnBlZF9zdGVtBAkAbmFtZV9oYXNoEw+y0dDPSd8DCgBuZXR3b3JrX2lkIQ9vBAoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:oak_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTTAQAACAQAbmFtZRIAbWluZWNyYWZ0Om9ha193b29kBAkAbmFtZV9oYXNoqQIkuVPyJX0DCgBuZXR3b3JrX2lku2G1YAoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:spruce_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQtBAAACAQAbmFtZRUAbWluZWNyYWZ0OnNwcnVjZV93b29kBAkAbmFtZV9oYXNoTrIJ5TAQ+OgDCgBuZXR3b3JrX2lkaXLxCwoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:birch_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQuBAAACAQAbmFtZRQAbWluZWNyYWZ0OmJpcmNoX3dvb2QECQBuYW1lX2hhc2iqVjG4xt0cKQMKAG5ldHdvcmtfaWS06c5VCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:jungle_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQvBAAACAQAbmFtZRUAbWluZWNyYWZ0Omp1bmdsZV93b29kBAkAbmFtZV9oYXNo9bYW29ORWCoDCgBuZXR3b3JrX2lkyFyKLQoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:acacia_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQwBAAACAQAbmFtZRUAbWluZWNyYWZ0OmFjYWNpYV93b29kBAkAbmFtZV9oYXNoKkDfgzlJUcIDCgBuZXR3b3JrX2lkuTWlcgoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dark_oak_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQxBAAACAQAbmFtZRcAbWluZWNyYWZ0OmRhcmtfb2FrX3dvb2QECQBuYW1lX2hhc2jaKv4ORLadAAMKAG5ldHdvcmtfaWSDrNQ8CgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stripped_oak_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQyBAAACAQAbmFtZRsAbWluZWNyYWZ0OnN0cmlwcGVkX29ha193b29kBAkAbmFtZV9oYXNovW6KCv+VZnsDCgBuZXR3b3JrX2lkkhWGegoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stripped_spruce_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQzBAAACAQAbmFtZR4AbWluZWNyYWZ0OnN0cmlwcGVkX3NwcnVjZV93b29kBAkAbmFtZV9oYXNoMnuUk4Xo6icDCgBuZXR3b3JrX2lkes2ydAoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stripped_birch_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ0BAAACAQAbmFtZR0AbWluZWNyYWZ0OnN0cmlwcGVkX2JpcmNoX3dvb2QECQBuYW1lX2hhc2hm88R604TKbAMKAG5ldHdvcmtfaWRleEMJCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stripped_jungle_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ1BAAACAQAbmFtZR4AbWluZWNyYWZ0OnN0cmlwcGVkX2p1bmdsZV93b29kBAkAbmFtZV9oYXNoUVs6KsZQRBoDCgBuZXR3b3JrX2lk92k8HQoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stripped_acacia_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ2BAAACAQAbmFtZR4AbWluZWNyYWZ0OnN0cmlwcGVkX2FjYWNpYV93b29kBAkAbmFtZV9oYXNo/kOPN2bCJhUDCgBuZXR3b3JrX2lktl6LwQoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stripped_dark_oak_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ3BAAACAQAbmFtZSAAbWluZWNyYWZ0OnN0cmlwcGVkX2Rhcmtfb2FrX3dvb2QECQBuYW1lX2hhc2h2jFDfKVFgfAMKAG5ldHdvcmtfaWTgZQ5VCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mangrove_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTwAgAACAQAbmFtZRcAbWluZWNyYWZ0Om1hbmdyb3ZlX3dvb2QECQBuYW1lX2hhc2iXVxG0JG2fVAMKAG5ldHdvcmtfaWTok1JCCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkBDABzdHJpcHBlZF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stripped_mangrove_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTxAgAACAQAbmFtZSAAbWluZWNyYWZ0OnN0cmlwcGVkX21hbmdyb3ZlX3dvb2QECQBuYW1lX2hhc2h7CkbaBF7/WAMKAG5ldHdvcmtfaWQLAX88CgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cherry_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQhAwAACAQAbmFtZRUAbWluZWNyYWZ0OmNoZXJyeV93b29kBAkAbmFtZV9oYXNoAW8srlmpBM8DCgBuZXR3b3JrX2lkEALMfAoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AQwAc3RyaXBwZWRfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stripped_cherry_wood", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQgAwAACAQAbmFtZR4AbWluZWNyYWZ0OnN0cmlwcGVkX2NoZXJyeV93b29kBAkAbmFtZV9oYXNo/e7KXv+CB38DCgBuZXR3b3JrX2lkg5aVtQoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:crimson_hyphae", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQqAgAACAQAbmFtZRgAbWluZWNyYWZ0OmNyaW1zb25faHlwaGFlBAkAbmFtZV9oYXNouRmKmfSqEWADCgBuZXR3b3JrX2lk+Tm5rQoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stripped_crimson_hyphae", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQrAgAACAQAbmFtZSEAbWluZWNyYWZ0OnN0cmlwcGVkX2NyaW1zb25faHlwaGFlBAkAbmFtZV9oYXNoFffwmABq4LUDCgBuZXR3b3JrX2lkZAlUbgoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:warped_hyphae", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQpAgAACAQAbmFtZRcAbWluZWNyYWZ0OndhcnBlZF9oeXBoYWUECQBuYW1lX2hhc2hn8plQUr6pmQMKAG5ldHdvcmtfaWRU2AIBCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:stripped_warped_hyphae", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQsAgAACAQAbmFtZSAAbWluZWNyYWZ0OnN0cmlwcGVkX3dhcnBlZF9oeXBoYWUECQBuYW1lX2hhc2irKq+HYPSgjQMKAG5ldHdvcmtfaWSbrOPDCgYAc3RhdGVzCAsAcGlsbGFyX2F4aXMBAHkAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:bamboo_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQOAwAACAQAbmFtZRYAbWluZWNyYWZ0OmJhbWJvb19ibG9jawQJAG5hbWVfaGFzaAbDeur6stIBAwoAbmV0d29ya19pZCJAwn0KBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:stripped_bamboo_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQPAwAACAQAbmFtZR8AbWluZWNyYWZ0OnN0cmlwcGVkX2JhbWJvb19ibG9jawQJAG5hbWVfaGFzaJpwytpZOZM9AwoAbmV0d29ya19pZKuRbNEKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:oak_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQSAAAACAQAbmFtZRQAbWluZWNyYWZ0Om9ha19sZWF2ZXMECQBuYW1lX2hhc2h6O4xGqA2oKgMKAG5ldHdvcmtfaWT98c59CgYAc3RhdGVzAQ4AcGVyc2lzdGVudF9iaXQAAQoAdXBkYXRlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:spruce_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQfBAAACAQAbmFtZRcAbWluZWNyYWZ0OnNwcnVjZV9sZWF2ZXMECQBuYW1lX2hhc2i9x1CtNAuqZwMKAG5ldHdvcmtfaWSzF7pTCgYAc3RhdGVzAQ4AcGVyc2lzdGVudF9iaXQAAQoAdXBkYXRlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:birch_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQgBAAACAQAbmFtZRYAbWluZWNyYWZ0OmJpcmNoX2xlYXZlcwQJAG5hbWVfaGFzaBlAGHaoaLZSAwoAbmV0d29ya19pZOjtvWcKBgBzdGF0ZXMBDgBwZXJzaXN0ZW50X2JpdAABCgB1cGRhdGVfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:jungle_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQhBAAACAQAbmFtZRcAbWluZWNyYWZ0Omp1bmdsZV9sZWF2ZXMECQBuYW1lX2hhc2iW1uAH07zGhgMKAG5ldHdvcmtfaWSA5KX0CgYAc3RhdGVzAQ4AcGVyc2lzdGVudF9iaXQAAQoAdXBkYXRlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:acacia_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAAAACAQAbmFtZRcAbWluZWNyYWZ0OmFjYWNpYV9sZWF2ZXMECQBuYW1lX2hhc2iZJf8dAgDRNQMKAG5ldHdvcmtfaWQ/G7VuCgYAc3RhdGVzAQ4AcGVyc2lzdGVudF9iaXQAAQoAdXBkYXRlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dark_oak_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQiBAAACAQAbmFtZRkAbWluZWNyYWZ0OmRhcmtfb2FrX2xlYXZlcwQJAG5hbWVfaGFzaCk7rDipWFSjAwoAbmV0d29ya19pZJ2AkbYKBgBzdGF0ZXMBDgBwZXJzaXN0ZW50X2JpdAABCgB1cGRhdGVfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:mangrove_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTXAgAACAQAbmFtZRkAbWluZWNyYWZ0Om1hbmdyb3ZlX2xlYXZlcwQJAG5hbWVfaGFzaKyI/dWvhEG8AwoAbmV0d29ya19pZPQxCZ8KBgBzdGF0ZXMBDgBwZXJzaXN0ZW50X2JpdAABCgB1cGRhdGVfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cherry_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQjAwAACAQAbmFtZRcAbWluZWNyYWZ0OmNoZXJyeV9sZWF2ZXMECQBuYW1lX2hhc2giTs9ChhYBlQMKAG5ldHdvcmtfaWR8bPpwCgYAc3RhdGVzAQ4AcGVyc2lzdGVudF9iaXQAAQoAdXBkYXRlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:azalea_leaves", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRDAgAACAQAbmFtZRcAbWluZWNyYWZ0OmF6YWxlYV9sZWF2ZXMECQBuYW1lX2hhc2iXFhD57wFS7AMKAG5ldHdvcmtfaWTNB/9ECgYAc3RhdGVzAQ4AcGVyc2lzdGVudF9iaXQAAQoAdXBkYXRlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:azalea_leaves_flowered", + "block_state_b64": "CgAAAwgAYmxvY2tfaWREAgAACAQAbmFtZSAAbWluZWNyYWZ0OmF6YWxlYV9sZWF2ZXNfZmxvd2VyZWQECQBuYW1lX2hhc2gs8jxlS/pMrwMKAG5ldHdvcmtfaWQ7W4PyCgYAc3RhdGVzAQ4AcGVyc2lzdGVudF9iaXQAAQoAdXBkYXRlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:oak_sapling", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQGAAAACAQAbmFtZRUAbWluZWNyYWZ0Om9ha19zYXBsaW5nBAkAbmFtZV9oYXNoogXcT9QfjiUDCgBuZXR3b3JrX2lkG22C+AoGAHN0YXRlcwEHAGFnZV9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:spruce_sapling", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ4BAAACAQAbmFtZRgAbWluZWNyYWZ0OnNwcnVjZV9zYXBsaW5nBAkAbmFtZV9oYXNoe8hz4uYP0FcDCgBuZXR3b3JrX2lkUQmhaQoGAHN0YXRlcwEHAGFnZV9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:birch_sapling", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ5BAAACAQAbmFtZRcAbWluZWNyYWZ0OmJpcmNoX3NhcGxpbmcECQBuYW1lX2hhc2h348iJQ/tK4wMKAG5ldHdvcmtfaWQ2Uh53CgYAc3RhdGVzAQcAYWdlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:jungle_sapling", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ6BAAACAQAbmFtZRgAbWluZWNyYWZ0Omp1bmdsZV9zYXBsaW5nBAkAbmFtZV9oYXNo7tyTOdSrxaADCgBuZXR3b3JrX2lkXmBAdAoGAHN0YXRlcwEHAGFnZV9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:acacia_sapling", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ7BAAACAQAbmFtZRgAbWluZWNyYWZ0OmFjYWNpYV9zYXBsaW5nBAkAbmFtZV9oYXNo99sg15uoX7ADCgBuZXR3b3JrX2lkPXX1KgoGAHN0YXRlcwEHAGFnZV9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dark_oak_sapling", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ8BAAACAQAbmFtZRoAbWluZWNyYWZ0OmRhcmtfb2FrX3NhcGxpbmcECQBuYW1lX2hhc2jnVzFplW7cHgMKAG5ldHdvcmtfaWTD4giHCgYAc3RhdGVzAQcAYWdlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mangrove_propagule", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTZAgAACAQAbmFtZRwAbWluZWNyYWZ0Om1hbmdyb3ZlX3Byb3BhZ3VsZQQJAG5hbWVfaGFzaJGeox6hkfLFAwoAbmV0d29ya19pZAIpvpYKBgBzdGF0ZXMBBwBoYW5naW5nAAMPAHByb3BhZ3VsZV9zdGFnZQAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cherry_sapling", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQiAwAACAQAbmFtZRgAbWluZWNyYWZ0OmNoZXJyeV9zYXBsaW5nBAkAbmFtZV9oYXNoGrPpNMf1LtcDCgBuZXR3b3JrX2lkypakXQoGAHN0YXRlcwEHAGFnZV9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bee_nest", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTZAQAACAQAbmFtZRIAbWluZWNyYWZ0OmJlZV9uZXN0BAkAbmFtZV9oYXNo2R2WBxUHEZIDCgBuZXR3b3JrX2lkiXWLEAoGAHN0YXRlcwMJAGRpcmVjdGlvbgAAAAADCwBob25leV9sZXZlbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:wheat_seeds" + }, + { + "id": "minecraft:pumpkin_seeds" + }, + { + "id": "minecraft:melon_seeds" + }, + { + "id": "minecraft:beetroot_seeds" + }, + { + "id": "minecraft:torchflower_seeds" + }, + { + "id": "minecraft:pitcher_pod" + }, + { + "id": "minecraft:wheat" + }, + { + "id": "minecraft:beetroot" + }, + { + "id": "minecraft:potato" + }, + { + "id": "minecraft:poisonous_potato" + }, + { + "id": "minecraft:carrot" + }, + { + "id": "minecraft:golden_carrot" + }, + { + "id": "minecraft:apple" + }, + { + "id": "minecraft:golden_apple" + }, + { + "id": "minecraft:enchanted_golden_apple" + }, + { + "id": "minecraft:melon_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRnAAAACAQAbmFtZRUAbWluZWNyYWZ0Om1lbG9uX2Jsb2NrBAkAbmFtZV9oYXNoXxSm0iYpAx8DCgBuZXR3b3JrX2lkC9rqygoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:melon_slice" + }, + { + "id": "minecraft:glistering_melon_slice" + }, + { + "id": "minecraft:sweet_berries" + }, + { + "id": "minecraft:glow_berries" + }, + { + "id": "minecraft:pumpkin", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRWAAAACAQAbmFtZREAbWluZWNyYWZ0OnB1bXBraW4ECQBuYW1lX2hhc2gc8A3jaSzWbgMKAG5ldHdvcmtfaWRFGA+xCgYAc3RhdGVzCBwAbWluZWNyYWZ0OmNhcmRpbmFsX2RpcmVjdGlvbgUAc291dGgAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:carved_pumpkin", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSaAQAACAQAbmFtZRgAbWluZWNyYWZ0OmNhcnZlZF9wdW1wa2luBAkAbmFtZV9oYXNoPu1T0MJuG90DCgBuZXR3b3JrX2lkXNNn5QoGAHN0YXRlcwgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAHNvdXRoAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:lit_pumpkin", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRbAAAACAQAbmFtZRUAbWluZWNyYWZ0OmxpdF9wdW1wa2luBAkAbmFtZV9oYXNo7gWtEm2uPL0DCgBuZXR3b3JrX2lki8sU4AoGAHN0YXRlcwgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAHNvdXRoAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:honeycomb" + }, + { + "id": "minecraft:fern", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRPBAAACAQAbmFtZQ4AbWluZWNyYWZ0OmZlcm4ECQBuYW1lX2hhc2iHbj3yXFn4owMKAG5ldHdvcmtfaWQKC6u7CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:large_fern", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRgBAAACAQAbmFtZRQAbWluZWNyYWZ0OmxhcmdlX2Zlcm4ECQBuYW1lX2hhc2gnE9sd0LzHtQMKAG5ldHdvcmtfaWTS9hG4CgYAc3RhdGVzAQ8AdXBwZXJfYmxvY2tfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:short_grass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQfAAAACAQAbmFtZRUAbWluZWNyYWZ0OnNob3J0X2dyYXNzBAkAbmFtZV9oYXNobWQghLH0bLcDCgBuZXR3b3JrX2lkJWOOqAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:tall_grass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRfBAAACAQAbmFtZRQAbWluZWNyYWZ0OnRhbGxfZ3Jhc3MECQBuYW1lX2hhc2ii5MyZJpv4sgMKAG5ldHdvcmtfaWRRfeH4CgYAc3RhdGVzAQ8AdXBwZXJfYmxvY2tfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:nether_sprouts" + }, + { + "id": "minecraft:fire_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRGAwAACAQAbmFtZRQAbWluZWNyYWZ0OmZpcmVfY29yYWwECQBuYW1lX2hhc2hOHyyECVQVJwMKAG5ldHdvcmtfaWS9vF0UCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brain_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWREAwAACAQAbmFtZRUAbWluZWNyYWZ0OmJyYWluX2NvcmFsBAkAbmFtZV9oYXNoRiWlLCwA2ycDCgBuZXR3b3JrX2lkrjAuhgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:bubble_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRFAwAACAQAbmFtZRYAbWluZWNyYWZ0OmJ1YmJsZV9jb3JhbAQJAG5hbWVfaGFzaJz6rWnl+v2qAwoAbmV0d29ya19pZImIWy0KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:tube_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSCAQAACAQAbmFtZRQAbWluZWNyYWZ0OnR1YmVfY29yYWwECQBuYW1lX2hhc2iYa8oO/tgk7wMKAG5ldHdvcmtfaWRTfND5CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:horn_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRHAwAACAQAbmFtZRQAbWluZWNyYWZ0Omhvcm5fY29yYWwECQBuYW1lX2hhc2iZnRHjZbnLPgMKAG5ldHdvcmtfaWR+GGp8CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dead_fire_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRLAwAACAQAbmFtZRkAbWluZWNyYWZ0OmRlYWRfZmlyZV9jb3JhbAQJAG5hbWVfaGFzaEPU6tFy/latAwoAbmV0d29ya19pZNMa7V4KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dead_brain_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRJAwAACAQAbmFtZRoAbWluZWNyYWZ0OmRlYWRfYnJhaW5fY29yYWwECQBuYW1lX2hhc2j5L6QJCISvzwMKAG5ldHdvcmtfaWQkKzeiCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dead_bubble_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRKAwAACAQAbmFtZRsAbWluZWNyYWZ0OmRlYWRfYnViYmxlX2NvcmFsBAkAbmFtZV9oYXNoSTOZ/8wpeNYDCgBuZXR3b3JrX2lka6w9DAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:dead_tube_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRIAwAACAQAbmFtZRkAbWluZWNyYWZ0OmRlYWRfdHViZV9jb3JhbAQJAG5hbWVfaGFzaJGjNWhlaIJeAwoAbmV0d29ya19pZO3Z0ygKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dead_horn_coral", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRMAwAACAQAbmFtZRkAbWluZWNyYWZ0OmRlYWRfaG9ybl9jb3JhbAQJAG5hbWVfaGFzaJBkz3qt+g2cAwoAbmV0d29ya19pZBAN+eYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:fire_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRJBAAACAQAbmFtZRgAbWluZWNyYWZ0OmZpcmVfY29yYWxfZmFuBAkAbmFtZV9oYXNosOTxYYxsDLgDCgBuZXR3b3JrX2lkFKxbEgoGAHN0YXRlcwMTAGNvcmFsX2Zhbl9kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brain_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRHBAAACAQAbmFtZRkAbWluZWNyYWZ0OmJyYWluX2NvcmFsX2ZhbgQJAG5hbWVfaGFzaAi5uHizSNcqAwoAbmV0d29ya19pZFtLjNwKBgBzdGF0ZXMDEwBjb3JhbF9mYW5fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:bubble_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRIBAAACAQAbmFtZRoAbWluZWNyYWZ0OmJ1YmJsZV9jb3JhbF9mYW4ECQBuYW1lX2hhc2hy/rX2on17DgMKAG5ldHdvcmtfaWQof60VCgYAc3RhdGVzAxMAY29yYWxfZmFuX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:tube_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSEAQAACAQAbmFtZRgAbWluZWNyYWZ0OnR1YmVfY29yYWxfZmFuBAkAbmFtZV9oYXNo9pbJbo+PphIDCgBuZXR3b3JrX2lkenDTYgoGAHN0YXRlcwMTAGNvcmFsX2Zhbl9kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:horn_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRKBAAACAQAbmFtZRgAbWluZWNyYWZ0Omhvcm5fY29yYWxfZmFuBAkAbmFtZV9oYXNoA+ri6NPDkbUDCgBuZXR3b3JrX2lkezoHNwoGAHN0YXRlcwMTAGNvcmFsX2Zhbl9kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dead_fire_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRNBAAACAQAbmFtZR0AbWluZWNyYWZ0OmRlYWRfZmlyZV9jb3JhbF9mYW4ECQBuYW1lX2hhc2hpQO02NDxPvwMKAG5ldHdvcmtfaWTaOJgLCgYAc3RhdGVzAxMAY29yYWxfZmFuX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dead_brain_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRLBAAACAQAbmFtZR4AbWluZWNyYWZ0OmRlYWRfYnJhaW5fY29yYWxfZmFuBAkAbmFtZV9oYXNoI9/+Z4YqMhIDCgBuZXR3b3JrX2lkqYXxYgoGAHN0YXRlcwMTAGNvcmFsX2Zhbl9kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dead_bubble_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRMBAAACAQAbmFtZR8AbWluZWNyYWZ0OmRlYWRfYnViYmxlX2NvcmFsX2ZhbgQJAG5hbWVfaGFzaBNECtIM6VIOAwoAbmV0d29ya19pZLrNtBEKBgBzdGF0ZXMDEwBjb3JhbF9mYW5fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:dead_tube_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSFAQAACAQAbmFtZR0AbWluZWNyYWZ0OmRlYWRfdHViZV9jb3JhbF9mYW4ECQBuYW1lX2hhc2hbBBM9jFKWvQMKAG5ldHdvcmtfaWSkJKUWCgYAc3RhdGVzAxMAY29yYWxfZmFuX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dead_horn_coral_fan", + "block_state_b64": "CgAAAwgAYmxvY2tfaWROBAAACAQAbmFtZR0AbWluZWNyYWZ0OmRlYWRfaG9ybl9jb3JhbF9mYW4ECQBuYW1lX2hhc2hObElFrHfPygMKAG5ldHdvcmtfaWQ1ZxvmCgYAc3RhdGVzAxMAY29yYWxfZmFuX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crimson_roots", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTeAQAACAQAbmFtZRcAbWluZWNyYWZ0OmNyaW1zb25fcm9vdHMECQBuYW1lX2hhc2j1fWgQLViv5QMKAG5ldHdvcmtfaWRLh5DXCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:warped_roots", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTfAQAACAQAbmFtZRYAbWluZWNyYWZ0OndhcnBlZF9yb290cwQJAG5hbWVfaGFzaBc3WvbJOLlkAwoAbmV0d29ya19pZNLgDnAKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:yellow_flower", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQlAAAACAQAbmFtZRcAbWluZWNyYWZ0OnllbGxvd19mbG93ZXIECQBuYW1lX2hhc2jWbU1pF0OUGAMKAG5ldHdvcmtfaWQgO3hpCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:poppy", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQmAAAACAQAbmFtZQ8AbWluZWNyYWZ0OnBvcHB5BAkAbmFtZV9oYXNocMF8pITMbkcDCgBuZXR3b3JrX2lk8im6ywoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:blue_orchid", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ9BAAACAQAbmFtZRUAbWluZWNyYWZ0OmJsdWVfb3JjaGlkBAkAbmFtZV9oYXNoBjz2MsgB21EDCgBuZXR3b3JrX2lk/iLsSwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:allium", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ+BAAACAQAbmFtZRAAbWluZWNyYWZ0OmFsbGl1bQQJAG5hbWVfaGFzaDCGQBHNDTkcAwoAbmV0d29ya19pZD9Dgr0KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:azure_bluet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ/BAAACAQAbmFtZRUAbWluZWNyYWZ0OmF6dXJlX2JsdWV0BAkAbmFtZV9oYXNo9N5egqMT2QcDCgBuZXR3b3JrX2lkwIgDnwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:red_tulip", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRABAAACAQAbmFtZRMAbWluZWNyYWZ0OnJlZF90dWxpcAQJAG5hbWVfaGFzaAjMi9Rd+6rhAwoAbmV0d29ya19pZAZCnt8KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:orange_tulip", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRBBAAACAQAbmFtZRYAbWluZWNyYWZ0Om9yYW5nZV90dWxpcAQJAG5hbWVfaGFzaP+NjxMBZ8vAAwoAbmV0d29ya19pZPYatsMKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:white_tulip", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRCBAAACAQAbmFtZRUAbWluZWNyYWZ0OndoaXRlX3R1bGlwBAkAbmFtZV9oYXNo5vbU4VRPh3ADCgBuZXR3b3JrX2lkok+4rQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:pink_tulip", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRDBAAACAQAbmFtZRQAbWluZWNyYWZ0OnBpbmtfdHVsaXAECQBuYW1lX2hhc2hxDHZa6OaNXAMKAG5ldHdvcmtfaWTiOT+VCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:oxeye_daisy", + "block_state_b64": "CgAAAwgAYmxvY2tfaWREBAAACAQAbmFtZRUAbWluZWNyYWZ0Om94ZXllX2RhaXN5BAkAbmFtZV9oYXNoXwxsqNQTN9gDCgBuZXR3b3JrX2lkw7R7dwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cornflower", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRFBAAACAQAbmFtZRQAbWluZWNyYWZ0OmNvcm5mbG93ZXIECQBuYW1lX2hhc2gnhyC3EeqHgAMKAG5ldHdvcmtfaWR4VrvACgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:lily_of_the_valley", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRGBAAACAQAbmFtZRwAbWluZWNyYWZ0OmxpbHlfb2ZfdGhlX3ZhbGxleQQJAG5hbWVfaGFzaI64TJSf9mgQAwoAbmV0d29ya19pZFE9+nwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sunflower", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSvAAAACAQAbmFtZRMAbWluZWNyYWZ0OnN1bmZsb3dlcgQJAG5hbWVfaGFzaAMxYQLoqlZ0AwoAbmV0d29ya19pZA10iSoKBgBzdGF0ZXMBDwB1cHBlcl9ibG9ja19iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:lilac", + "block_state_b64": "CgAAAwgAYmxvY2tfaWReBAAACAQAbmFtZQ8AbWluZWNyYWZ0OmxpbGFjBAkAbmFtZV9oYXNoD3nrQJuo7NkDCgBuZXR3b3JrX2lk5W+uFAoGAHN0YXRlcwEPAHVwcGVyX2Jsb2NrX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:rose_bush", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhBAAACAQAbmFtZRMAbWluZWNyYWZ0OnJvc2VfYnVzaAQJAG5hbWVfaGFzaLoiFk8LVpGKAwoAbmV0d29ya19pZMZPv48KBgBzdGF0ZXMBDwB1cHBlcl9ibG9ja19iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:peony", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRiBAAACAQAbmFtZQ8AbWluZWNyYWZ0OnBlb255BAkAbmFtZV9oYXNoR4dYc4QquPADCgBuZXR3b3JrX2lkrTe7RwoGAHN0YXRlcwEPAHVwcGVyX2Jsb2NrX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:pitcher_plant", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRjAwAACAQAbmFtZRcAbWluZWNyYWZ0OnBpdGNoZXJfcGxhbnQECQBuYW1lX2hhc2hRJHzsbDH+SQMKAG5ldHdvcmtfaWRnY76VCgYAc3RhdGVzAQ8AdXBwZXJfYmxvY2tfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:pink_petals", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQkAwAACAQAbmFtZRUAbWluZWNyYWZ0OnBpbmtfcGV0YWxzBAkAbmFtZV9oYXNo6DQwN9SwV3QDCgBuZXR3b3JrX2lkNWneGgoGAHN0YXRlcwMGAGdyb3d0aAAAAAAIHABtaW5lY3JhZnQ6Y2FyZGluYWxfZGlyZWN0aW9uBQBzb3V0aAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:wither_rose", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTXAQAACAQAbmFtZRUAbWluZWNyYWZ0OndpdGhlcl9yb3NlBAkAbmFtZV9oYXNoaSKxl3I516gDCgBuZXR3b3JrX2lkATXLPwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:torchflower", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ3AwAACAQAbmFtZRUAbWluZWNyYWZ0OnRvcmNoZmxvd2VyBAkAbmFtZV9oYXNoL+mHtElwbqQDCgBuZXR3b3JrX2lkI34O+AoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:white_dye" + }, + { + "id": "minecraft:light_gray_dye" + }, + { + "id": "minecraft:gray_dye" + }, + { + "id": "minecraft:black_dye" + }, + { + "id": "minecraft:brown_dye" + }, + { + "id": "minecraft:red_dye" + }, + { + "id": "minecraft:orange_dye" + }, + { + "id": "minecraft:yellow_dye" + }, + { + "id": "minecraft:lime_dye" + }, + { + "id": "minecraft:green_dye" + }, + { + "id": "minecraft:cyan_dye" + }, + { + "id": "minecraft:light_blue_dye" + }, + { + "id": "minecraft:blue_dye" + }, + { + "id": "minecraft:purple_dye" + }, + { + "id": "minecraft:magenta_dye" + }, + { + "id": "minecraft:pink_dye" + }, + { + "id": "minecraft:ink_sac" + }, + { + "id": "minecraft:glow_ink_sac" + }, + { + "id": "minecraft:cocoa_beans" + }, + { + "id": "minecraft:lapis_lazuli" + }, + { + "id": "minecraft:bone_meal" + }, + { + "id": "minecraft:vine", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRqAAAACAQAbmFtZQ4AbWluZWNyYWZ0OnZpbmUECQBuYW1lX2hhc2j0Sj8/XeXOLAMKAG5ldHdvcmtfaWSUkDtbCgYAc3RhdGVzAxMAdmluZV9kaXJlY3Rpb25fYml0cwAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:weeping_vines", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTmAQAACAQAbmFtZRcAbWluZWNyYWZ0OndlZXBpbmdfdmluZXMECQBuYW1lX2hhc2jrLgLHkQygiwMKAG5ldHdvcmtfaWQ8NHSJCgYAc3RhdGVzAxEAd2VlcGluZ192aW5lc19hZ2UAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:twisting_vines", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQeAgAACAQAbmFtZRgAbWluZWNyYWZ0OnR3aXN0aW5nX3ZpbmVzBAkAbmFtZV9oYXNoDYR5QgVUQJADCgBuZXR3b3JrX2lk5kYVIQoGAHN0YXRlcwMSAHR3aXN0aW5nX3ZpbmVzX2FnZQAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:waterlily", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRvAAAACAQAbmFtZRMAbWluZWNyYWZ0OndhdGVybGlseQQJAG5hbWVfaGFzaEHgC4c1SXg0AwoAbmV0d29ya19pZOOerp8KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:seagrass", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSBAQAACAQAbmFtZRIAbWluZWNyYWZ0OnNlYWdyYXNzBAkAbmFtZV9oYXNoHSBFtoHdWxIDCgBuZXR3b3JrX2lkd3lhEAoGAHN0YXRlcwgOAHNlYV9ncmFzc190eXBlBwBkZWZhdWx0AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:kelp" + }, + { + "id": "minecraft:deadbush", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQgAAAACAQAbmFtZRIAbWluZWNyYWZ0OmRlYWRidXNoBAkAbmFtZV9oYXNoPFODe4IScnYDCgBuZXR3b3JrX2lkVfnl+goGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:bamboo", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSiAQAACAQAbmFtZRAAbWluZWNyYWZ0OmJhbWJvbwQJAG5hbWVfaGFzaBgpGmyzhedCAwoAbmV0d29ya19pZIZv1nYKBgBzdGF0ZXMBBwBhZ2VfYml0AAgQAGJhbWJvb19sZWFmX3NpemUJAG5vX2xlYXZlcwgWAGJhbWJvb19zdGFsa190aGlja25lc3MEAHRoaW4AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:snow", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRQAAAACAQAbmFtZQ4AbWluZWNyYWZ0OnNub3cECQBuYW1lX2hhc2gVHr5XXdETWAMKAG5ldHdvcmtfaWQ0zCeHCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:ice", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRPAAAACAQAbmFtZQ0AbWluZWNyYWZ0OmljZQQJAG5hbWVfaGFzaNF26f+uUT29AwoAbmV0d29ya19pZOUMaQYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:packed_ice", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSuAAAACAQAbmFtZRQAbWluZWNyYWZ0OnBhY2tlZF9pY2UECQBuYW1lX2hhc2hk4bu123ZrFgMKAG5ldHdvcmtfaWTr/ooaCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:blue_ice", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQKAQAACAQAbmFtZRIAbWluZWNyYWZ0OmJsdWVfaWNlBAkAbmFtZV9oYXNo+EKxYgFhKcgDCgBuZXR3b3JrX2lkxfsA8goGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:snow_layer", + "block_state_b64": "CgAAAwgAYmxvY2tfaWROAAAACAQAbmFtZRQAbWluZWNyYWZ0OnNub3dfbGF5ZXIECQBuYW1lX2hhc2hXka6atMYUCQMKAG5ldHdvcmtfaWRCrIPcCgYAc3RhdGVzAQsAY292ZXJlZF9iaXQAAwYAaGVpZ2h0AAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:pointed_dripstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQzAgAACAQAbmFtZRsAbWluZWNyYWZ0OnBvaW50ZWRfZHJpcHN0b25lBAkAbmFtZV9oYXNoJMISzmHQgt8DCgBuZXR3b3JrX2lkbWrtYgoGAHN0YXRlcwgTAGRyaXBzdG9uZV90aGlja25lc3MDAHRpcAEHAGhhbmdpbmcBAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dripstone_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ8AgAACAQAbmFtZRkAbWluZWNyYWZ0OmRyaXBzdG9uZV9ibG9jawQJAG5hbWVfaGFzaIIXnEqY77YsAwoAbmV0d29ya19pZMZi2kwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:moss_carpet", + "block_state_b64": "CgAAAwgAYmxvY2tfaWROAgAACAQAbmFtZRUAbWluZWNyYWZ0Om1vc3NfY2FycGV0BAkAbmFtZV9oYXNo/NEDxRPTshYDCgBuZXR3b3JrX2lkaGG3QwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:moss_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ/AgAACAQAbmFtZRQAbWluZWNyYWZ0Om1vc3NfYmxvY2sECQBuYW1lX2hhc2iovcsPUYX2tgMKAG5ldHdvcmtfaWT3JSbfCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dirt_with_roots", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ9AgAACAQAbmFtZRkAbWluZWNyYWZ0OmRpcnRfd2l0aF9yb290cwQJAG5hbWVfaGFzaLCNDYPviDCIAwoAbmV0d29ya19pZNCkwzoKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:hanging_roots", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ+AgAACAQAbmFtZRcAbWluZWNyYWZ0Omhhbmdpbmdfcm9vdHMECQBuYW1lX2hhc2jaXn+Y5UZpDAMKAG5ldHdvcmtfaWRU4c2vCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:mangrove_roots", + "block_state_b64": "CgAAAwgAYmxvY2tfaWThAgAACAQAbmFtZRgAbWluZWNyYWZ0Om1hbmdyb3ZlX3Jvb3RzBAkAbmFtZV9oYXNoa786PzQGZ6kDCgBuZXR3b3JrX2lklA0AHgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:muddy_mangrove_roots", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTiAgAACAQAbmFtZR4AbWluZWNyYWZ0Om11ZGR5X21hbmdyb3ZlX3Jvb3RzBAkAbmFtZV9oYXNo9YApdHpo1RkDCgBuZXR3b3JrX2lkH0Oc4woGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:big_dripleaf", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRCAgAACAQAbmFtZRYAbWluZWNyYWZ0OmJpZ19kcmlwbGVhZgQJAG5hbWVfaGFzaGBEhXjo6qSdAwoAbmV0d29ya19pZMETsb8KBgBzdGF0ZXMBEQBiaWdfZHJpcGxlYWZfaGVhZAEIEQBiaWdfZHJpcGxlYWZfdGlsdAQAbm9uZQgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAHNvdXRoAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:small_dripleaf_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRPAgAACAQAbmFtZR4AbWluZWNyYWZ0OnNtYWxsX2RyaXBsZWFmX2Jsb2NrBAkAbmFtZV9oYXNojxRAgXP9uWADCgBuZXR3b3JrX2lkozbVPwoGAHN0YXRlcwgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24EAGVhc3QBDwB1cHBlcl9ibG9ja19iaXQBAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:spore_blossom", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRAAgAACAQAbmFtZRcAbWluZWNyYWZ0OnNwb3JlX2Jsb3Nzb20ECQBuYW1lX2hhc2il3U72Gbco2gMKAG5ldHdvcmtfaWSbbbgcCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:azalea", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRQAgAACAQAbmFtZRAAbWluZWNyYWZ0OmF6YWxlYQQJAG5hbWVfaGFzaNyUl+BW9JrBAwoAbmV0d29ya19pZO/XZtQKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:flowering_azalea", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRRAgAACAQAbmFtZRoAbWluZWNyYWZ0OmZsb3dlcmluZ19hemFsZWEECQBuYW1lX2hhc2ie9r33wz8kiwMKAG5ldHdvcmtfaWQ3ij0VCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:glow_lichen", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSaAgAACAQAbmFtZRUAbWluZWNyYWZ0Omdsb3dfbGljaGVuBAkAbmFtZV9oYXNobyPUrIYlo44DCgBuZXR3b3JrX2lkCh8lSAoGAHN0YXRlcwMZAG11bHRpX2ZhY2VfZGlyZWN0aW9uX2JpdHM/AAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:amethyst_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRGAgAACAQAbmFtZRgAbWluZWNyYWZ0OmFtZXRoeXN0X2Jsb2NrBAkAbmFtZV9oYXNob+JK1iiAthcDCgBuZXR3b3JrX2lk8HtpzgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:budding_amethyst", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRHAgAACAQAbmFtZRoAbWluZWNyYWZ0OmJ1ZGRpbmdfYW1ldGh5c3QECQBuYW1lX2hhc2gJvAwfI14fxgMKAG5ldHdvcmtfaWTQYqfACgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:amethyst_cluster", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRIAgAACAQAbmFtZRoAbWluZWNyYWZ0OmFtZXRoeXN0X2NsdXN0ZXIECQBuYW1lX2hhc2jK82S88Jgm8wMKAG5ldHdvcmtfaWSCPMPGCgYAc3RhdGVzCBQAbWluZWNyYWZ0OmJsb2NrX2ZhY2UCAHVwAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:large_amethyst_bud", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRJAgAACAQAbmFtZRwAbWluZWNyYWZ0OmxhcmdlX2FtZXRoeXN0X2J1ZAQJAG5hbWVfaGFzaAHhdpWD+sd5AwoAbmV0d29ya19pZKkQxOcKBgBzdGF0ZXMIFABtaW5lY3JhZnQ6YmxvY2tfZmFjZQIAdXAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:medium_amethyst_bud", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRKAgAACAQAbmFtZR0AbWluZWNyYWZ0Om1lZGl1bV9hbWV0aHlzdF9idWQECQBuYW1lX2hhc2g5lBGtC0DzZQMKAG5ldHdvcmtfaWSYiP4gCgYAc3RhdGVzCBQAbWluZWNyYWZ0OmJsb2NrX2ZhY2UCAHVwAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:small_amethyst_bud", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRLAgAACAQAbmFtZRwAbWluZWNyYWZ0OnNtYWxsX2FtZXRoeXN0X2J1ZAQJAG5hbWVfaGFzaEnb4+q9PO4YAwoAbmV0d29ya19pZGWzxrQKBgBzdGF0ZXMIFABtaW5lY3JhZnQ6YmxvY2tfZmFjZQIAdXAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:tuff", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRMAgAACAQAbmFtZQ4AbWluZWNyYWZ0OnR1ZmYECQBuYW1lX2hhc2h1Rwc1XYsBGwMKAG5ldHdvcmtfaWRwQGn0CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:tuff_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTpAwAACAQAbmFtZRUAbWluZWNyYWZ0OnR1ZmZfc3RhaXJzBAkAbmFtZV9oYXNoKjyNUBjcfZsDCgBuZXR3b3JrX2lk+LsycgoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:tuff_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTnAwAACAQAbmFtZRMAbWluZWNyYWZ0OnR1ZmZfc2xhYgQJAG5hbWVfaGFzaIhCGdlIsnMUAwoAbmV0d29ya19pZN1dUL4KBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:tuff_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTqAwAACAQAbmFtZRMAbWluZWNyYWZ0OnR1ZmZfd2FsbAQJAG5hbWVfaGFzaMyeeu1IRf03AwoAbmV0d29ya19pZDkIrosKBgBzdGF0ZXMIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:chiseled_tuff", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTwAwAACAQAbmFtZRcAbWluZWNyYWZ0OmNoaXNlbGVkX3R1ZmYECQBuYW1lX2hhc2iVliOT8OTQ9AMKAG5ldHdvcmtfaWTLNKOiCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_tuff", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTrAwAACAQAbmFtZRcAbWluZWNyYWZ0OnBvbGlzaGVkX3R1ZmYECQBuYW1lX2hhc2hyaLe/KEVZ0gMKAG5ldHdvcmtfaWTcX3NrCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_tuff_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTuAwAACAQAbmFtZR4AbWluZWNyYWZ0OnBvbGlzaGVkX3R1ZmZfc3RhaXJzBAkAbmFtZV9oYXNo8yuah8QI1dcDCgBuZXR3b3JrX2lkjLoU4AoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:polished_tuff_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTsAwAACAQAbmFtZRwAbWluZWNyYWZ0OnBvbGlzaGVkX3R1ZmZfc2xhYgQJAG5hbWVfaGFzaLXdb48YvAsHAwoAbmV0d29ya19pZAnJ7W0KBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_tuff_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTvAwAACAQAbmFtZRwAbWluZWNyYWZ0OnBvbGlzaGVkX3R1ZmZfd2FsbAQJAG5hbWVfaGFzaJVZj6QYWXUrAwoAbmV0d29ya19pZLU7dooKBgBzdGF0ZXMIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:tuff_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTxAwAACAQAbmFtZRUAbWluZWNyYWZ0OnR1ZmZfYnJpY2tzBAkAbmFtZV9oYXNo/hbQ+mXSK7wDCgBuZXR3b3JrX2lk6gmIwQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:tuff_brick_stairs", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT0AwAACAQAbmFtZRsAbWluZWNyYWZ0OnR1ZmZfYnJpY2tfc3RhaXJzBAkAbmFtZV9oYXNoWJpkAurUfKwDCgBuZXR3b3JrX2lkUMcjiwoGAHN0YXRlcwEPAHVwc2lkZV9kb3duX2JpdAADEAB3ZWlyZG9fZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:tuff_brick_slab", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTyAwAACAQAbmFtZRkAbWluZWNyYWZ0OnR1ZmZfYnJpY2tfc2xhYgQJAG5hbWVfaGFzaLqPMjVCv5dIAwoAbmV0d29ya19pZOmeRhcKBgBzdGF0ZXMIFwBtaW5lY3JhZnQ6dmVydGljYWxfaGFsZgYAYm90dG9tAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:tuff_brick_wall", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT1AwAACAQAbmFtZRkAbWluZWNyYWZ0OnR1ZmZfYnJpY2tfd2FsbAQJAG5hbWVfaGFzaIL0IyNCOsonAwoAbmV0d29ya19pZJW4T5UKBgBzdGF0ZXMIGQB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9lYXN0BABub25lCBoAd2FsbF9jb25uZWN0aW9uX3R5cGVfbm9ydGgEAG5vbmUIGgB3YWxsX2Nvbm5lY3Rpb25fdHlwZV9zb3V0aAQAbm9uZQgZAHdhbGxfY29ubmVjdGlvbl90eXBlX3dlc3QEAG5vbmUBDQB3YWxsX3Bvc3RfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:chiseled_tuff_bricks", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT2AwAACAQAbmFtZR4AbWluZWNyYWZ0OmNoaXNlbGVkX3R1ZmZfYnJpY2tzBAkAbmFtZV9oYXNo3oQw6gmxYuADCgBuZXR3b3JrX2lkm3D8AgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:calcite", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRFAgAACAQAbmFtZREAbWluZWNyYWZ0OmNhbGNpdGUECQBuYW1lX2hhc2ixKLu8ZIdzDQMKAG5ldHdvcmtfaWQlSbJDCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:chicken" + }, + { + "id": "minecraft:porkchop" + }, + { + "id": "minecraft:beef" + }, + { + "id": "minecraft:mutton" + }, + { + "id": "minecraft:rabbit" + }, + { + "id": "minecraft:cod" + }, + { + "id": "minecraft:salmon" + }, + { + "id": "minecraft:tropical_fish" + }, + { + "id": "minecraft:pufferfish" + }, + { + "id": "minecraft:brown_mushroom", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQnAAAACAQAbmFtZRgAbWluZWNyYWZ0OmJyb3duX211c2hyb29tBAkAbmFtZV9oYXNonYw/FO78WDoDCgBuZXR3b3JrX2lkLh1OXAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:red_mushroom", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQoAAAACAQAbmFtZRYAbWluZWNyYWZ0OnJlZF9tdXNocm9vbQQJAG5hbWVfaGFzaPpzJua7669xAwoAbmV0d29ya19pZCvWPYkKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crimson_fungus", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTjAQAACAQAbmFtZRgAbWluZWNyYWZ0OmNyaW1zb25fZnVuZ3VzBAkAbmFtZV9oYXNolIcCUuFM2u0DCgBuZXR3b3JrX2lkD2NN0QoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:warped_fungus", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTkAQAACAQAbmFtZRcAbWluZWNyYWZ0OndhcnBlZF9mdW5ndXMECQBuYW1lX2hhc2gq8bSnRVTAFgMKAG5ldHdvcmtfaWTkwS+rCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brown_mushroom_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRjAAAACAQAbmFtZR4AbWluZWNyYWZ0OmJyb3duX211c2hyb29tX2Jsb2NrBAkAbmFtZV9oYXNoIyjnbI6xy9sDCgBuZXR3b3JrX2lkdOMhDAoGAHN0YXRlcwMSAGh1Z2VfbXVzaHJvb21fYml0cw4AAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:red_mushroom_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRkAAAACAQAbmFtZRwAbWluZWNyYWZ0OnJlZF9tdXNocm9vbV9ibG9jawQJAG5hbWVfaGFzaJTTyJbth9M9AwoAbmV0d29ya19pZM+AyboKBgBzdGF0ZXMDEgBodWdlX211c2hyb29tX2JpdHMOAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brown_mushroom_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRjAAAACAQAbmFtZR4AbWluZWNyYWZ0OmJyb3duX211c2hyb29tX2Jsb2NrBAkAbmFtZV9oYXNoIyjnbI6xy9sDCgBuZXR3b3JrX2lkbdt3CAoGAHN0YXRlcwMSAGh1Z2VfbXVzaHJvb21fYml0cw8AAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:brown_mushroom_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRjAAAACAQAbmFtZR4AbWluZWNyYWZ0OmJyb3duX211c2hyb29tX2Jsb2NrBAkAbmFtZV9oYXNoIyjnbI6xy9sDCgBuZXR3b3JrX2lkSrMl9goGAHN0YXRlcwMSAGh1Z2VfbXVzaHJvb21fYml0cwAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:egg" + }, + { + "id": "minecraft:sugar_cane" + }, + { + "id": "minecraft:sugar" + }, + { + "id": "minecraft:rotten_flesh" + }, + { + "id": "minecraft:bone" + }, + { + "id": "minecraft:web", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQeAAAACAQAbmFtZQ0AbWluZWNyYWZ0OndlYgQJAG5hbWVfaGFzaA4GKQCvG4i9AwoAbmV0d29ya19pZApt+jgKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:spider_eye" + }, + { + "id": "minecraft:mob_spawner", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ0AAAACAQAbmFtZRUAbWluZWNyYWZ0Om1vYl9zcGF3bmVyBAkAbmFtZV9oYXNoNwGrCV/Fkh8DCgBuZXR3b3JrX2lkM1wTmgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:trial_spawner", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ6AgAACAQAbmFtZRcAbWluZWNyYWZ0OnRyaWFsX3NwYXduZXIECQBuYW1lX2hhc2iNLRPB4ACz+QMKAG5ldHdvcmtfaWTWFYHGCgYAc3RhdGVzAQcAb21pbm91cwADEwB0cmlhbF9zcGF3bmVyX3N0YXRlAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:vault", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ5AgAACAQAbmFtZQ8AbWluZWNyYWZ0OnZhdWx0BAkAbmFtZV9oYXNoCAp9n3IAyqcDCgBuZXR3b3JrX2lk6/P+vwoGAHN0YXRlcwgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAHNvdXRoAQcAb21pbm91cwAICwB2YXVsdF9zdGF0ZQgAaW5hY3RpdmUAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:end_portal_frame", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR4AAAACAQAbmFtZRoAbWluZWNyYWZ0OmVuZF9wb3J0YWxfZnJhbWUECQBuYW1lX2hhc2gqofyUIjGOpQMKAG5ldHdvcmtfaWRbGHf8CgYAc3RhdGVzARIAZW5kX3BvcnRhbF9leWVfYml0AAgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAHNvdXRoAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:monster_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhAAAACAQAbmFtZRUAbWluZWNyYWZ0Om1vbnN0ZXJfZWdnBAkAbmFtZV9oYXNoFMxMALksxVEDCgBuZXR3b3JrX2lkqXH7RgoGAHN0YXRlcwgWAG1vbnN0ZXJfZWdnX3N0b25lX3R5cGUFAHN0b25lAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:monster_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhAAAACAQAbmFtZRUAbWluZWNyYWZ0Om1vbnN0ZXJfZWdnBAkAbmFtZV9oYXNoFMxMALksxVEDCgBuZXR3b3JrX2lkeIBb6QoGAHN0YXRlcwgWAG1vbnN0ZXJfZWdnX3N0b25lX3R5cGULAGNvYmJsZXN0b25lAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:monster_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhAAAACAQAbmFtZRUAbWluZWNyYWZ0Om1vbnN0ZXJfZWdnBAkAbmFtZV9oYXNoFMxMALksxVEDCgBuZXR3b3JrX2lkDZ2cFQoGAHN0YXRlcwgWAG1vbnN0ZXJfZWdnX3N0b25lX3R5cGULAHN0b25lX2JyaWNrAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:monster_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhAAAACAQAbmFtZRUAbWluZWNyYWZ0Om1vbnN0ZXJfZWdnBAkAbmFtZV9oYXNoFMxMALksxVEDCgBuZXR3b3JrX2lkOR/cTAoGAHN0YXRlcwgWAG1vbnN0ZXJfZWdnX3N0b25lX3R5cGURAG1vc3N5X3N0b25lX2JyaWNrAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:monster_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhAAAACAQAbmFtZRUAbWluZWNyYWZ0Om1vbnN0ZXJfZWdnBAkAbmFtZV9oYXNoFMxMALksxVEDCgBuZXR3b3JrX2lkqdwlHAoGAHN0YXRlcwgWAG1vbnN0ZXJfZWdnX3N0b25lX3R5cGUTAGNyYWNrZWRfc3RvbmVfYnJpY2sAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:monster_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRhAAAACAQAbmFtZRUAbWluZWNyYWZ0Om1vbnN0ZXJfZWdnBAkAbmFtZV9oYXNoFMxMALksxVEDCgBuZXR3b3JrX2lkFqqPggoGAHN0YXRlcwgWAG1vbnN0ZXJfZWdnX3N0b25lX3R5cGUUAGNoaXNlbGVkX3N0b25lX2JyaWNrAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:infested_deepslate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTFAgAACAQAbmFtZRwAbWluZWNyYWZ0OmluZmVzdGVkX2RlZXBzbGF0ZQQJAG5hbWVfaGFzaICF2VYccxF1AwoAbmV0d29ya19pZDa/624KBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:dragon_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR6AAAACAQAbmFtZRQAbWluZWNyYWZ0OmRyYWdvbl9lZ2cECQBuYW1lX2hhc2inMzXrV+/e1wMKAG5ldHdvcmtfaWTgO1yRCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:turtle_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSeAQAACAQAbmFtZRQAbWluZWNyYWZ0OnR1cnRsZV9lZ2cECQBuYW1lX2hhc2iwSRcxOJIJ9gMKAG5ldHdvcmtfaWSIRNUhCgYAc3RhdGVzCA0AY3JhY2tlZF9zdGF0ZQkAbm9fY3JhY2tzCBAAdHVydGxlX2VnZ19jb3VudAcAb25lX2VnZwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:sniffer_egg", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRTAwAACAQAbmFtZRUAbWluZWNyYWZ0OnNuaWZmZXJfZWdnBAkAbmFtZV9oYXNoY1lozc8lPcYDCgBuZXR3b3JrX2lk7yb/2QoGAHN0YXRlcwgNAGNyYWNrZWRfc3RhdGUJAG5vX2NyYWNrcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:frog_spawn", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTTAgAACAQAbmFtZRQAbWluZWNyYWZ0OmZyb2dfc3Bhd24ECQBuYW1lX2hhc2iWmd7idp3ZZwMKAG5ldHdvcmtfaWRFzJudCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:pearlescent_froglight", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTUAgAACAQAbmFtZR8AbWluZWNyYWZ0OnBlYXJsZXNjZW50X2Zyb2dsaWdodAQJAG5hbWVfaGFzaKkcFRyycYGyAwoAbmV0d29ya19pZJqYakAKBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:verdant_froglight", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTVAgAACAQAbmFtZRsAbWluZWNyYWZ0OnZlcmRhbnRfZnJvZ2xpZ2h0BAkAbmFtZV9oYXNoA+eXuTBohrQDCgBuZXR3b3JrX2lkDIVnsQoGAHN0YXRlcwgLAHBpbGxhcl9heGlzAQB5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:ochre_froglight", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTWAgAACAQAbmFtZRkAbWluZWNyYWZ0Om9jaHJlX2Zyb2dsaWdodAQJAG5hbWVfaGFzaMY59kjPe+c3AwoAbmV0d29ya19pZO2TD50KBgBzdGF0ZXMICwBwaWxsYXJfYXhpcwEAeQADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:chicken_spawn_egg" + }, + { + "id": "minecraft:bee_spawn_egg" + }, + { + "id": "minecraft:cow_spawn_egg" + }, + { + "id": "minecraft:pig_spawn_egg" + }, + { + "id": "minecraft:sheep_spawn_egg" + }, + { + "id": "minecraft:wolf_spawn_egg" + }, + { + "id": "minecraft:polar_bear_spawn_egg" + }, + { + "id": "minecraft:ocelot_spawn_egg" + }, + { + "id": "minecraft:cat_spawn_egg" + }, + { + "id": "minecraft:mooshroom_spawn_egg" + }, + { + "id": "minecraft:bat_spawn_egg" + }, + { + "id": "minecraft:parrot_spawn_egg" + }, + { + "id": "minecraft:rabbit_spawn_egg" + }, + { + "id": "minecraft:llama_spawn_egg" + }, + { + "id": "minecraft:horse_spawn_egg" + }, + { + "id": "minecraft:donkey_spawn_egg" + }, + { + "id": "minecraft:mule_spawn_egg" + }, + { + "id": "minecraft:skeleton_horse_spawn_egg" + }, + { + "id": "minecraft:zombie_horse_spawn_egg" + }, + { + "id": "minecraft:tropical_fish_spawn_egg" + }, + { + "id": "minecraft:cod_spawn_egg" + }, + { + "id": "minecraft:pufferfish_spawn_egg" + }, + { + "id": "minecraft:salmon_spawn_egg" + }, + { + "id": "minecraft:dolphin_spawn_egg" + }, + { + "id": "minecraft:turtle_spawn_egg" + }, + { + "id": "minecraft:panda_spawn_egg" + }, + { + "id": "minecraft:fox_spawn_egg" + }, + { + "id": "minecraft:creeper_spawn_egg" + }, + { + "id": "minecraft:enderman_spawn_egg" + }, + { + "id": "minecraft:silverfish_spawn_egg" + }, + { + "id": "minecraft:skeleton_spawn_egg" + }, + { + "id": "minecraft:wither_skeleton_spawn_egg" + }, + { + "id": "minecraft:stray_spawn_egg" + }, + { + "id": "minecraft:slime_spawn_egg" + }, + { + "id": "minecraft:spider_spawn_egg" + }, + { + "id": "minecraft:zombie_spawn_egg" + }, + { + "id": "minecraft:zombie_pigman_spawn_egg" + }, + { + "id": "minecraft:husk_spawn_egg" + }, + { + "id": "minecraft:drowned_spawn_egg" + }, + { + "id": "minecraft:squid_spawn_egg" + }, + { + "id": "minecraft:glow_squid_spawn_egg" + }, + { + "id": "minecraft:cave_spider_spawn_egg" + }, + { + "id": "minecraft:witch_spawn_egg" + }, + { + "id": "minecraft:guardian_spawn_egg" + }, + { + "id": "minecraft:elder_guardian_spawn_egg" + }, + { + "id": "minecraft:endermite_spawn_egg" + }, + { + "id": "minecraft:magma_cube_spawn_egg" + }, + { + "id": "minecraft:strider_spawn_egg" + }, + { + "id": "minecraft:hoglin_spawn_egg" + }, + { + "id": "minecraft:piglin_spawn_egg" + }, + { + "id": "minecraft:zoglin_spawn_egg" + }, + { + "id": "minecraft:piglin_brute_spawn_egg" + }, + { + "id": "minecraft:goat_spawn_egg" + }, + { + "id": "minecraft:axolotl_spawn_egg" + }, + { + "id": "minecraft:warden_spawn_egg" + }, + { + "id": "minecraft:allay_spawn_egg" + }, + { + "id": "minecraft:frog_spawn_egg" + }, + { + "id": "minecraft:tadpole_spawn_egg" + }, + { + "id": "minecraft:trader_llama_spawn_egg" + }, + { + "id": "minecraft:camel_spawn_egg" + }, + { + "id": "minecraft:ghast_spawn_egg" + }, + { + "id": "minecraft:blaze_spawn_egg" + }, + { + "id": "minecraft:shulker_spawn_egg" + }, + { + "id": "minecraft:vindicator_spawn_egg" + }, + { + "id": "minecraft:evoker_spawn_egg" + }, + { + "id": "minecraft:vex_spawn_egg" + }, + { + "id": "minecraft:villager_spawn_egg" + }, + { + "id": "minecraft:wandering_trader_spawn_egg" + }, + { + "id": "minecraft:zombie_villager_spawn_egg" + }, + { + "id": "minecraft:phantom_spawn_egg" + }, + { + "id": "minecraft:pillager_spawn_egg" + }, + { + "id": "minecraft:ravager_spawn_egg" + }, + { + "id": "minecraft:iron_golem_spawn_egg" + }, + { + "id": "minecraft:snow_golem_spawn_egg" + }, + { + "id": "minecraft:sniffer_spawn_egg" + }, + { + "id": "minecraft:breeze_spawn_egg" + }, + { + "id": "minecraft:armadillo_spawn_egg" + }, + { + "id": "minecraft:bogged_spawn_egg" + }, + { + "id": "minecraft:obsidian", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQxAAAACAQAbmFtZRIAbWluZWNyYWZ0Om9ic2lkaWFuBAkAbmFtZV9oYXNoiz4qrb8QjyEDCgBuZXR3b3JrX2lkuqnPpQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:crying_obsidian", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQgAgAACAQAbmFtZRkAbWluZWNyYWZ0OmNyeWluZ19vYnNpZGlhbgQJAG5hbWVfaGFzaKT0JlA7Z1K+AwoAbmV0d29ya19pZCjbPV4KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:bedrock", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQHAAAACAQAbmFtZREAbWluZWNyYWZ0OmJlZHJvY2sECQBuYW1lX2hhc2hWfFrh4LVtxwMKAG5ldHdvcmtfaWT7fKz1CgYAc3RhdGVzAQ4AaW5maW5pYnVybl9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:soul_sand", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRYAAAACAQAbmFtZRMAbWluZWNyYWZ0OnNvdWxfc2FuZAQJAG5hbWVfaGFzaMaf+bccu+KTAwoAbmV0d29ya19pZBQSHrMKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:magma", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTVAAAACAQAbmFtZQ8AbWluZWNyYWZ0Om1hZ21hBAkAbmFtZV9oYXNoqyTjKaIsWfYDCgBuZXR3b3JrX2lkyfWAZgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:nether_wart" + }, + { + "id": "minecraft:end_stone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR5AAAACAQAbmFtZRMAbWluZWNyYWZ0OmVuZF9zdG9uZQQJAG5hbWVfaGFzaH1J9jA39GJNAwoAbmV0d29ya19pZFeFQ7UKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:chorus_flower", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTIAAAACAQAbmFtZRcAbWluZWNyYWZ0OmNob3J1c19mbG93ZXIECQBuYW1lX2hhc2iMpSodli5uawMKAG5ldHdvcmtfaWRnd1ZWCgYAc3RhdGVzAwMAYWdlAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:chorus_plant", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTwAAAACAQAbmFtZRYAbWluZWNyYWZ0OmNob3J1c19wbGFudAQJAG5hbWVfaGFzaJhSrmNGKwaMAwoAbmV0d29ya19pZA3uVqMKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:chorus_fruit" + }, + { + "id": "minecraft:popped_chorus_fruit" + }, + { + "id": "minecraft:sponge", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQTAAAACAQAbmFtZRAAbWluZWNyYWZ0OnNwb25nZQQJAG5hbWVfaGFzaLrd2ScYRDMiAwoAbmV0d29ya19pZF01rO0KBgBzdGF0ZXMICwBzcG9uZ2VfdHlwZQMAZHJ5AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:sponge", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQTAAAACAQAbmFtZRAAbWluZWNyYWZ0OnNwb25nZQQJAG5hbWVfaGFzaLrd2ScYRDMiAwoAbmV0d29ya19pZPiOc4QKBgBzdGF0ZXMICwBzcG9uZ2VfdHlwZQMAd2V0AAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:tube_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSDAQAACAQAbmFtZRoAbWluZWNyYWZ0OnR1YmVfY29yYWxfYmxvY2sECQBuYW1lX2hhc2iGkaiR7Eot4wMKAG5ldHdvcmtfaWQPNJ6sCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:brain_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRQBAAACAQAbmFtZRsAbWluZWNyYWZ0OmJyYWluX2NvcmFsX2Jsb2NrBAkAbmFtZV9oYXNoeDNAK18yUo4DCgBuZXR3b3JrX2lkloN1vgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:bubble_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRRBAAACAQAbmFtZRwAbWluZWNyYWZ0OmJ1YmJsZV9jb3JhbF9ibG9jawQJAG5hbWVfaGFzaAI2mwMlvcNbAwoAbmV0d29ya19pZBlkxKIKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:fire_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRSBAAACAQAbmFtZRoAbWluZWNyYWZ0OmZpcmVfY29yYWxfYmxvY2sECQBuYW1lX2hhc2gg1gLeXLmKaAMKAG5ldHdvcmtfaWSp3W57CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:horn_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRTBAAACAQAbmFtZRoAbWluZWNyYWZ0Omhvcm5fY29yYWxfYmxvY2sECQBuYW1lX2hhc2hnZSLRWUwGhAMKAG5ldHdvcmtfaWRSK6ccCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dead_tube_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRUBAAACAQAbmFtZR8AbWluZWNyYWZ0OmRlYWRfdHViZV9jb3JhbF9ibG9jawQJAG5hbWVfaGFzaB9+lY3hAkNNAwoAbmV0d29ya19pZF0hKKYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dead_brain_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRVBAAACAQAbmFtZSAAbWluZWNyYWZ0OmRlYWRfYnJhaW5fY29yYWxfYmxvY2sECQBuYW1lX2hhc2iHyDn52AO8uwMKAG5ldHdvcmtfaWQw7yCaCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dead_bubble_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRWBAAACAQAbmFtZSEAbWluZWNyYWZ0OmRlYWRfYnViYmxlX2NvcmFsX2Jsb2NrBAkAbmFtZV9oYXNotwkk/ITrsjADCgBuZXR3b3JrX2lk56mXUgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:dead_fire_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRXBAAACAQAbmFtZR8AbWluZWNyYWZ0OmRlYWRfZmlyZV9jb3JhbF9ibG9jawQJAG5hbWVfaGFzaG0qHxbIrBEyAwoAbmV0d29ya19pZFvnH88KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:dead_horn_coral_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRYBAAACAQAbmFtZR8AbWluZWNyYWZ0OmRlYWRfaG9ybl9jb3JhbF9ibG9jawQJAG5hbWVfaGFzaL7D8bu4Fm+0AwoAbmV0d29ya19pZEALRLoKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sculk", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTJAgAACAQAbmFtZQ8AbWluZWNyYWZ0OnNjdWxrBAkAbmFtZV9oYXNo2Lq7T5yQF8kDCgBuZXR3b3JrX2lkyqUPPgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:sculk_vein", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTKAgAACAQAbmFtZRQAbWluZWNyYWZ0OnNjdWxrX3ZlaW4ECQBuYW1lX2hhc2gJUdhVooV4zwMKAG5ldHdvcmtfaWSUfn1XCgYAc3RhdGVzAxkAbXVsdGlfZmFjZV9kaXJlY3Rpb25fYml0cwAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:sculk_catalyst", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTLAgAACAQAbmFtZRgAbWluZWNyYWZ0OnNjdWxrX2NhdGFseXN0BAkAbmFtZV9oYXNo+gCpbrCHST4DCgBuZXR3b3JrX2lkMJ2n/woGAHN0YXRlcwEFAGJsb29tAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:sculk_shrieker", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTMAgAACAQAbmFtZRgAbWluZWNyYWZ0OnNjdWxrX3Nocmlla2VyBAkAbmFtZV9oYXNo5OXtyObniQ4DCgBuZXR3b3JrX2lkxapoNAoGAHN0YXRlcwEGAGFjdGl2ZQABCgBjYW5fc3VtbW9uAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:sculk_sensor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQyAgAACAQAbmFtZRYAbWluZWNyYWZ0OnNjdWxrX3NlbnNvcgQJAG5hbWVfaGFzaCkmHreeTgNnAwoAbmV0d29ya19pZLj2WPcKBgBzdGF0ZXMDEgBzY3Vsa19zZW5zb3JfcGhhc2UAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:calibrated_sculk_sensor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRDAwAACAQAbmFtZSEAbWluZWNyYWZ0OmNhbGlicmF0ZWRfc2N1bGtfc2Vuc29yBAkAbmFtZV9oYXNoffAcXXN/iJUDCgBuZXR3b3JrX2lkwOx3QQoGAHN0YXRlcwgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAHNvdXRoAxIAc2N1bGtfc2Vuc29yX3BoYXNlAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:reinforced_deepslate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTRAgAACAQAbmFtZR4AbWluZWNyYWZ0OnJlaW5mb3JjZWRfZGVlcHNsYXRlBAkAbmFtZV9oYXNoldDmj91EapQDCgBuZXR3b3JrX2lkHIt+aQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:leather_helmet" + }, + { + "id": "minecraft:chainmail_helmet" + }, + { + "id": "minecraft:iron_helmet" + }, + { + "id": "minecraft:golden_helmet" + }, + { + "id": "minecraft:diamond_helmet" + }, + { + "id": "minecraft:netherite_helmet" + }, + { + "id": "minecraft:leather_chestplate" + }, + { + "id": "minecraft:chainmail_chestplate" + }, + { + "id": "minecraft:iron_chestplate" + }, + { + "id": "minecraft:golden_chestplate" + }, + { + "id": "minecraft:diamond_chestplate" + }, + { + "id": "minecraft:netherite_chestplate" + }, + { + "id": "minecraft:leather_leggings" + }, + { + "id": "minecraft:chainmail_leggings" + }, + { + "id": "minecraft:iron_leggings" + }, + { + "id": "minecraft:golden_leggings" + }, + { + "id": "minecraft:diamond_leggings" + }, + { + "id": "minecraft:netherite_leggings" + }, + { + "id": "minecraft:leather_boots" + }, + { + "id": "minecraft:chainmail_boots" + }, + { + "id": "minecraft:iron_boots" + }, + { + "id": "minecraft:golden_boots" + }, + { + "id": "minecraft:diamond_boots" + }, + { + "id": "minecraft:netherite_boots" + }, + { + "id": "minecraft:wooden_sword" + }, + { + "id": "minecraft:stone_sword" + }, + { + "id": "minecraft:iron_sword" + }, + { + "id": "minecraft:golden_sword" + }, + { + "id": "minecraft:diamond_sword" + }, + { + "id": "minecraft:netherite_sword" + }, + { + "id": "minecraft:wooden_axe" + }, + { + "id": "minecraft:stone_axe" + }, + { + "id": "minecraft:iron_axe" + }, + { + "id": "minecraft:golden_axe" + }, + { + "id": "minecraft:diamond_axe" + }, + { + "id": "minecraft:netherite_axe" + }, + { + "id": "minecraft:wooden_pickaxe" + }, + { + "id": "minecraft:stone_pickaxe" + }, + { + "id": "minecraft:iron_pickaxe" + }, + { + "id": "minecraft:golden_pickaxe" + }, + { + "id": "minecraft:diamond_pickaxe" + }, + { + "id": "minecraft:netherite_pickaxe" + }, + { + "id": "minecraft:wooden_shovel" + }, + { + "id": "minecraft:stone_shovel" + }, + { + "id": "minecraft:iron_shovel" + }, + { + "id": "minecraft:golden_shovel" + }, + { + "id": "minecraft:diamond_shovel" + }, + { + "id": "minecraft:netherite_shovel" + }, + { + "id": "minecraft:wooden_hoe" + }, + { + "id": "minecraft:stone_hoe" + }, + { + "id": "minecraft:iron_hoe" + }, + { + "id": "minecraft:golden_hoe" + }, + { + "id": "minecraft:diamond_hoe" + }, + { + "id": "minecraft:netherite_hoe" + }, + { + "id": "minecraft:bow" + }, + { + "id": "minecraft:crossbow" + }, + { + "id": "minecraft:mace" + }, + { + "id": "minecraft:arrow" + }, + { + "id": "minecraft:arrow", + "damage": 6 + }, + { + "id": "minecraft:arrow", + "damage": 7 + }, + { + "id": "minecraft:arrow", + "damage": 8 + }, + { + "id": "minecraft:arrow", + "damage": 9 + }, + { + "id": "minecraft:arrow", + "damage": 10 + }, + { + "id": "minecraft:arrow", + "damage": 11 + }, + { + "id": "minecraft:arrow", + "damage": 12 + }, + { + "id": "minecraft:arrow", + "damage": 13 + }, + { + "id": "minecraft:arrow", + "damage": 14 + }, + { + "id": "minecraft:arrow", + "damage": 15 + }, + { + "id": "minecraft:arrow", + "damage": 16 + }, + { + "id": "minecraft:arrow", + "damage": 17 + }, + { + "id": "minecraft:arrow", + "damage": 18 + }, + { + "id": "minecraft:arrow", + "damage": 19 + }, + { + "id": "minecraft:arrow", + "damage": 20 + }, + { + "id": "minecraft:arrow", + "damage": 21 + }, + { + "id": "minecraft:arrow", + "damage": 22 + }, + { + "id": "minecraft:arrow", + "damage": 23 + }, + { + "id": "minecraft:arrow", + "damage": 24 + }, + { + "id": "minecraft:arrow", + "damage": 25 + }, + { + "id": "minecraft:arrow", + "damage": 26 + }, + { + "id": "minecraft:arrow", + "damage": 27 + }, + { + "id": "minecraft:arrow", + "damage": 28 + }, + { + "id": "minecraft:arrow", + "damage": 29 + }, + { + "id": "minecraft:arrow", + "damage": 30 + }, + { + "id": "minecraft:arrow", + "damage": 31 + }, + { + "id": "minecraft:arrow", + "damage": 32 + }, + { + "id": "minecraft:arrow", + "damage": 33 + }, + { + "id": "minecraft:arrow", + "damage": 34 + }, + { + "id": "minecraft:arrow", + "damage": 35 + }, + { + "id": "minecraft:arrow", + "damage": 36 + }, + { + "id": "minecraft:arrow", + "damage": 37 + }, + { + "id": "minecraft:arrow", + "damage": 38 + }, + { + "id": "minecraft:arrow", + "damage": 39 + }, + { + "id": "minecraft:arrow", + "damage": 40 + }, + { + "id": "minecraft:arrow", + "damage": 41 + }, + { + "id": "minecraft:arrow", + "damage": 42 + }, + { + "id": "minecraft:arrow", + "damage": 43 + }, + { + "id": "minecraft:arrow", + "damage": 44 + }, + { + "id": "minecraft:arrow", + "damage": 45 + }, + { + "id": "minecraft:arrow", + "damage": 46 + }, + { + "id": "minecraft:arrow", + "damage": 47 + }, + { + "id": "minecraft:ominous_bottle" + }, + { + "id": "minecraft:ominous_bottle", + "damage": 1 + }, + { + "id": "minecraft:ominous_bottle", + "damage": 2 + }, + { + "id": "minecraft:ominous_bottle", + "damage": 3 + }, + { + "id": "minecraft:ominous_bottle", + "damage": 4 + }, + { + "id": "minecraft:shield" + }, + { + "id": "minecraft:cooked_chicken" + }, + { + "id": "minecraft:cooked_porkchop" + }, + { + "id": "minecraft:cooked_beef" + }, + { + "id": "minecraft:cooked_mutton" + }, + { + "id": "minecraft:cooked_rabbit" + }, + { + "id": "minecraft:cooked_cod" + }, + { + "id": "minecraft:cooked_salmon" + }, + { + "id": "minecraft:bread" + }, + { + "id": "minecraft:mushroom_stew" + }, + { + "id": "minecraft:beetroot_soup" + }, + { + "id": "minecraft:rabbit_stew" + }, + { + "id": "minecraft:baked_potato" + }, + { + "id": "minecraft:cookie" + }, + { + "id": "minecraft:pumpkin_pie" + }, + { + "id": "minecraft:cake" + }, + { + "id": "minecraft:dried_kelp" + }, + { + "id": "minecraft:fishing_rod" + }, + { + "id": "minecraft:carrot_on_a_stick" + }, + { + "id": "minecraft:warped_fungus_on_a_stick" + }, + { + "id": "minecraft:snowball" + }, + { + "id": "minecraft:wind_charge" + }, + { + "id": "minecraft:shears" + }, + { + "id": "minecraft:flint_and_steel" + }, + { + "id": "minecraft:lead" + }, + { + "id": "minecraft:clock" + }, + { + "id": "minecraft:compass" + }, + { + "id": "minecraft:recovery_compass" + }, + { + "id": "minecraft:goat_horn" + }, + { + "id": "minecraft:goat_horn", + "damage": 1 + }, + { + "id": "minecraft:goat_horn", + "damage": 2 + }, + { + "id": "minecraft:goat_horn", + "damage": 3 + }, + { + "id": "minecraft:goat_horn", + "damage": 4 + }, + { + "id": "minecraft:goat_horn", + "damage": 5 + }, + { + "id": "minecraft:goat_horn", + "damage": 6 + }, + { + "id": "minecraft:goat_horn", + "damage": 7 + }, + { + "id": "minecraft:empty_map" + }, + { + "id": "minecraft:empty_map", + "damage": 2 + }, + { + "id": "minecraft:saddle" + }, + { + "id": "minecraft:leather_horse_armor" + }, + { + "id": "minecraft:iron_horse_armor" + }, + { + "id": "minecraft:golden_horse_armor" + }, + { + "id": "minecraft:diamond_horse_armor" + }, + { + "id": "minecraft:wolf_armor" + }, + { + "id": "minecraft:trident" + }, + { + "id": "minecraft:turtle_helmet" + }, + { + "id": "minecraft:elytra" + }, + { + "id": "minecraft:totem_of_undying" + }, + { + "id": "minecraft:glass_bottle" + }, + { + "id": "minecraft:experience_bottle" + }, + { + "id": "minecraft:potion" + }, + { + "id": "minecraft:potion", + "damage": 1 + }, + { + "id": "minecraft:potion", + "damage": 2 + }, + { + "id": "minecraft:potion", + "damage": 3 + }, + { + "id": "minecraft:potion", + "damage": 4 + }, + { + "id": "minecraft:potion", + "damage": 5 + }, + { + "id": "minecraft:potion", + "damage": 6 + }, + { + "id": "minecraft:potion", + "damage": 7 + }, + { + "id": "minecraft:potion", + "damage": 8 + }, + { + "id": "minecraft:potion", + "damage": 9 + }, + { + "id": "minecraft:potion", + "damage": 10 + }, + { + "id": "minecraft:potion", + "damage": 11 + }, + { + "id": "minecraft:potion", + "damage": 12 + }, + { + "id": "minecraft:potion", + "damage": 13 + }, + { + "id": "minecraft:potion", + "damage": 14 + }, + { + "id": "minecraft:potion", + "damage": 15 + }, + { + "id": "minecraft:potion", + "damage": 16 + }, + { + "id": "minecraft:potion", + "damage": 17 + }, + { + "id": "minecraft:potion", + "damage": 18 + }, + { + "id": "minecraft:potion", + "damage": 19 + }, + { + "id": "minecraft:potion", + "damage": 20 + }, + { + "id": "minecraft:potion", + "damage": 21 + }, + { + "id": "minecraft:potion", + "damage": 22 + }, + { + "id": "minecraft:potion", + "damage": 23 + }, + { + "id": "minecraft:potion", + "damage": 24 + }, + { + "id": "minecraft:potion", + "damage": 25 + }, + { + "id": "minecraft:potion", + "damage": 26 + }, + { + "id": "minecraft:potion", + "damage": 27 + }, + { + "id": "minecraft:potion", + "damage": 28 + }, + { + "id": "minecraft:potion", + "damage": 29 + }, + { + "id": "minecraft:potion", + "damage": 30 + }, + { + "id": "minecraft:potion", + "damage": 31 + }, + { + "id": "minecraft:potion", + "damage": 32 + }, + { + "id": "minecraft:potion", + "damage": 33 + }, + { + "id": "minecraft:potion", + "damage": 34 + }, + { + "id": "minecraft:potion", + "damage": 35 + }, + { + "id": "minecraft:potion", + "damage": 36 + }, + { + "id": "minecraft:potion", + "damage": 37 + }, + { + "id": "minecraft:potion", + "damage": 38 + }, + { + "id": "minecraft:potion", + "damage": 39 + }, + { + "id": "minecraft:potion", + "damage": 40 + }, + { + "id": "minecraft:potion", + "damage": 41 + }, + { + "id": "minecraft:potion", + "damage": 42 + }, + { + "id": "minecraft:potion", + "damage": 43 + }, + { + "id": "minecraft:potion", + "damage": 44 + }, + { + "id": "minecraft:potion", + "damage": 45 + }, + { + "id": "minecraft:potion", + "damage": 46 + }, + { + "id": "minecraft:splash_potion" + }, + { + "id": "minecraft:splash_potion", + "damage": 1 + }, + { + "id": "minecraft:splash_potion", + "damage": 2 + }, + { + "id": "minecraft:splash_potion", + "damage": 3 + }, + { + "id": "minecraft:splash_potion", + "damage": 4 + }, + { + "id": "minecraft:splash_potion", + "damage": 5 + }, + { + "id": "minecraft:splash_potion", + "damage": 6 + }, + { + "id": "minecraft:splash_potion", + "damage": 7 + }, + { + "id": "minecraft:splash_potion", + "damage": 8 + }, + { + "id": "minecraft:splash_potion", + "damage": 9 + }, + { + "id": "minecraft:splash_potion", + "damage": 10 + }, + { + "id": "minecraft:splash_potion", + "damage": 11 + }, + { + "id": "minecraft:splash_potion", + "damage": 12 + }, + { + "id": "minecraft:splash_potion", + "damage": 13 + }, + { + "id": "minecraft:splash_potion", + "damage": 14 + }, + { + "id": "minecraft:splash_potion", + "damage": 15 + }, + { + "id": "minecraft:splash_potion", + "damage": 16 + }, + { + "id": "minecraft:splash_potion", + "damage": 17 + }, + { + "id": "minecraft:splash_potion", + "damage": 18 + }, + { + "id": "minecraft:splash_potion", + "damage": 19 + }, + { + "id": "minecraft:splash_potion", + "damage": 20 + }, + { + "id": "minecraft:splash_potion", + "damage": 21 + }, + { + "id": "minecraft:splash_potion", + "damage": 22 + }, + { + "id": "minecraft:splash_potion", + "damage": 23 + }, + { + "id": "minecraft:splash_potion", + "damage": 24 + }, + { + "id": "minecraft:splash_potion", + "damage": 25 + }, + { + "id": "minecraft:splash_potion", + "damage": 26 + }, + { + "id": "minecraft:splash_potion", + "damage": 27 + }, + { + "id": "minecraft:splash_potion", + "damage": 28 + }, + { + "id": "minecraft:splash_potion", + "damage": 29 + }, + { + "id": "minecraft:splash_potion", + "damage": 30 + }, + { + "id": "minecraft:splash_potion", + "damage": 31 + }, + { + "id": "minecraft:splash_potion", + "damage": 32 + }, + { + "id": "minecraft:splash_potion", + "damage": 33 + }, + { + "id": "minecraft:splash_potion", + "damage": 34 + }, + { + "id": "minecraft:splash_potion", + "damage": 35 + }, + { + "id": "minecraft:splash_potion", + "damage": 36 + }, + { + "id": "minecraft:splash_potion", + "damage": 37 + }, + { + "id": "minecraft:splash_potion", + "damage": 38 + }, + { + "id": "minecraft:splash_potion", + "damage": 39 + }, + { + "id": "minecraft:splash_potion", + "damage": 40 + }, + { + "id": "minecraft:splash_potion", + "damage": 41 + }, + { + "id": "minecraft:splash_potion", + "damage": 42 + }, + { + "id": "minecraft:splash_potion", + "damage": 43 + }, + { + "id": "minecraft:splash_potion", + "damage": 44 + }, + { + "id": "minecraft:splash_potion", + "damage": 45 + }, + { + "id": "minecraft:splash_potion", + "damage": 46 + }, + { + "id": "minecraft:lingering_potion" + }, + { + "id": "minecraft:lingering_potion", + "damage": 1 + }, + { + "id": "minecraft:lingering_potion", + "damage": 2 + }, + { + "id": "minecraft:lingering_potion", + "damage": 3 + }, + { + "id": "minecraft:lingering_potion", + "damage": 4 + }, + { + "id": "minecraft:lingering_potion", + "damage": 5 + }, + { + "id": "minecraft:lingering_potion", + "damage": 6 + }, + { + "id": "minecraft:lingering_potion", + "damage": 7 + }, + { + "id": "minecraft:lingering_potion", + "damage": 8 + }, + { + "id": "minecraft:lingering_potion", + "damage": 9 + }, + { + "id": "minecraft:lingering_potion", + "damage": 10 + }, + { + "id": "minecraft:lingering_potion", + "damage": 11 + }, + { + "id": "minecraft:lingering_potion", + "damage": 12 + }, + { + "id": "minecraft:lingering_potion", + "damage": 13 + }, + { + "id": "minecraft:lingering_potion", + "damage": 14 + }, + { + "id": "minecraft:lingering_potion", + "damage": 15 + }, + { + "id": "minecraft:lingering_potion", + "damage": 16 + }, + { + "id": "minecraft:lingering_potion", + "damage": 17 + }, + { + "id": "minecraft:lingering_potion", + "damage": 18 + }, + { + "id": "minecraft:lingering_potion", + "damage": 19 + }, + { + "id": "minecraft:lingering_potion", + "damage": 20 + }, + { + "id": "minecraft:lingering_potion", + "damage": 21 + }, + { + "id": "minecraft:lingering_potion", + "damage": 22 + }, + { + "id": "minecraft:lingering_potion", + "damage": 23 + }, + { + "id": "minecraft:lingering_potion", + "damage": 24 + }, + { + "id": "minecraft:lingering_potion", + "damage": 25 + }, + { + "id": "minecraft:lingering_potion", + "damage": 26 + }, + { + "id": "minecraft:lingering_potion", + "damage": 27 + }, + { + "id": "minecraft:lingering_potion", + "damage": 28 + }, + { + "id": "minecraft:lingering_potion", + "damage": 29 + }, + { + "id": "minecraft:lingering_potion", + "damage": 30 + }, + { + "id": "minecraft:lingering_potion", + "damage": 31 + }, + { + "id": "minecraft:lingering_potion", + "damage": 32 + }, + { + "id": "minecraft:lingering_potion", + "damage": 33 + }, + { + "id": "minecraft:lingering_potion", + "damage": 34 + }, + { + "id": "minecraft:lingering_potion", + "damage": 35 + }, + { + "id": "minecraft:lingering_potion", + "damage": 36 + }, + { + "id": "minecraft:lingering_potion", + "damage": 37 + }, + { + "id": "minecraft:lingering_potion", + "damage": 38 + }, + { + "id": "minecraft:lingering_potion", + "damage": 39 + }, + { + "id": "minecraft:lingering_potion", + "damage": 40 + }, + { + "id": "minecraft:lingering_potion", + "damage": 41 + }, + { + "id": "minecraft:lingering_potion", + "damage": 42 + }, + { + "id": "minecraft:lingering_potion", + "damage": 43 + }, + { + "id": "minecraft:lingering_potion", + "damage": 44 + }, + { + "id": "minecraft:lingering_potion", + "damage": 45 + }, + { + "id": "minecraft:lingering_potion", + "damage": 46 + }, + { + "id": "minecraft:spyglass" + }, + { + "id": "minecraft:brush" + }, + { + "id": "minecraft:stick" + }, + { + "id": "minecraft:bed" + }, + { + "id": "minecraft:bed", + "damage": 8 + }, + { + "id": "minecraft:bed", + "damage": 7 + }, + { + "id": "minecraft:bed", + "damage": 15 + }, + { + "id": "minecraft:bed", + "damage": 12 + }, + { + "id": "minecraft:bed", + "damage": 14 + }, + { + "id": "minecraft:bed", + "damage": 1 + }, + { + "id": "minecraft:bed", + "damage": 4 + }, + { + "id": "minecraft:bed", + "damage": 5 + }, + { + "id": "minecraft:bed", + "damage": 13 + }, + { + "id": "minecraft:bed", + "damage": 9 + }, + { + "id": "minecraft:bed", + "damage": 3 + }, + { + "id": "minecraft:bed", + "damage": 11 + }, + { + "id": "minecraft:bed", + "damage": 10 + }, + { + "id": "minecraft:bed", + "damage": 2 + }, + { + "id": "minecraft:bed", + "damage": 6 + }, + { + "id": "minecraft:torch", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQyAAAACAQAbmFtZQ8AbWluZWNyYWZ0OnRvcmNoBAkAbmFtZV9oYXNoagn7rmDBzisDCgBuZXR3b3JrX2lk+BwwuQoGAHN0YXRlcwgWAHRvcmNoX2ZhY2luZ19kaXJlY3Rpb24HAHVua25vd24AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:soul_torch", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQLAgAACAQAbmFtZRQAbWluZWNyYWZ0OnNvdWxfdG9yY2gECQBuYW1lX2hhc2huixOT04BRdQMKAG5ldHdvcmtfaWShbFILCgYAc3RhdGVzCBYAdG9yY2hfZmFjaW5nX2RpcmVjdGlvbgcAdW5rbm93bgADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:sea_pickle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSbAQAACAQAbmFtZRQAbWluZWNyYWZ0OnNlYV9waWNrbGUECQBuYW1lX2hhc2iONEfZJB+glgMKAG5ldHdvcmtfaWSINWQyCgYAc3RhdGVzAw0AY2x1c3Rlcl9jb3VudAAAAAABCABkZWFkX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:lantern", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTPAQAACAQAbmFtZREAbWluZWNyYWZ0OmxhbnRlcm4ECQBuYW1lX2hhc2hMw44VI2HWygMKAG5ldHdvcmtfaWRkjQvzCgYAc3RhdGVzAQcAaGFuZ2luZwAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:soul_lantern", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQMAgAACAQAbmFtZRYAbWluZWNyYWZ0OnNvdWxfbGFudGVybgQJAG5hbWVfaGFzaGjIpjxk9z+RAwoAbmV0d29ya19pZGfoP8cKBgBzdGF0ZXMBBwBoYW5naW5nAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSbAgAACAQAbmFtZRAAbWluZWNyYWZ0OmNhbmRsZQQJAG5hbWVfaGFzaHPd+MsNdWTfAwoAbmV0d29ya19pZHsBMA0KBgBzdGF0ZXMDBwBjYW5kbGVzAAAAAAEDAGxpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:white_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWScAgAACAQAbmFtZRYAbWluZWNyYWZ0OndoaXRlX2NhbmRsZQQJAG5hbWVfaGFzaN1EG5Q1mHiEAwoAbmV0d29ya19pZKN1mmgKBgBzdGF0ZXMDBwBjYW5kbGVzAAAAAAEDAGxpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:orange_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSdAgAACAQAbmFtZRcAbWluZWNyYWZ0Om9yYW5nZV9jYW5kbGUECQBuYW1lX2hhc2jySEVWHgUIHQMKAG5ldHdvcmtfaWSfVz82CgYAc3RhdGVzAwcAY2FuZGxlcwAAAAABAwBsaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:magenta_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSeAgAACAQAbmFtZRgAbWluZWNyYWZ0Om1hZ2VudGFfY2FuZGxlBAkAbmFtZV9oYXNoG0u6YIOoBSEDCgBuZXR3b3JrX2lk9xGNkQoGAHN0YXRlcwMHAGNhbmRsZXMAAAAAAQMAbGl0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:light_blue_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSfAgAACAQAbmFtZRsAbWluZWNyYWZ0OmxpZ2h0X2JsdWVfY2FuZGxlBAkAbmFtZV9oYXNocXGeK0zgrG0DCgBuZXR3b3JrX2lk2m1y8goGAHN0YXRlcwMHAGNhbmRsZXMAAAAAAQMAbGl0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:yellow_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSgAgAACAQAbmFtZRcAbWluZWNyYWZ0OnllbGxvd19jYW5kbGUECQBuYW1lX2hhc2i00dtusU3CqQMKAG5ldHdvcmtfaWR9LTmpCgYAc3RhdGVzAwcAY2FuZGxlcwAAAAABAwBsaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:lime_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWShAgAACAQAbmFtZRUAbWluZWNyYWZ0OmxpbWVfY2FuZGxlBAkAbmFtZV9oYXNokcmrw5xvz7ADCgBuZXR3b3JrX2lkIAUu6QoGAHN0YXRlcwMHAGNhbmRsZXMAAAAAAQMAbGl0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:pink_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSiAgAACAQAbmFtZRUAbWluZWNyYWZ0OnBpbmtfY2FuZGxlBAkAbmFtZV9oYXNoQJdEY4sZ0dwDCgBuZXR3b3JrX2lk23Rn5AoGAHN0YXRlcwMHAGNhbmRsZXMAAAAAAQMAbGl0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:gray_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSjAgAACAQAbmFtZRUAbWluZWNyYWZ0OmdyYXlfY2FuZGxlBAkAbmFtZV9oYXNoS5poSo9wBDEDCgBuZXR3b3JrX2lk3trRCAoGAHN0YXRlcwMHAGNhbmRsZXMAAAAAAQMAbGl0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:light_gray_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSkAgAACAQAbmFtZRsAbWluZWNyYWZ0OmxpZ2h0X2dyYXlfY2FuZGxlBAkAbmFtZV9oYXNo9ruTZLBNMasDCgBuZXR3b3JrX2lkb6DOegoGAHN0YXRlcwMHAGNhbmRsZXMAAAAAAQMAbGl0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cyan_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSlAgAACAQAbmFtZRUAbWluZWNyYWZ0OmN5YW5fY2FuZGxlBAkAbmFtZV9oYXNoc/M8PNVcjOwDCgBuZXR3b3JrX2lkZoIQOQoGAHN0YXRlcwMHAGNhbmRsZXMAAAAAAQMAbGl0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:purple_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSmAgAACAQAbmFtZRcAbWluZWNyYWZ0OnB1cnBsZV9jYW5kbGUECQBuYW1lX2hhc2jaI3xUW0/myQMKAG5ldHdvcmtfaWSnLI2BCgYAc3RhdGVzAwcAY2FuZGxlcwAAAAABAwBsaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:blue_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSnAgAACAQAbmFtZRUAbWluZWNyYWZ0OmJsdWVfY2FuZGxlBAkAbmFtZV9oYXNoAASSPW6TgQADCgBuZXR3b3JrX2lkrxrjQAoGAHN0YXRlcwMHAGNhbmRsZXMAAAAAAQMAbGl0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:brown_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSoAgAACAQAbmFtZRYAbWluZWNyYWZ0OmJyb3duX2NhbmRsZQQJAG5hbWVfaGFzaDia0l6s1+WYAwoAbmV0d29ya19pZKSkBXYKBgBzdGF0ZXMDBwBjYW5kbGVzAAAAAAEDAGxpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:green_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSpAgAACAQAbmFtZRYAbWluZWNyYWZ0OmdyZWVuX2NhbmRsZQQJAG5hbWVfaGFzaLeFPO1l+fIoAwoAbmV0d29ya19pZBkznDsKBgBzdGF0ZXMDBwBjYW5kbGVzAAAAAAEDAGxpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:red_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSqAgAACAQAbmFtZRQAbWluZWNyYWZ0OnJlZF9jYW5kbGUECQBuYW1lX2hhc2jjAQpGf59ZdwMKAG5ldHdvcmtfaWRbb88GCgYAc3RhdGVzAwcAY2FuZGxlcwAAAAABAwBsaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:black_candle", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSrAgAACAQAbmFtZRYAbWluZWNyYWZ0OmJsYWNrX2NhbmRsZQQJAG5hbWVfaGFzaB+wRDpOqREKAwoAbmV0d29ya19pZNnOnuEKBgBzdGF0ZXMDBwBjYW5kbGVzAAAAAAEDAGxpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crafting_table", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ6AAAACAQAbmFtZRgAbWluZWNyYWZ0OmNyYWZ0aW5nX3RhYmxlBAkAbmFtZV9oYXNoe76VAmjvbpYDCgBuZXR3b3JrX2lkwCxwaAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cartography_table", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTHAQAACAQAbmFtZRsAbWluZWNyYWZ0OmNhcnRvZ3JhcGh5X3RhYmxlBAkAbmFtZV9oYXNomaWiiD/znP8DCgBuZXR3b3JrX2lkI6FzMwoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:fletching_table", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTIAQAACAQAbmFtZRkAbWluZWNyYWZ0OmZsZXRjaGluZ190YWJsZQQJAG5hbWVfaGFzaPFibh8unKyUAwoAbmV0d29ya19pZJ2mW0oKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:smithing_table", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTJAQAACAQAbmFtZRgAbWluZWNyYWZ0OnNtaXRoaW5nX3RhYmxlBAkAbmFtZV9oYXNo4tFES2xOXEYDCgBuZXR3b3JrX2lkXWMBzQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:beehive", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTaAQAACAQAbmFtZREAbWluZWNyYWZ0OmJlZWhpdmUECQBuYW1lX2hhc2hCcqn12UbNpwMKAG5ldHdvcmtfaWR/idcaCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAMLAGhvbmV5X2xldmVsAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:suspicious_sand", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQQAwAACAQAbmFtZRkAbWluZWNyYWZ0OnN1c3BpY2lvdXNfc2FuZAQJAG5hbWVfaGFzaL67QsuvLP00AwoAbmV0d29ya19pZKnkaIAKBgBzdGF0ZXMDEABicnVzaGVkX3Byb2dyZXNzAAAAAAEHAGhhbmdpbmcBAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:suspicious_gravel", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ8AwAACAQAbmFtZRsAbWluZWNyYWZ0OnN1c3BpY2lvdXNfZ3JhdmVsBAkAbmFtZV9oYXNoJSVbGNk7C3oDCgBuZXR3b3JrX2lkvIEJAAoGAHN0YXRlcwMQAGJydXNoZWRfcHJvZ3Jlc3MAAAAAAQcAaGFuZ2luZwEAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:campfire" + }, + { + "id": "minecraft:soul_campfire" + }, + { + "id": "minecraft:furnace", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ9AAAACAQAbmFtZREAbWluZWNyYWZ0OmZ1cm5hY2UECQBuYW1lX2hhc2ioOQrludYY8wMKAG5ldHdvcmtfaWRZxnDOCgYAc3RhdGVzCBwAbWluZWNyYWZ0OmNhcmRpbmFsX2RpcmVjdGlvbgUAc291dGgAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:blast_furnace", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTDAQAACAQAbmFtZRcAbWluZWNyYWZ0OmJsYXN0X2Z1cm5hY2UECQBuYW1lX2hhc2ivDbnjkpGm5QMKAG5ldHdvcmtfaWTcEbV/CgYAc3RhdGVzCBwAbWluZWNyYWZ0OmNhcmRpbmFsX2RpcmVjdGlvbgUAc291dGgAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:smoker", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTFAQAACAQAbmFtZRAAbWluZWNyYWZ0OnNtb2tlcgQJAG5hbWVfaGFzaJd1rDMkRWomAwoAbmV0d29ya19pZGWswMwKBgBzdGF0ZXMIHABtaW5lY3JhZnQ6Y2FyZGluYWxfZGlyZWN0aW9uBQBzb3V0aAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:respawn_anchor", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQPAgAACAQAbmFtZRgAbWluZWNyYWZ0OnJlc3Bhd25fYW5jaG9yBAkAbmFtZV9oYXNoZOdcjW05qigDCgBuZXR3b3JrX2lkmhMcaQoGAHN0YXRlcwMVAHJlc3Bhd25fYW5jaG9yX2NoYXJnZQAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:brewing_stand" + }, + { + "id": "minecraft:anvil", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSRAAAACAQAbmFtZQ8AbWluZWNyYWZ0OmFudmlsBAkAbmFtZV9oYXNoNqB3fgcUCbwDCgBuZXR3b3JrX2lk8Z3VowoGAHN0YXRlcwgGAGRhbWFnZQkAdW5kYW1hZ2VkCBwAbWluZWNyYWZ0OmNhcmRpbmFsX2RpcmVjdGlvbgUAc291dGgAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:anvil", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSRAAAACAQAbmFtZQ8AbWluZWNyYWZ0OmFudmlsBAkAbmFtZV9oYXNoNqB3fgcUCbwDCgBuZXR3b3JrX2lkpiv8BAoGAHN0YXRlcwgGAGRhbWFnZRAAc2xpZ2h0bHlfZGFtYWdlZAgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAHNvdXRoAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:anvil", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSRAAAACAQAbmFtZQ8AbWluZWNyYWZ0OmFudmlsBAkAbmFtZV9oYXNoNqB3fgcUCbwDCgBuZXR3b3JrX2lkFu+pdwoGAHN0YXRlcwgGAGRhbWFnZQwAdmVyeV9kYW1hZ2VkCBwAbWluZWNyYWZ0OmNhcmRpbmFsX2RpcmVjdGlvbgUAc291dGgAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:grindstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTCAQAACAQAbmFtZRQAbWluZWNyYWZ0OmdyaW5kc3RvbmUECQBuYW1lX2hhc2id56zc0nk99wMKAG5ldHdvcmtfaWS4Es07CgYAc3RhdGVzCAoAYXR0YWNobWVudAgAc3RhbmRpbmcDCQBkaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:enchanting_table", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR0AAAACAQAbmFtZRoAbWluZWNyYWZ0OmVuY2hhbnRpbmdfdGFibGUECQBuYW1lX2hhc2jgIx24VLvMvwMKAG5ldHdvcmtfaWRliFFJCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bookshelf", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQvAAAACAQAbmFtZRMAbWluZWNyYWZ0OmJvb2tzaGVsZgQJAG5hbWVfaGFzaDU04DrgJCS9AwoAbmV0d29ya19pZBcWwIwKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:chiseled_bookshelf", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQNAwAACAQAbmFtZRwAbWluZWNyYWZ0OmNoaXNlbGVkX2Jvb2tzaGVsZgQJAG5hbWVfaGFzaNXDBnsIsywYAwoAbmV0d29ya19pZIprt5IKBgBzdGF0ZXMDDABib29rc19zdG9yZWQAAAAAAwkAZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:lectern", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTBAQAACAQAbmFtZREAbWluZWNyYWZ0OmxlY3Rlcm4ECQBuYW1lX2hhc2j5Z4Mmi/1QxAMKAG5ldHdvcmtfaWR4JfDHCgYAc3RhdGVzCBwAbWluZWNyYWZ0OmNhcmRpbmFsX2RpcmVjdGlvbgUAc291dGgBCwBwb3dlcmVkX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cauldron" + }, + { + "id": "minecraft:composter", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTUAQAACAQAbmFtZRMAbWluZWNyYWZ0OmNvbXBvc3RlcgQJAG5hbWVfaGFzaPAADHptzeWJAwoAbmV0d29ya19pZHIL6i4KBgBzdGF0ZXMDFABjb21wb3N0ZXJfZmlsbF9sZXZlbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:chest", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ2AAAACAQAbmFtZQ8AbWluZWNyYWZ0OmNoZXN0BAkAbmFtZV9oYXNog9ozMxlcA88DCgBuZXR3b3JrX2lkDkOFvAoGAHN0YXRlcwgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAG5vcnRoAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:trapped_chest", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSSAAAACAQAbmFtZRcAbWluZWNyYWZ0OnRyYXBwZWRfY2hlc3QECQBuYW1lX2hhc2g2qpF9stsEjgMKAG5ldHdvcmtfaWTjJWYxCgYAc3RhdGVzCBwAbWluZWNyYWZ0OmNhcmRpbmFsX2RpcmVjdGlvbgUAbm9ydGgAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:ender_chest", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSCAAAACAQAbmFtZRUAbWluZWNyYWZ0OmVuZGVyX2NoZXN0BAkAbmFtZV9oYXNohEZzOFdg0WUDCgBuZXR3b3JrX2lkx4jiSQoGAHN0YXRlcwgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAG5vcnRoAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:barrel", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTKAQAACAQAbmFtZRAAbWluZWNyYWZ0OmJhcnJlbAQJAG5hbWVfaGFzaHDkRPGymiRqAwoAbmV0d29ya19pZPnxzgsKBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAAAAAAEIAG9wZW5fYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:undyed_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTNAAAACAQAbmFtZRwAbWluZWNyYWZ0OnVuZHllZF9zaHVsa2VyX2JveAQJAG5hbWVfaGFzaOC9mypm/MlBAwoAbmV0d29ya19pZJ8rxp0KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:white_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTaAAAACAQAbmFtZRsAbWluZWNyYWZ0OndoaXRlX3NodWxrZXJfYm94BAkAbmFtZV9oYXNosK79m1rPUBwDCgBuZXR3b3JrX2lkjrET6goGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:light_gray_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRrAwAACAQAbmFtZSAAbWluZWNyYWZ0OmxpZ2h0X2dyYXlfc2h1bGtlcl9ib3gECQBuYW1lX2hhc2iBe5zq7PxHmgMKAG5ldHdvcmtfaWSCVJv0CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:gray_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRqAwAACAQAbmFtZRoAbWluZWNyYWZ0OmdyYXlfc2h1bGtlcl9ib3gECQBuYW1lX2hhc2ga2s8ctjHUhgMKAG5ldHdvcmtfaWS3WMsWCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:black_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRyAwAACAQAbmFtZRsAbWluZWNyYWZ0OmJsYWNrX3NodWxrZXJfYm94BAkAbmFtZV9oYXNoPm03OZphrp8DCgBuZXR3b3JrX2lkXHztNAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:brown_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRvAwAACAQAbmFtZRsAbWluZWNyYWZ0OmJyb3duX3NodWxrZXJfYm94BAkAbmFtZV9oYXNoT3DD6qAL9cADCgBuZXR3b3JrX2lkaXxpYQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:red_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRxAwAACAQAbmFtZRkAbWluZWNyYWZ0OnJlZF9zaHVsa2VyX2JveAQJAG5hbWVfaGFzaMIlKSCzqSZoAwoAbmV0d29ya19pZNrf+icKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:orange_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRkAwAACAQAbmFtZRwAbWluZWNyYWZ0Om9yYW5nZV9zaHVsa2VyX2JveAQJAG5hbWVfaGFzaG2MAXU67wGrAwoAbmV0d29ya19pZGoO05gKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:yellow_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRnAwAACAQAbmFtZRwAbWluZWNyYWZ0OnllbGxvd19zaHVsa2VyX2JveAQJAG5hbWVfaGFzaIsLwQHYjcIEAwoAbmV0d29ya19pZBCBSiYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:lime_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRoAwAACAQAbmFtZRoAbWluZWNyYWZ0OmxpbWVfc2h1bGtlcl9ib3gECQBuYW1lX2hhc2hUwBkg+faUGAMKAG5ldHdvcmtfaWRJeKqqCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:green_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRwAwAACAQAbmFtZRsAbWluZWNyYWZ0OmdyZWVuX3NodWxrZXJfYm94BAkAbmFtZV9oYXNoZgUeT3LupLUDCgBuZXR3b3JrX2lkzJiohQoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:cyan_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRsAwAACAQAbmFtZRoAbWluZWNyYWZ0OmN5YW5fc2h1bGtlcl9ib3gECQBuYW1lX2hhc2gSfbjteXg5yAMKAG5ldHdvcmtfaWTHeliECgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:light_blue_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRmAwAACAQAbmFtZSAAbWluZWNyYWZ0OmxpZ2h0X2JsdWVfc2h1bGtlcl9ib3gECQBuYW1lX2hhc2h0VFCX0qsRxQMKAG5ldHdvcmtfaWQXD8U0CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:blue_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRuAwAACAQAbmFtZRoAbWluZWNyYWZ0OmJsdWVfc2h1bGtlcl9ib3gECQBuYW1lX2hhc2hn9gS0XIe6rAMKAG5ldHdvcmtfaWTO4PJaCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:purple_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRtAwAACAQAbmFtZRwAbWluZWNyYWZ0OnB1cnBsZV9zaHVsa2VyX2JveAQJAG5hbWVfaGFzaEV/lkNPxRDdAwoAbmV0d29ya19pZFK25GAKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:magenta_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRlAwAACAQAbmFtZR0AbWluZWNyYWZ0Om1hZ2VudGFfc2h1bGtlcl9ib3gECQBuYW1lX2hhc2iqWM7IJHxcFgMKAG5ldHdvcmtfaWTyyudTCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:pink_shulker_box", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRpAwAACAQAbmFtZRoAbWluZWNyYWZ0OnBpbmtfc2h1bGtlcl9ib3gECQBuYW1lX2hhc2in1tkJ1GNcZgMKAG5ldHdvcmtfaWQOEGXjCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:armor_stand" + }, + { + "id": "minecraft:noteblock", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQZAAAACAQAbmFtZRMAbWluZWNyYWZ0Om5vdGVibG9jawQJAG5hbWVfaGFzaHPA8dBBH0UaAwoAbmV0d29ya19pZH1U5QkKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:jukebox", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRUAAAACAQAbmFtZREAbWluZWNyYWZ0Omp1a2Vib3gECQBuYW1lX2hhc2ieAIPExf/ZfgMKAG5ldHdvcmtfaWSmR7JfCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:music_disc_13" + }, + { + "id": "minecraft:music_disc_cat" + }, + { + "id": "minecraft:music_disc_blocks" + }, + { + "id": "minecraft:music_disc_chirp" + }, + { + "id": "minecraft:music_disc_far" + }, + { + "id": "minecraft:music_disc_mall" + }, + { + "id": "minecraft:music_disc_mellohi" + }, + { + "id": "minecraft:music_disc_stal" + }, + { + "id": "minecraft:music_disc_strad" + }, + { + "id": "minecraft:music_disc_ward" + }, + { + "id": "minecraft:music_disc_11" + }, + { + "id": "minecraft:music_disc_wait" + }, + { + "id": "minecraft:music_disc_otherside" + }, + { + "id": "minecraft:music_disc_5" + }, + { + "id": "minecraft:music_disc_pigstep" + }, + { + "id": "minecraft:music_disc_relic" + }, + { + "id": "minecraft:music_disc_creator" + }, + { + "id": "minecraft:music_disc_creator_music_box" + }, + { + "id": "minecraft:music_disc_precipice" + }, + { + "id": "minecraft:disc_fragment_5" + }, + { + "id": "minecraft:glowstone_dust" + }, + { + "id": "minecraft:glowstone", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRZAAAACAQAbmFtZRMAbWluZWNyYWZ0Omdsb3dzdG9uZQQJAG5hbWVfaGFzaFYqXNkefIlPAwoAbmV0d29ya19pZGT7WYYKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:redstone_lamp", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR7AAAACAQAbmFtZRcAbWluZWNyYWZ0OnJlZHN0b25lX2xhbXAECQBuYW1lX2hhc2hJ9V80caPvEgMKAG5ldHdvcmtfaWRvNPwnCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:sea_lantern", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSpAAAACAQAbmFtZRUAbWluZWNyYWZ0OnNlYV9sYW50ZXJuBAkAbmFtZV9oYXNoLPsv1TX9M+QDCgBuZXR3b3JrX2lk1PPVyAoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:oak_sign" + }, + { + "id": "minecraft:spruce_sign" + }, + { + "id": "minecraft:birch_sign" + }, + { + "id": "minecraft:jungle_sign" + }, + { + "id": "minecraft:acacia_sign" + }, + { + "id": "minecraft:dark_oak_sign" + }, + { + "id": "minecraft:mangrove_sign" + }, + { + "id": "minecraft:cherry_sign" + }, + { + "id": "minecraft:bamboo_sign" + }, + { + "id": "minecraft:crimson_sign" + }, + { + "id": "minecraft:warped_sign" + }, + { + "id": "minecraft:oak_hanging_sign" + }, + { + "id": "minecraft:spruce_hanging_sign" + }, + { + "id": "minecraft:birch_hanging_sign" + }, + { + "id": "minecraft:jungle_hanging_sign" + }, + { + "id": "minecraft:acacia_hanging_sign" + }, + { + "id": "minecraft:dark_oak_hanging_sign" + }, + { + "id": "minecraft:mangrove_hanging_sign" + }, + { + "id": "minecraft:cherry_hanging_sign" + }, + { + "id": "minecraft:bamboo_hanging_sign" + }, + { + "id": "minecraft:crimson_hanging_sign" + }, + { + "id": "minecraft:warped_hanging_sign" + }, + { + "id": "minecraft:painting" + }, + { + "id": "minecraft:frame" + }, + { + "id": "minecraft:glow_frame" + }, + { + "id": "minecraft:honey_bottle" + }, + { + "id": "minecraft:flower_pot" + }, + { + "id": "minecraft:bowl" + }, + { + "id": "minecraft:bucket" + }, + { + "id": "minecraft:milk_bucket" + }, + { + "id": "minecraft:water_bucket" + }, + { + "id": "minecraft:lava_bucket" + }, + { + "id": "minecraft:cod_bucket" + }, + { + "id": "minecraft:salmon_bucket" + }, + { + "id": "minecraft:tropical_fish_bucket" + }, + { + "id": "minecraft:pufferfish_bucket" + }, + { + "id": "minecraft:powder_snow_bucket" + }, + { + "id": "minecraft:axolotl_bucket" + }, + { + "id": "minecraft:tadpole_bucket" + }, + { + "id": "minecraft:skull", + "damage": 3 + }, + { + "id": "minecraft:skull", + "damage": 2 + }, + { + "id": "minecraft:skull", + "damage": 4 + }, + { + "id": "minecraft:skull", + "damage": 5 + }, + { + "id": "minecraft:skull" + }, + { + "id": "minecraft:skull", + "damage": 1 + }, + { + "id": "minecraft:skull", + "damage": 6 + }, + { + "id": "minecraft:beacon", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSKAAAACAQAbmFtZRAAbWluZWNyYWZ0OmJlYWNvbgQJAG5hbWVfaGFzaACwhhfSkdkHAwoAbmV0d29ya19pZF8jfiEKBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:bell", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTNAQAACAQAbmFtZQ4AbWluZWNyYWZ0OmJlbGwECQBuYW1lX2hhc2iPqsgDXRcsxAMKAG5ldHdvcmtfaWT7zhOoCgYAc3RhdGVzCAoAYXR0YWNobWVudAgAc3RhbmRpbmcDCQBkaXJlY3Rpb24AAAAAAQoAdG9nZ2xlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:conduit", + "block_state_b64": "CgAAAwgAYmxvY2tfaWScAQAACAQAbmFtZREAbWluZWNyYWZ0OmNvbmR1aXQECQBuYW1lX2hhc2jqxKAxq2EaWQMKAG5ldHdvcmtfaWTWcBVnCgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stonecutter_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTEAQAACAQAbmFtZRsAbWluZWNyYWZ0OnN0b25lY3V0dGVyX2Jsb2NrBAkAbmFtZV9oYXNoQAXTbAM3MeYDCgBuZXR3b3JrX2lkWS4RjAoGAHN0YXRlcwgcAG1pbmVjcmFmdDpjYXJkaW5hbF9kaXJlY3Rpb24FAG5vcnRoAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:coal" + }, + { + "id": "minecraft:charcoal" + }, + { + "id": "minecraft:diamond" + }, + { + "id": "minecraft:iron_nugget" + }, + { + "id": "minecraft:raw_iron" + }, + { + "id": "minecraft:raw_gold" + }, + { + "id": "minecraft:raw_copper" + }, + { + "id": "minecraft:copper_ingot" + }, + { + "id": "minecraft:iron_ingot" + }, + { + "id": "minecraft:netherite_scrap" + }, + { + "id": "minecraft:netherite_ingot" + }, + { + "id": "minecraft:gold_nugget" + }, + { + "id": "minecraft:gold_ingot" + }, + { + "id": "minecraft:emerald" + }, + { + "id": "minecraft:quartz" + }, + { + "id": "minecraft:clay_ball" + }, + { + "id": "minecraft:brick" + }, + { + "id": "minecraft:netherbrick" + }, + { + "id": "minecraft:prismarine_shard" + }, + { + "id": "minecraft:amethyst_shard" + }, + { + "id": "minecraft:prismarine_crystals" + }, + { + "id": "minecraft:nautilus_shell" + }, + { + "id": "minecraft:heart_of_the_sea" + }, + { + "id": "minecraft:turtle_scute" + }, + { + "id": "minecraft:armadillo_scute" + }, + { + "id": "minecraft:phantom_membrane" + }, + { + "id": "minecraft:string" + }, + { + "id": "minecraft:feather" + }, + { + "id": "minecraft:flint" + }, + { + "id": "minecraft:gunpowder" + }, + { + "id": "minecraft:leather" + }, + { + "id": "minecraft:rabbit_hide" + }, + { + "id": "minecraft:rabbit_foot" + }, + { + "id": "minecraft:fire_charge" + }, + { + "id": "minecraft:blaze_rod" + }, + { + "id": "minecraft:breeze_rod" + }, + { + "id": "minecraft:heavy_core", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ7AgAACAQAbmFtZRQAbWluZWNyYWZ0OmhlYXZ5X2NvcmUECQBuYW1lX2hhc2hhz/uNCtrC2QMKAG5ldHdvcmtfaWRaFu+8CgYAc3RhdGVzAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:blaze_powder" + }, + { + "id": "minecraft:magma_cream" + }, + { + "id": "minecraft:fermented_spider_eye" + }, + { + "id": "minecraft:echo_shard" + }, + { + "id": "minecraft:dragon_breath" + }, + { + "id": "minecraft:shulker_shell" + }, + { + "id": "minecraft:ghast_tear" + }, + { + "id": "minecraft:slime_ball" + }, + { + "id": "minecraft:ender_pearl" + }, + { + "id": "minecraft:ender_eye" + }, + { + "id": "minecraft:nether_star" + }, + { + "id": "minecraft:end_rod", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTQAAAACAQAbmFtZREAbWluZWNyYWZ0OmVuZF9yb2QECQBuYW1lX2hhc2jx/q5cEA0hmQMKAG5ldHdvcmtfaWQ2eM8kCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:lightning_rod", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ3AgAACAQAbmFtZRcAbWluZWNyYWZ0OmxpZ2h0bmluZ19yb2QECQBuYW1lX2hhc2ioXQF1xvfHNQMKAG5ldHdvcmtfaWRLuHyACgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:end_crystal" + }, + { + "id": "minecraft:paper" + }, + { + "id": "minecraft:book" + }, + { + "id": "minecraft:writable_book" + }, + { + "id": "minecraft:trial_key" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQmAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQnAAIDAGx2bAUAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAEAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAIAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAMAAAA=" + }, + { + "id": "minecraft:enchanted_book", + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQoAAIDAGx2bAQAAAA=" + }, + { + "id": "minecraft:oak_boat" + }, + { + "id": "minecraft:spruce_boat" + }, + { + "id": "minecraft:birch_boat" + }, + { + "id": "minecraft:jungle_boat" + }, + { + "id": "minecraft:acacia_boat" + }, + { + "id": "minecraft:dark_oak_boat" + }, + { + "id": "minecraft:mangrove_boat" + }, + { + "id": "minecraft:cherry_boat" + }, + { + "id": "minecraft:bamboo_raft" + }, + { + "id": "minecraft:oak_chest_boat" + }, + { + "id": "minecraft:spruce_chest_boat" + }, + { + "id": "minecraft:birch_chest_boat" + }, + { + "id": "minecraft:jungle_chest_boat" + }, + { + "id": "minecraft:acacia_chest_boat" + }, + { + "id": "minecraft:dark_oak_chest_boat" + }, + { + "id": "minecraft:mangrove_chest_boat" + }, + { + "id": "minecraft:cherry_chest_boat" + }, + { + "id": "minecraft:bamboo_chest_raft" + }, + { + "id": "minecraft:rail", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRCAAAACAQAbmFtZQ4AbWluZWNyYWZ0OnJhaWwECQBuYW1lX2hhc2hUzmhUXYJDUQMKAG5ldHdvcmtfaWR+Sp6YCgYAc3RhdGVzAw4AcmFpbF9kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:golden_rail", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQbAAAACAQAbmFtZRUAbWluZWNyYWZ0OmdvbGRlbl9yYWlsBAkAbmFtZV9oYXNoOoV5MaKipoUDCgBuZXR3b3JrX2lkfAcxLwoGAHN0YXRlcwENAHJhaWxfZGF0YV9iaXQAAw4AcmFpbF9kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:detector_rail", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQcAAAACAQAbmFtZRcAbWluZWNyYWZ0OmRldGVjdG9yX3JhaWwECQBuYW1lX2hhc2gVUk31qOysUQMKAG5ldHdvcmtfaWRVW/aICgYAc3RhdGVzAQ0AcmFpbF9kYXRhX2JpdAADDgByYWlsX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:activator_rail", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR+AAAACAQAbmFtZRgAbWluZWNyYWZ0OmFjdGl2YXRvcl9yYWlsBAkAbmFtZV9oYXNosIL91qriCRkDCgBuZXR3b3JrX2lkZfckmwoGAHN0YXRlcwENAHJhaWxfZGF0YV9iaXQAAw4AcmFpbF9kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:minecart" + }, + { + "id": "minecraft:chest_minecart" + }, + { + "id": "minecraft:hopper_minecart" + }, + { + "id": "minecraft:tnt_minecart" + }, + { + "id": "minecraft:redstone" + }, + { + "id": "minecraft:redstone_block", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSYAAAACAQAbmFtZRgAbWluZWNyYWZ0OnJlZHN0b25lX2Jsb2NrBAkAbmFtZV9oYXNoRhULL0r8o0sDCgBuZXR3b3JrX2lklayOHgoGAHN0YXRlcwADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:redstone_torch", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRMAAAACAQAbmFtZRgAbWluZWNyYWZ0OnJlZHN0b25lX3RvcmNoBAkAbmFtZV9oYXNoizFRjpYMIDgDCgBuZXR3b3JrX2lkuHz7yAoGAHN0YXRlcwgWAHRvcmNoX2ZhY2luZ19kaXJlY3Rpb24HAHVua25vd24AAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:lever", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRFAAAACAQAbmFtZQ8AbWluZWNyYWZ0OmxldmVyBAkAbmFtZV9oYXNoGMJeLJsUMLYDCgBuZXR3b3JrX2lkEF/GuAoGAHN0YXRlcwgPAGxldmVyX2RpcmVjdGlvbg4AZG93bl9lYXN0X3dlc3QBCABvcGVuX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:wooden_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSPAAAACAQAbmFtZRcAbWluZWNyYWZ0Ondvb2Rlbl9idXR0b24ECQBuYW1lX2hhc2hR7PgSTQt0sQMKAG5ldHdvcmtfaWSU07kYCgYAc3RhdGVzARIAYnV0dG9uX3ByZXNzZWRfYml0AAMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:spruce_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSPAQAACAQAbmFtZRcAbWluZWNyYWZ0OnNwcnVjZV9idXR0b24ECQBuYW1lX2hhc2jBW9Z8aYE7YQMKAG5ldHdvcmtfaWTkUIGuCgYAc3RhdGVzARIAYnV0dG9uX3ByZXNzZWRfYml0AAMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:birch_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSMAQAACAQAbmFtZRYAbWluZWNyYWZ0OmJpcmNoX2J1dHRvbgQJAG5hbWVfaGFzaJXYgGuSHbTwAwoAbmV0d29ya19pZGWp3yoKBgBzdGF0ZXMBEgBidXR0b25fcHJlc3NlZF9iaXQAAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:jungle_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSOAQAACAQAbmFtZRcAbWluZWNyYWZ0Omp1bmdsZV9idXR0b24ECQBuYW1lX2hhc2iCgNANcJs+BQMKAG5ldHdvcmtfaWT9fImWCgYAc3RhdGVzARIAYnV0dG9uX3ByZXNzZWRfYml0AAMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:acacia_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSLAQAACAQAbmFtZRcAbWluZWNyYWZ0OmFjYWNpYV9idXR0b24ECQBuYW1lX2hhc2gVvmcT7LTO0wMKAG5ldHdvcmtfaWRQnxIJCgYAc3RhdGVzARIAYnV0dG9uX3ByZXNzZWRfYml0AAMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dark_oak_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSNAQAACAQAbmFtZRkAbWluZWNyYWZ0OmRhcmtfb2FrX2J1dHRvbgQJAG5hbWVfaGFzaIV10ZGGrCIEAwoAbmV0d29ya19pZN5vAmIKBgBzdGF0ZXMBEgBidXR0b25fcHJlc3NlZF9iaXQAAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mangrove_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTmAgAACAQAbmFtZRkAbWluZWNyYWZ0Om1hbmdyb3ZlX2J1dHRvbgQJAG5hbWVfaGFzaNzeYYKLgOzJAwoAbmV0d29ya19pZAFEGQ0KBgBzdGF0ZXMBEgBidXR0b25fcHJlc3NlZF9iaXQAAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cherry_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQRAwAACAQAbmFtZRcAbWluZWNyYWZ0OmNoZXJyeV9idXR0b24ECQBuYW1lX2hhc2j2/IHjeAbUcwMKAG5ldHdvcmtfaWRJ1irQCgYAc3RhdGVzARIAYnV0dG9uX3ByZXNzZWRfYml0AAMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bamboo_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT+AgAACAQAbmFtZRcAbWluZWNyYWZ0OmJhbWJvb19idXR0b24ECQBuYW1lX2hhc2j7AddMi+6nsgMKAG5ldHdvcmtfaWSa9w4/CgYAc3RhdGVzARIAYnV0dG9uX3ByZXNzZWRfYml0AAMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stone_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRNAAAACAQAbmFtZRYAbWluZWNyYWZ0OnN0b25lX2J1dHRvbgQJAG5hbWVfaGFzaM4ejMctmvohAwoAbmV0d29ya19pZMw+aC0KBgBzdGF0ZXMBEgBidXR0b25fcHJlc3NlZF9iaXQAAxAAZmFjaW5nX2RpcmVjdGlvbgAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:crimson_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQDAgAACAQAbmFtZRgAbWluZWNyYWZ0OmNyaW1zb25fYnV0dG9uBAkAbmFtZV9oYXNofnjYHaYIeWgDCgBuZXR3b3JrX2lk+n1vyQoGAHN0YXRlcwESAGJ1dHRvbl9wcmVzc2VkX2JpdAADEABmYWNpbmdfZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:warped_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQEAgAACAQAbmFtZRcAbWluZWNyYWZ0OndhcnBlZF9idXR0b24ECQBuYW1lX2hhc2jwkV2EU6Cn1QMKAG5ldHdvcmtfaWTnHnk1CgYAc3RhdGVzARIAYnV0dG9uX3ByZXNzZWRfYml0AAMQAGZhY2luZ19kaXJlY3Rpb24AAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:polished_blackstone_button", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQnAgAACAQAbmFtZSQAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfYnV0dG9uBAkAbmFtZV9oYXNojmxzQKS0S/EDCgBuZXR3b3JrX2lkDtQ95woGAHN0YXRlcwESAGJ1dHRvbl9wcmVzc2VkX2JpdAADEABmYWNpbmdfZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:tripwire_hook", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSDAAAACAQAbmFtZRcAbWluZWNyYWZ0OnRyaXB3aXJlX2hvb2sECQBuYW1lX2hhc2gQdp+oGZLNnAMKAG5ldHdvcmtfaWSy+1KJCgYAc3RhdGVzAQwAYXR0YWNoZWRfYml0AAMJAGRpcmVjdGlvbgAAAAABCwBwb3dlcmVkX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:wooden_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRIAAAACAQAbmFtZR8AbWluZWNyYWZ0Ondvb2Rlbl9wcmVzc3VyZV9wbGF0ZQQJAG5hbWVfaGFzaGkGs5kCuA74AwoAbmV0d29ya19pZDRzPNwKBgBzdGF0ZXMDDwByZWRzdG9uZV9zaWduYWwAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:spruce_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSZAQAACAQAbmFtZR8AbWluZWNyYWZ0OnNwcnVjZV9wcmVzc3VyZV9wbGF0ZQQJAG5hbWVfaGFzaNmwuq549fJKAwoAbmV0d29ya19pZLQMCw0KBgBzdGF0ZXMDDwByZWRzdG9uZV9zaWduYWwAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:birch_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSWAQAACAQAbmFtZR4AbWluZWNyYWZ0OmJpcmNoX3ByZXNzdXJlX3BsYXRlBAkAbmFtZV9oYXNorQkT9kDdlTwDCgBuZXR3b3JrX2lkH0G97AoGAHN0YXRlcwMPAHJlZHN0b25lX3NpZ25hbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:jungle_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSYAQAACAQAbmFtZR8AbWluZWNyYWZ0Omp1bmdsZV9wcmVzc3VyZV9wbGF0ZQQJAG5hbWVfaGFzaJ7DcteCkb8/AwoAbmV0d29ya19pZLdPBSAKBgBzdGF0ZXMDDwByZWRzdG9uZV9zaWduYWwAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:acacia_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSVAQAACAQAbmFtZR8AbWluZWNyYWZ0OmFjYWNpYV9wcmVzc3VyZV9wbGF0ZQQJAG5hbWVfaGFzaC2frZtfoYqCAwoAbmV0d29ya19pZIDdI18KBgBzdGF0ZXMDDwByZWRzdG9uZV9zaWduYWwAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:dark_oak_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSXAQAACAQAbmFtZSEAbWluZWNyYWZ0OmRhcmtfb2FrX3ByZXNzdXJlX3BsYXRlBAkAbmFtZV9oYXNoHUCJsTy52pwDCgBuZXR3b3JrX2lkKpi8rAoGAHN0YXRlcwMPAHJlZHN0b25lX3NpZ25hbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:mangrove_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTpAgAACAQAbmFtZSEAbWluZWNyYWZ0Om1hbmdyb3ZlX3ByZXNzdXJlX3BsYXRlBAkAbmFtZV9oYXNoiDsTfJaX100DCgBuZXR3b3JrX2lkuwWDyQoGAHN0YXRlcwMPAHJlZHN0b25lX3NpZ25hbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:cherry_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQZAwAACAQAbmFtZR8AbWluZWNyYWZ0OmNoZXJyeV9wcmVzc3VyZV9wbGF0ZQQJAG5hbWVfaGFzaALMqYEZDUQHAwoAbmV0d29ya19pZPNT+r0KBgBzdGF0ZXMDDwByZWRzdG9uZV9zaWduYWwAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:bamboo_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQBAwAACAQAbmFtZR8AbWluZWNyYWZ0OmJhbWJvb19wcmVzc3VyZV9wbGF0ZQQJAG5hbWVfaGFzaNvxJ7NIAaqlAwoAbmV0d29ya19pZIZ8XnYKBgBzdGF0ZXMDDwByZWRzdG9uZV9zaWduYWwAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:crimson_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQFAgAACAQAbmFtZSAAbWluZWNyYWZ0OmNyaW1zb25fcHJlc3N1cmVfcGxhdGUECQBuYW1lX2hhc2hqBDVDAd31/gMKAG5ldHdvcmtfaWRmV18LCgYAc3RhdGVzAw8AcmVkc3RvbmVfc2lnbmFsAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:warped_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQGAgAACAQAbmFtZR8AbWluZWNyYWZ0OndhcnBlZF9wcmVzc3VyZV9wbGF0ZQQJAG5hbWVfaGFzaBxFoQksWtYUAwoAbmV0d29ya19pZJVRoIcKBgBzdGF0ZXMDDwByZWRzdG9uZV9zaWduYWwAAAAAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:stone_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWRGAAAACAQAbmFtZR4AbWluZWNyYWZ0OnN0b25lX3ByZXNzdXJlX3BsYXRlBAkAbmFtZV9oYXNounJuTBUTrU8DCgBuZXR3b3JrX2lkjDydwQoGAHN0YXRlcwMPAHJlZHN0b25lX3NpZ25hbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:light_weighted_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSTAAAACAQAbmFtZScAbWluZWNyYWZ0OmxpZ2h0X3dlaWdodGVkX3ByZXNzdXJlX3BsYXRlBAkAbmFtZV9oYXNoOyOJkNxLtkEDCgBuZXR3b3JrX2lkrr2AjgoGAHN0YXRlcwMPAHJlZHN0b25lX3NpZ25hbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:heavy_weighted_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSUAAAACAQAbmFtZScAbWluZWNyYWZ0OmhlYXZ5X3dlaWdodGVkX3ByZXNzdXJlX3BsYXRlBAkAbmFtZV9oYXNoltgDmDvTajUDCgBuZXR3b3JrX2lkFxVKuQoGAHN0YXRlcwMPAHJlZHN0b25lX3NpZ25hbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:polished_blackstone_pressure_plate", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQmAgAACAQAbmFtZSwAbWluZWNyYWZ0OnBvbGlzaGVkX2JsYWNrc3RvbmVfcHJlc3N1cmVfcGxhdGUECQBuYW1lX2hhc2h65Ci6/CeGqwMKAG5ldHdvcmtfaWTaSW5xCgYAc3RhdGVzAw8AcmVkc3RvbmVfc2lnbmFsAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:observer", + "block_state_b64": "CgAAAwgAYmxvY2tfaWT7AAAACAQAbmFtZRIAbWluZWNyYWZ0Om9ic2VydmVyBAkAbmFtZV9oYXNoYhlh1lpmHTgDCgBuZXR3b3JrX2lkQEh55goGAHN0YXRlcwgaAG1pbmVjcmFmdDpmYWNpbmdfZGlyZWN0aW9uBABkb3duAQsAcG93ZXJlZF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:daylight_detector", + "block_state_b64": "CgAAAwgAYmxvY2tfaWSXAAAACAQAbmFtZRsAbWluZWNyYWZ0OmRheWxpZ2h0X2RldGVjdG9yBAkAbmFtZV9oYXNoV0F0s7B7PVgDCgBuZXR3b3JrX2lkri5afQoGAHN0YXRlcwMPAHJlZHN0b25lX3NpZ25hbAAAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:repeater" + }, + { + "id": "minecraft:comparator" + }, + { + "id": "minecraft:hopper" + }, + { + "id": "minecraft:dropper", + "block_state_b64": "CgAAAwgAYmxvY2tfaWR9AAAACAQAbmFtZREAbWluZWNyYWZ0OmRyb3BwZXIECQBuYW1lX2hhc2joXP7XqU0l3QMKAG5ldHdvcmtfaWQfQN6zCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgMAAAABDQB0cmlnZ2VyZWRfYml0AAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:dispenser", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQXAAAACAQAbmFtZRMAbWluZWNyYWZ0OmRpc3BlbnNlcgQJAG5hbWVfaGFzaP1RR+zAbYP2AwoAbmV0d29ya19pZGAayD0KBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAwAAAAENAHRyaWdnZXJlZF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:crafter", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQ4AgAACAQAbmFtZREAbWluZWNyYWZ0OmNyYWZ0ZXIECQBuYW1lX2hhc2iLCT/rJmRN8QMKAG5ldHdvcmtfaWTPTbvrCgYAc3RhdGVzAQgAY3JhZnRpbmcACAsAb3JpZW50YXRpb24JAGRvd25fZWFzdAENAHRyaWdnZXJlZF9iaXQAAAMHAHZlcnNpb24DABUBAA==" + }, + { + "id": "minecraft:piston", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQhAAAACAQAbmFtZRAAbWluZWNyYWZ0OnBpc3RvbgQJAG5hbWVfaGFzaDs3AFh1fL0uAwoAbmV0d29ya19pZLD/5XQKBgBzdGF0ZXMDEABmYWNpbmdfZGlyZWN0aW9uAQAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:sticky_piston", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQdAAAACAQAbmFtZRcAbWluZWNyYWZ0OnN0aWNreV9waXN0b24ECQBuYW1lX2hhc2hPFJFJSiJ0ZQMKAG5ldHdvcmtfaWT/MzCJCgYAc3RhdGVzAxAAZmFjaW5nX2RpcmVjdGlvbgEAAAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:tnt", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQuAAAACAQAbmFtZQ0AbWluZWNyYWZ0OnRudAQJAG5hbWVfaGFzaEYOHwCvJH29AwoAbmV0d29ya19pZCGfjU4KBgBzdGF0ZXMBFABhbGxvd191bmRlcndhdGVyX2JpdAABCwBleHBsb2RlX2JpdAAAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:name_tag" + }, + { + "id": "minecraft:loom", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTLAQAACAQAbmFtZQ4AbWluZWNyYWZ0Omxvb20ECQBuYW1lX2hhc2i7DKjAXNq8TAMKAG5ldHdvcmtfaWR/49HXCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:banner", + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 8, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 7, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 15, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 12, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 14, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 1, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 4, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 5, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 13, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 9, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 3, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 11, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 10, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 2, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 6, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" + }, + { + "id": "minecraft:banner", + "damage": 15, + "nbt_b64": "CgAAAwQAVHlwZQEAAAAA" + }, + { + "id": "minecraft:creeper_banner_pattern" + }, + { + "id": "minecraft:skull_banner_pattern" + }, + { + "id": "minecraft:flower_banner_pattern" + }, + { + "id": "minecraft:mojang_banner_pattern" + }, + { + "id": "minecraft:field_masoned_banner_pattern" + }, + { + "id": "minecraft:bordure_indented_banner_pattern" + }, + { + "id": "minecraft:piglin_banner_pattern" + }, + { + "id": "minecraft:globe_banner_pattern" + }, + { + "id": "minecraft:flow_banner_pattern" + }, + { + "id": "minecraft:guster_banner_pattern" + }, + { + "id": "minecraft:angler_pottery_sherd" + }, + { + "id": "minecraft:archer_pottery_sherd" + }, + { + "id": "minecraft:arms_up_pottery_sherd" + }, + { + "id": "minecraft:blade_pottery_sherd" + }, + { + "id": "minecraft:brewer_pottery_sherd" + }, + { + "id": "minecraft:burn_pottery_sherd" + }, + { + "id": "minecraft:danger_pottery_sherd" + }, + { + "id": "minecraft:explorer_pottery_sherd" + }, + { + "id": "minecraft:flow_pottery_sherd" + }, + { + "id": "minecraft:friend_pottery_sherd" + }, + { + "id": "minecraft:guster_pottery_sherd" + }, + { + "id": "minecraft:heart_pottery_sherd" + }, + { + "id": "minecraft:heartbreak_pottery_sherd" + }, + { + "id": "minecraft:howl_pottery_sherd" + }, + { + "id": "minecraft:miner_pottery_sherd" + }, + { + "id": "minecraft:mourner_pottery_sherd" + }, + { + "id": "minecraft:plenty_pottery_sherd" + }, + { + "id": "minecraft:prize_pottery_sherd" + }, + { + "id": "minecraft:scrape_pottery_sherd" + }, + { + "id": "minecraft:sheaf_pottery_sherd" + }, + { + "id": "minecraft:shelter_pottery_sherd" + }, + { + "id": "minecraft:skull_pottery_sherd" + }, + { + "id": "minecraft:snort_pottery_sherd" + }, + { + "id": "minecraft:netherite_upgrade_smithing_template" + }, + { + "id": "minecraft:sentry_armor_trim_smithing_template" + }, + { + "id": "minecraft:vex_armor_trim_smithing_template" + }, + { + "id": "minecraft:wild_armor_trim_smithing_template" + }, + { + "id": "minecraft:coast_armor_trim_smithing_template" + }, + { + "id": "minecraft:dune_armor_trim_smithing_template" + }, + { + "id": "minecraft:wayfinder_armor_trim_smithing_template" + }, + { + "id": "minecraft:shaper_armor_trim_smithing_template" + }, + { + "id": "minecraft:raiser_armor_trim_smithing_template" + }, + { + "id": "minecraft:host_armor_trim_smithing_template" + }, + { + "id": "minecraft:ward_armor_trim_smithing_template" + }, + { + "id": "minecraft:silence_armor_trim_smithing_template" + }, + { + "id": "minecraft:tide_armor_trim_smithing_template" + }, + { + "id": "minecraft:snout_armor_trim_smithing_template" + }, + { + "id": "minecraft:rib_armor_trim_smithing_template" + }, + { + "id": "minecraft:eye_armor_trim_smithing_template" + }, + { + "id": "minecraft:spire_armor_trim_smithing_template" + }, + { + "id": "minecraft:flow_armor_trim_smithing_template" + }, + { + "id": "minecraft:bolt_armor_trim_smithing_template" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_rocket", + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 8, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 7, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 15, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 12, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 14, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 1, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 4, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 5, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 13, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 9, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 3, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 11, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 10, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 2, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" + }, + { + "id": "minecraft:firework_star", + "damage": 6, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" + }, + { + "id": "minecraft:chain" + }, + { + "id": "minecraft:target", + "block_state_b64": "CgAAAwgAYmxvY2tfaWTuAQAACAQAbmFtZRAAbWluZWNyYWZ0OnRhcmdldAQJAG5hbWVfaGFzaJc66SVbYlaxAwoAbmV0d29ya19pZPBozs0KBgBzdGF0ZXMAAwcAdmVyc2lvbgMAFQEA" + }, + { + "id": "minecraft:decorated_pot", + "block_state_b64": "CgAAAwgAYmxvY2tfaWQmAwAACAQAbmFtZRcAbWluZWNyYWZ0OmRlY29yYXRlZF9wb3QECQBuYW1lX2hhc2jjQgckn8VTvwMKAG5ldHdvcmtfaWRwvkUUCgYAc3RhdGVzAwkAZGlyZWN0aW9uAAAAAAADBwB2ZXJzaW9uAwAVAQA=" + }, + { + "id": "minecraft:lodestone_compass" + }, + { + "id": "minecraft:wither_spawn_egg" + }, + { + "id": "minecraft:ender_dragon_spawn_egg" + }, + { + "id": "minecraft:ominous_trial_key" + } + ] +} \ No newline at end of file diff --git a/src/pocketmine/resources/vanilla/entity_identifiers.dat b/src/pocketmine/resources/vanilla/entity_identifiers.dat new file mode 100644 index 0000000000000000000000000000000000000000..e7cdeb08e65d446bef173af7cea4bc56d5023df3 GIT binary patch literal 8314 zcmbVS|EDHZ7=Q2HWV`A6wr$(CR#Hilm1HGJk|arzr0LAed1ubPXXZ?2X5M%2)emc} zthJJ?wN}eOp zEv=MwmYH0HT8>726c=?Ak*E-Q!hsfs2tNBA}>yWcjE zU8n?+J9x-TI=f{mWr5h8JnY3Cc4qV#p}Pj5qb5|BchGsL5Wag5j*-5igJ;H+sWm1; z{2m^jp8DBZ#fZI*hb3{gA`F$wlIwY35~#4vuNwxD8$E`H7uFemjhSHEI+rPH@*pu< zI-lJ%C;)v<&TS&8jWd4>4@?}M8e6*BxRr<9-YKuFh@q&Vwlje-JGX_$LF{+neLO7j zTw%1ZK`4bq>v!@9NU|rju(1-ZxI-SCXfH$_yMzD03_FQhA*^kqb{EewDe$x|CwS(k zc~CECrcja4V^yX|@f}n9)m`9cs!Ad7g>$EEEh81m8ah#yIZj@+mS|22D5!wTULaH$P^c?Rtkc(`bIn`Ps|B{#y>I=hzy!K)JE_ ztq1SFZ4eKXu#vg0{uJ*Jq!~!v>~h{l6c3VMJ?`#2;gbYOYT9)8m3bJF4^x%Lu&7kV zH3vH=21}7Rvq(i=wKtJ!VYC&~=E{mGG3B92bH`E+Vk?q%#P8=(5cy?V>q#p>^U&lX z=6Z>$TtVc6c#I_J1;Sw(~#cKreYA*8Ww((a?)ezmqKcyS+twTq{g_* z%PA%YS^Ql^1!HAp2!Tc^r0^6Hk&G9>~!2D@-Uc zT?my|;6uc}>f!rCKmu98+srHvDtLpFZHc|aWFaa%@4wE(lbkFIEy^?~Or_fH_=ZQ) z9|h8&Tw)h+`FC0Hrbp554KiW0Y-CLG_8R_{$Ivf=r1bhl7zzVp^0vp(uY&Bblp}~m z4nxP(C9=KCWFuWSH0?vyJ07{?TP1i()l_HRE!;h*U(x!HE?0qKD&W@-VC(<@@q8a>-(AvX0Yi7Q7UXA zgTk8qkg=+LVmal>>aQHHpY*bwX0nlu-hf(YM?tgAK{+SWSedVwrQu$SHp0u7Lw$75n+;#sqp@4CBqJ8ZDAn1B9qoV z7C%QhHWiQ7$uz)j??M_7?Kb z;?_gyE-=3{p`>lk;OgSqw);+j?)!zwL(05a_sI8|n|Xd99vmCjAb(@pCV@}8(EYhM zdIn!N+Ao*Sd)3+>K2kC8n6Umb_ZQPRfr|qMzDl{R=rGedY3*Zc+-N((#1hkGu9}B^ z4ETw~;gyKt%aY5xqf9vMa_~vZJ;EGY9Ne@C=dxO_H>4S7$auuXKaY`&$6#Dp3KqgVi>Aht8wbHX4oo1u|h&iU0rr literal 0 HcmV?d00001 diff --git a/src/pocketmine/resources/vanilla/item_mappings.json b/src/pocketmine/resources/vanilla/item_mappings.json new file mode 100644 index 00000000..440a5b53 --- /dev/null +++ b/src/pocketmine/resources/vanilla/item_mappings.json @@ -0,0 +1,128 @@ +{ + "minecraft:banner_pattern": { + "0": "minecraft:creeper_banner_pattern", + "1": "minecraft:skull_banner_pattern", + "2": "minecraft:flower_banner_pattern", + "3": "minecraft:mojang_banner_pattern", + "4": "minecraft:field_masoned_banner_pattern", + "5": "minecraft:bordure_indented_banner_pattern", + "6": "minecraft:piglin_banner_pattern" + }, + "minecraft:boat": { + "0": "minecraft:oak_boat", + "1": "minecraft:spruce_boat", + "2": "minecraft:birch_boat", + "3": "minecraft:jungle_boat", + "4": "minecraft:acacia_boat", + "5": "minecraft:dark_oak_boat" + }, + "minecraft:bucket": { + "0": "minecraft:bucket", + "1": "minecraft:milk_bucket", + "2": "minecraft:cod_bucket", + "3": "minecraft:salmon_bucket", + "4": "minecraft:tropical_fish_bucket", + "5": "minecraft:pufferfish_bucket", + "8": "minecraft:water_bucket", + "10": "minecraft:lava_bucket" + }, + "minecraft:coal": { + "0": "minecraft:coal", + "1": "minecraft:charcoal" + }, + "minecraft:dye": { + "0": "minecraft:ink_sac", + "1": "minecraft:red_dye", + "2": "minecraft:green_dye", + "3": "minecraft:cocoa_beans", + "4": "minecraft:lapis_lazuli", + "5": "minecraft:purple_dye", + "6": "minecraft:cyan_dye", + "7": "minecraft:light_gray_dye", + "8": "minecraft:gray_dye", + "9": "minecraft:pink_dye", + "10": "minecraft:lime_dye", + "11": "minecraft:yellow_dye", + "12": "minecraft:light_blue_dye", + "13": "minecraft:magenta_dye", + "14": "minecraft:orange_dye", + "15": "minecraft:bone_meal", + "16": "minecraft:black_dye", + "17": "minecraft:brown_dye", + "18": "minecraft:blue_dye", + "19": "minecraft:white_dye" + }, + "minecraft:spawn_egg": { + "0": "minecraft:spawn_egg", + "10": "minecraft:chicken_spawn_egg", + "11": "minecraft:cow_spawn_egg", + "12": "minecraft:pig_spawn_egg", + "13": "minecraft:sheep_spawn_egg", + "14": "minecraft:wolf_spawn_egg", + "15": "minecraft:villager_spawn_egg", + "16": "minecraft:mooshroom_spawn_egg", + "17": "minecraft:squid_spawn_egg", + "18": "minecraft:rabbit_spawn_egg", + "19": "minecraft:bat_spawn_egg", + "22": "minecraft:ocelot_spawn_egg", + "23": "minecraft:horse_spawn_egg", + "24": "minecraft:donkey_spawn_egg", + "25": "minecraft:mule_spawn_egg", + "26": "minecraft:skeleton_horse_spawn_egg", + "27": "minecraft:zombie_horse_spawn_egg", + "28": "minecraft:polar_bear_spawn_egg", + "29": "minecraft:llama_spawn_egg", + "30": "minecraft:parrot_spawn_egg", + "31": "minecraft:dolphin_spawn_egg", + "32": "minecraft:zombie_spawn_egg", + "33": "minecraft:creeper_spawn_egg", + "34": "minecraft:skeleton_spawn_egg", + "35": "minecraft:spider_spawn_egg", + "36": "minecraft:zombie_pigman_spawn_egg", + "37": "minecraft:slime_spawn_egg", + "38": "minecraft:enderman_spawn_egg", + "39": "minecraft:silverfish_spawn_egg", + "40": "minecraft:cave_spider_spawn_egg", + "41": "minecraft:ghast_spawn_egg", + "42": "minecraft:magma_cube_spawn_egg", + "43": "minecraft:blaze_spawn_egg", + "44": "minecraft:zombie_villager_spawn_egg", + "45": "minecraft:witch_spawn_egg", + "46": "minecraft:stray_spawn_egg", + "47": "minecraft:husk_spawn_egg", + "48": "minecraft:wither_skeleton_spawn_egg", + "49": "minecraft:guardian_spawn_egg", + "50": "minecraft:elder_guardian_spawn_egg", + "51": "minecraft:npc_spawn_egg", + "54": "minecraft:shulker_spawn_egg", + "55": "minecraft:endermite_spawn_egg", + "56": "minecraft:agent_spawn_egg", + "57": "minecraft:vindicator_spawn_egg", + "58": "minecraft:phantom_spawn_egg", + "59": "minecraft:ravager_spawn_egg", + "74": "minecraft:turtle_spawn_egg", + "75": "minecraft:cat_spawn_egg", + "104": "minecraft:evoker_spawn_egg", + "105": "minecraft:vex_spawn_egg", + "108": "minecraft:pufferfish_spawn_egg", + "109": "minecraft:salmon_spawn_egg", + "110": "minecraft:drowned_spawn_egg", + "111": "minecraft:tropical_fish_spawn_egg", + "112": "minecraft:cod_spawn_egg", + "113": "minecraft:panda_spawn_egg", + "114": "minecraft:pillager_spawn_egg", + "115": "minecraft:villager_spawn_egg", + "116": "minecraft:zombie_villager_spawn_egg", + "118": "minecraft:wandering_trader_spawn_egg", + "121": "minecraft:fox_spawn_egg", + "122": "minecraft:bee_spawn_egg", + "123": "minecraft:piglin_spawn_egg", + "124": "minecraft:hoglin_spawn_egg", + "125": "minecraft:strider_spawn_egg", + "126": "minecraft:zoglin_spawn_egg", + "127": "minecraft:piglin_brute_spawn_egg", + "128": "minecraft:goat_spawn_egg", + "129": "minecraft:glow_squid_spawn_egg", + "130": "minecraft:axolotl_spawn_egg" + } +} \ No newline at end of file diff --git a/src/pocketmine/resources/vanilla/legacy_block_ids.json b/src/pocketmine/resources/vanilla/legacy_block_ids.json new file mode 100644 index 00000000..156e9b7a --- /dev/null +++ b/src/pocketmine/resources/vanilla/legacy_block_ids.json @@ -0,0 +1,1102 @@ +{ + "minecraft:acacia_button": 395, + "minecraft:acacia_door": 196, + "minecraft:acacia_double_slab": 1067, + "minecraft:acacia_fence": 830, + "minecraft:acacia_fence_gate": 187, + "minecraft:acacia_hanging_sign": 759, + "minecraft:acacia_leaves": 161, + "minecraft:acacia_log": 162, + "minecraft:acacia_planks": 997, + "minecraft:acacia_pressure_plate": 405, + "minecraft:acacia_sapling": 1083, + "minecraft:acacia_slab": 1062, + "minecraft:acacia_stairs": 163, + "minecraft:acacia_standing_sign": 445, + "minecraft:acacia_trapdoor": 400, + "minecraft:acacia_wall_sign": 446, + "minecraft:acacia_wood": 1072, + "minecraft:activator_rail": 126, + "minecraft:air": 413, + "minecraft:allium": 1086, + "minecraft:allow": 210, + "minecraft:amethyst_block": 582, + "minecraft:amethyst_cluster": 584, + "minecraft:ancient_debris": 526, + "minecraft:andesite": 849, + "minecraft:andesite_stairs": 426, + "minecraft:anvil": 145, + "minecraft:azalea": 592, + "minecraft:azalea_leaves": 579, + "minecraft:azalea_leaves_flowered": 580, + "minecraft:azure_bluet": 1087, + "minecraft:bamboo": 418, + "minecraft:bamboo_block": 782, + "minecraft:bamboo_button": 766, + "minecraft:bamboo_door": 772, + "minecraft:bamboo_double_slab": 776, + "minecraft:bamboo_fence": 770, + "minecraft:bamboo_fence_gate": 771, + "minecraft:bamboo_hanging_sign": 777, + "minecraft:bamboo_mosaic": 764, + "minecraft:bamboo_mosaic_double_slab": 780, + "minecraft:bamboo_mosaic_slab": 779, + "minecraft:bamboo_mosaic_stairs": 778, + "minecraft:bamboo_planks": 765, + "minecraft:bamboo_pressure_plate": 769, + "minecraft:bamboo_sapling": 419, + "minecraft:bamboo_slab": 768, + "minecraft:bamboo_stairs": 767, + "minecraft:bamboo_standing_sign": 773, + "minecraft:bamboo_trapdoor": 775, + "minecraft:bamboo_wall_sign": 774, + "minecraft:barrel": 458, + "minecraft:barrier": 416, + "minecraft:basalt": 489, + "minecraft:beacon": 138, + "minecraft:bed": 26, + "minecraft:bedrock": 7, + "minecraft:bee_nest": 473, + "minecraft:beehive": 474, + "minecraft:beetroot": 244, + "minecraft:bell": 461, + "minecraft:big_dripleaf": 578, + "minecraft:birch_button": 396, + "minecraft:birch_door": 194, + "minecraft:birch_double_slab": 1065, + "minecraft:birch_fence": 831, + "minecraft:birch_fence_gate": 184, + "minecraft:birch_hanging_sign": 757, + "minecraft:birch_leaves": 1056, + "minecraft:birch_log": 825, + "minecraft:birch_planks": 995, + "minecraft:birch_pressure_plate": 406, + "minecraft:birch_sapling": 1081, + "minecraft:birch_slab": 1060, + "minecraft:birch_stairs": 135, + "minecraft:birch_standing_sign": 441, + "minecraft:birch_trapdoor": 401, + "minecraft:birch_wall_sign": 442, + "minecraft:birch_wood": 1070, + "minecraft:black_candle": 683, + "minecraft:black_candle_cake": 700, + "minecraft:black_carpet": 866, + "minecraft:black_concrete": 897, + "minecraft:black_concrete_powder": 978, + "minecraft:black_glazed_terracotta": 235, + "minecraft:black_shulker_box": 882, + "minecraft:black_stained_glass": 942, + "minecraft:black_stained_glass_pane": 912, + "minecraft:black_terracotta": 993, + "minecraft:black_wool": 809, + "minecraft:blackstone": 528, + "minecraft:blackstone_double_slab": 538, + "minecraft:blackstone_slab": 537, + "minecraft:blackstone_stairs": 531, + "minecraft:blackstone_wall": 532, + "minecraft:blast_furnace": 451, + "minecraft:blue_candle": 679, + "minecraft:blue_candle_cake": 696, + "minecraft:blue_carpet": 862, + "minecraft:blue_concrete": 893, + "minecraft:blue_concrete_powder": 974, + "minecraft:blue_glazed_terracotta": 231, + "minecraft:blue_ice": 266, + "minecraft:blue_orchid": 1085, + "minecraft:blue_shulker_box": 878, + "minecraft:blue_stained_glass": 938, + "minecraft:blue_stained_glass_pane": 908, + "minecraft:blue_terracotta": 989, + "minecraft:blue_wool": 818, + "minecraft:bone_block": 216, + "minecraft:bookshelf": 47, + "minecraft:border_block": 212, + "minecraft:brain_coral": 836, + "minecraft:brain_coral_block": 1104, + "minecraft:brain_coral_fan": 1095, + "minecraft:brewing_stand": 117, + "minecraft:brick_block": 45, + "minecraft:brick_slab": 1129, + "minecraft:brick_stairs": 108, + "minecraft:brown_candle": 680, + "minecraft:brown_candle_cake": 697, + "minecraft:brown_carpet": 863, + "minecraft:brown_concrete": 894, + "minecraft:brown_concrete_powder": 975, + "minecraft:brown_glazed_terracotta": 232, + "minecraft:brown_mushroom": 39, + "minecraft:brown_mushroom_block": 99, + "minecraft:brown_shulker_box": 879, + "minecraft:brown_stained_glass": 939, + "minecraft:brown_stained_glass_pane": 909, + "minecraft:brown_terracotta": 990, + "minecraft:brown_wool": 810, + "minecraft:bubble_column": 415, + "minecraft:bubble_coral": 837, + "minecraft:bubble_coral_block": 1105, + "minecraft:bubble_coral_fan": 1096, + "minecraft:budding_amethyst": 583, + "minecraft:cactus": 81, + "minecraft:cake": 92, + "minecraft:calcite": 581, + "minecraft:calibrated_sculk_sensor": 835, + "minecraft:camera": 242, + "minecraft:campfire": 464, + "minecraft:candle": 667, + "minecraft:candle_cake": 684, + "minecraft:carrots": 141, + "minecraft:cartography_table": 455, + "minecraft:carved_pumpkin": 410, + "minecraft:cauldron": 118, + "minecraft:cave_vines": 577, + "minecraft:cave_vines_body_with_berries": 630, + "minecraft:cave_vines_head_with_berries": 631, + "minecraft:chain": 541, + "minecraft:chain_command_block": 189, + "minecraft:chemical_heat": 192, + "minecraft:chemistry_table": 238, + "minecraft:cherry_button": 785, + "minecraft:cherry_door": 786, + "minecraft:cherry_double_slab": 795, + "minecraft:cherry_fence": 787, + "minecraft:cherry_fence_gate": 788, + "minecraft:cherry_hanging_sign": 789, + "minecraft:cherry_leaves": 803, + "minecraft:cherry_log": 791, + "minecraft:cherry_planks": 792, + "minecraft:cherry_pressure_plate": 793, + "minecraft:cherry_sapling": 802, + "minecraft:cherry_slab": 794, + "minecraft:cherry_stairs": 796, + "minecraft:cherry_standing_sign": 797, + "minecraft:cherry_trapdoor": 798, + "minecraft:cherry_wall_sign": 799, + "minecraft:cherry_wood": 801, + "minecraft:chest": 54, + "minecraft:chiseled_bookshelf": 781, + "minecraft:chiseled_copper": 1015, + "minecraft:chiseled_deepslate": 650, + "minecraft:chiseled_nether_bricks": 557, + "minecraft:chiseled_polished_blackstone": 534, + "minecraft:chiseled_tuff": 1008, + "minecraft:chiseled_tuff_bricks": 1014, + "minecraft:chorus_flower": 200, + "minecraft:chorus_plant": 240, + "minecraft:clay": 82, + "minecraft:client_request_placeholder_block": 720, + "minecraft:coal_block": 173, + "minecraft:coal_ore": 16, + "minecraft:cobbled_deepslate": 634, + "minecraft:cobbled_deepslate_double_slab": 651, + "minecraft:cobbled_deepslate_slab": 635, + "minecraft:cobbled_deepslate_stairs": 636, + "minecraft:cobbled_deepslate_wall": 637, + "minecraft:cobblestone": 4, + "minecraft:cobblestone_slab": 1128, + "minecraft:cobblestone_wall": 139, + "minecraft:cocoa": 127, + "minecraft:colored_torch_bp": 204, + "minecraft:colored_torch_rg": 202, + "minecraft:command_block": 137, + "minecraft:composter": 468, + "minecraft:conduit": 412, + "minecraft:copper_block": 595, + "minecraft:copper_bulb": 1031, + "minecraft:copper_door": 1039, + "minecraft:copper_grate": 1023, + "minecraft:copper_ore": 566, + "minecraft:copper_trapdoor": 1047, + "minecraft:coral_fan_hang": 390, + "minecraft:coral_fan_hang2": 391, + "minecraft:coral_fan_hang3": 392, + "minecraft:cornflower": 1093, + "minecraft:cracked_deepslate_bricks": 665, + "minecraft:cracked_deepslate_tiles": 664, + "minecraft:cracked_nether_bricks": 558, + "minecraft:cracked_polished_blackstone_bricks": 535, + "minecraft:crafter": 568, + "minecraft:crafting_table": 58, + "minecraft:crimson_button": 515, + "minecraft:crimson_door": 499, + "minecraft:crimson_double_slab": 521, + "minecraft:crimson_fence": 511, + "minecraft:crimson_fence_gate": 513, + "minecraft:crimson_fungus": 483, + "minecraft:crimson_hanging_sign": 761, + "minecraft:crimson_hyphae": 554, + "minecraft:crimson_nylium": 487, + "minecraft:crimson_planks": 497, + "minecraft:crimson_pressure_plate": 517, + "minecraft:crimson_roots": 478, + "minecraft:crimson_slab": 519, + "minecraft:crimson_stairs": 509, + "minecraft:crimson_standing_sign": 505, + "minecraft:crimson_stem": 480, + "minecraft:crimson_trapdoor": 501, + "minecraft:crimson_wall_sign": 507, + "minecraft:crying_obsidian": 544, + "minecraft:cut_copper": 602, + "minecraft:cut_copper_slab": 616, + "minecraft:cut_copper_stairs": 609, + "minecraft:cyan_candle": 677, + "minecraft:cyan_candle_cake": 694, + "minecraft:cyan_carpet": 860, + "minecraft:cyan_concrete": 891, + "minecraft:cyan_concrete_powder": 972, + "minecraft:cyan_glazed_terracotta": 229, + "minecraft:cyan_shulker_box": 876, + "minecraft:cyan_stained_glass": 936, + "minecraft:cyan_stained_glass_pane": 906, + "minecraft:cyan_terracotta": 987, + "minecraft:cyan_wool": 816, + "minecraft:dark_oak_button": 397, + "minecraft:dark_oak_door": 197, + "minecraft:dark_oak_double_slab": 1068, + "minecraft:dark_oak_fence": 832, + "minecraft:dark_oak_fence_gate": 186, + "minecraft:dark_oak_hanging_sign": 760, + "minecraft:dark_oak_leaves": 1058, + "minecraft:dark_oak_log": 827, + "minecraft:dark_oak_planks": 998, + "minecraft:dark_oak_pressure_plate": 407, + "minecraft:dark_oak_sapling": 1084, + "minecraft:dark_oak_slab": 1063, + "minecraft:dark_oak_stairs": 164, + "minecraft:dark_oak_trapdoor": 402, + "minecraft:dark_oak_wood": 1073, + "minecraft:dark_prismarine_stairs": 258, + "minecraft:darkoak_standing_sign": 447, + "minecraft:darkoak_wall_sign": 448, + "minecraft:daylight_detector": 151, + "minecraft:daylight_detector_inverted": 178, + "minecraft:dead_brain_coral": 841, + "minecraft:dead_brain_coral_block": 1109, + "minecraft:dead_brain_coral_fan": 1099, + "minecraft:dead_bubble_coral": 842, + "minecraft:dead_bubble_coral_block": 1110, + "minecraft:dead_bubble_coral_fan": 1100, + "minecraft:dead_fire_coral": 843, + "minecraft:dead_fire_coral_block": 1111, + "minecraft:dead_fire_coral_fan": 1101, + "minecraft:dead_horn_coral": 844, + "minecraft:dead_horn_coral_block": 1112, + "minecraft:dead_horn_coral_fan": 1102, + "minecraft:dead_tube_coral": 840, + "minecraft:dead_tube_coral_block": 1108, + "minecraft:dead_tube_coral_fan": 389, + "minecraft:deadbush": 32, + "minecraft:decorated_pot": 806, + "minecraft:deepslate": 633, + "minecraft:deepslate_brick_double_slab": 654, + "minecraft:deepslate_brick_slab": 647, + "minecraft:deepslate_brick_stairs": 648, + "minecraft:deepslate_brick_wall": 649, + "minecraft:deepslate_bricks": 646, + "minecraft:deepslate_coal_ore": 661, + "minecraft:deepslate_copper_ore": 663, + "minecraft:deepslate_diamond_ore": 660, + "minecraft:deepslate_emerald_ore": 662, + "minecraft:deepslate_gold_ore": 657, + "minecraft:deepslate_iron_ore": 656, + "minecraft:deepslate_lapis_ore": 655, + "minecraft:deepslate_redstone_ore": 658, + "minecraft:deepslate_tile_double_slab": 653, + "minecraft:deepslate_tile_slab": 643, + "minecraft:deepslate_tile_stairs": 644, + "minecraft:deepslate_tile_wall": 645, + "minecraft:deepslate_tiles": 642, + "minecraft:deny": 211, + "minecraft:detector_rail": 28, + "minecraft:diamond_block": 57, + "minecraft:diamond_ore": 56, + "minecraft:diorite": 847, + "minecraft:diorite_stairs": 425, + "minecraft:dirt": 3, + "minecraft:dirt_with_roots": 573, + "minecraft:dispenser": 23, + "minecraft:double_cut_copper_slab": 623, + "minecraft:double_stone_block_slab": 43, + "minecraft:double_stone_block_slab2": 181, + "minecraft:double_stone_block_slab3": 422, + "minecraft:double_stone_block_slab4": 423, + "minecraft:dragon_egg": 122, + "minecraft:dried_kelp_block": 394, + "minecraft:dripstone_block": 572, + "minecraft:dropper": 125, + "minecraft:element_0": 36, + "minecraft:element_1": 267, + "minecraft:element_10": 276, + "minecraft:element_100": 366, + "minecraft:element_101": 367, + "minecraft:element_102": 368, + "minecraft:element_103": 369, + "minecraft:element_104": 370, + "minecraft:element_105": 371, + "minecraft:element_106": 372, + "minecraft:element_107": 373, + "minecraft:element_108": 374, + "minecraft:element_109": 375, + "minecraft:element_11": 277, + "minecraft:element_110": 376, + "minecraft:element_111": 377, + "minecraft:element_112": 378, + "minecraft:element_113": 379, + "minecraft:element_114": 380, + "minecraft:element_115": 381, + "minecraft:element_116": 382, + "minecraft:element_117": 383, + "minecraft:element_118": 384, + "minecraft:element_12": 278, + "minecraft:element_13": 279, + "minecraft:element_14": 280, + "minecraft:element_15": 281, + "minecraft:element_16": 282, + "minecraft:element_17": 283, + "minecraft:element_18": 284, + "minecraft:element_19": 285, + "minecraft:element_2": 268, + "minecraft:element_20": 286, + "minecraft:element_21": 287, + "minecraft:element_22": 288, + "minecraft:element_23": 289, + "minecraft:element_24": 290, + "minecraft:element_25": 291, + "minecraft:element_26": 292, + "minecraft:element_27": 293, + "minecraft:element_28": 294, + "minecraft:element_29": 295, + "minecraft:element_3": 269, + "minecraft:element_30": 296, + "minecraft:element_31": 297, + "minecraft:element_32": 298, + "minecraft:element_33": 299, + "minecraft:element_34": 300, + "minecraft:element_35": 301, + "minecraft:element_36": 302, + "minecraft:element_37": 303, + "minecraft:element_38": 304, + "minecraft:element_39": 305, + "minecraft:element_4": 270, + "minecraft:element_40": 306, + "minecraft:element_41": 307, + "minecraft:element_42": 308, + "minecraft:element_43": 309, + "minecraft:element_44": 310, + "minecraft:element_45": 311, + "minecraft:element_46": 312, + "minecraft:element_47": 313, + "minecraft:element_48": 314, + "minecraft:element_49": 315, + "minecraft:element_5": 271, + "minecraft:element_50": 316, + "minecraft:element_51": 317, + "minecraft:element_52": 318, + "minecraft:element_53": 319, + "minecraft:element_54": 320, + "minecraft:element_55": 321, + "minecraft:element_56": 322, + "minecraft:element_57": 323, + "minecraft:element_58": 324, + "minecraft:element_59": 325, + "minecraft:element_6": 272, + "minecraft:element_60": 326, + "minecraft:element_61": 327, + "minecraft:element_62": 328, + "minecraft:element_63": 329, + "minecraft:element_64": 330, + "minecraft:element_65": 331, + "minecraft:element_66": 332, + "minecraft:element_67": 333, + "minecraft:element_68": 334, + "minecraft:element_69": 335, + "minecraft:element_7": 273, + "minecraft:element_70": 336, + "minecraft:element_71": 337, + "minecraft:element_72": 338, + "minecraft:element_73": 339, + "minecraft:element_74": 340, + "minecraft:element_75": 341, + "minecraft:element_76": 342, + "minecraft:element_77": 343, + "minecraft:element_78": 344, + "minecraft:element_79": 345, + "minecraft:element_8": 274, + "minecraft:element_80": 346, + "minecraft:element_81": 347, + "minecraft:element_82": 348, + "minecraft:element_83": 349, + "minecraft:element_84": 350, + "minecraft:element_85": 351, + "minecraft:element_86": 352, + "minecraft:element_87": 353, + "minecraft:element_88": 354, + "minecraft:element_89": 355, + "minecraft:element_9": 275, + "minecraft:element_90": 356, + "minecraft:element_91": 357, + "minecraft:element_92": 358, + "minecraft:element_93": 359, + "minecraft:element_94": 360, + "minecraft:element_95": 361, + "minecraft:element_96": 362, + "minecraft:element_97": 363, + "minecraft:element_98": 364, + "minecraft:element_99": 365, + "minecraft:emerald_block": 133, + "minecraft:emerald_ore": 129, + "minecraft:enchanting_table": 116, + "minecraft:end_brick_stairs": 433, + "minecraft:end_bricks": 206, + "minecraft:end_gateway": 209, + "minecraft:end_portal": 119, + "minecraft:end_portal_frame": 120, + "minecraft:end_rod": 208, + "minecraft:end_stone": 121, + "minecraft:ender_chest": 130, + "minecraft:exposed_chiseled_copper": 1016, + "minecraft:exposed_copper": 596, + "minecraft:exposed_copper_bulb": 1032, + "minecraft:exposed_copper_door": 1040, + "minecraft:exposed_copper_grate": 1024, + "minecraft:exposed_copper_trapdoor": 1048, + "minecraft:exposed_cut_copper": 603, + "minecraft:exposed_cut_copper_slab": 617, + "minecraft:exposed_cut_copper_stairs": 610, + "minecraft:exposed_double_cut_copper_slab": 624, + "minecraft:farmland": 60, + "minecraft:fence_gate": 107, + "minecraft:fern": 1103, + "minecraft:fire": 51, + "minecraft:fire_coral": 838, + "minecraft:fire_coral_block": 1106, + "minecraft:fire_coral_fan": 1097, + "minecraft:fletching_table": 456, + "minecraft:flower_pot": 140, + "minecraft:flowering_azalea": 593, + "minecraft:flowing_lava": 10, + "minecraft:flowing_water": 8, + "minecraft:frame": 199, + "minecraft:frog_spawn": 723, + "minecraft:frosted_ice": 207, + "minecraft:furnace": 61, + "minecraft:gilded_blackstone": 536, + "minecraft:glass": 20, + "minecraft:glass_pane": 102, + "minecraft:glow_frame": 594, + "minecraft:glow_lichen": 666, + "minecraft:glowingobsidian": 246, + "minecraft:glowstone": 89, + "minecraft:gold_block": 41, + "minecraft:gold_ore": 14, + "minecraft:golden_rail": 27, + "minecraft:granite": 845, + "minecraft:granite_stairs": 424, + "minecraft:grass_block": 2, + "minecraft:grass_path": 198, + "minecraft:gravel": 13, + "minecraft:gray_candle": 675, + "minecraft:gray_candle_cake": 692, + "minecraft:gray_carpet": 858, + "minecraft:gray_concrete": 889, + "minecraft:gray_concrete_powder": 970, + "minecraft:gray_glazed_terracotta": 227, + "minecraft:gray_shulker_box": 874, + "minecraft:gray_stained_glass": 934, + "minecraft:gray_stained_glass_pane": 904, + "minecraft:gray_terracotta": 985, + "minecraft:gray_wool": 808, + "minecraft:green_candle": 681, + "minecraft:green_candle_cake": 698, + "minecraft:green_carpet": 864, + "minecraft:green_concrete": 895, + "minecraft:green_concrete_powder": 976, + "minecraft:green_glazed_terracotta": 233, + "minecraft:green_shulker_box": 880, + "minecraft:green_stained_glass": 940, + "minecraft:green_stained_glass_pane": 910, + "minecraft:green_terracotta": 991, + "minecraft:green_wool": 815, + "minecraft:grindstone": 450, + "minecraft:hanging_roots": 574, + "minecraft:hard_black_stained_glass": 957, + "minecraft:hard_black_stained_glass_pane": 927, + "minecraft:hard_blue_stained_glass": 953, + "minecraft:hard_blue_stained_glass_pane": 923, + "minecraft:hard_brown_stained_glass": 954, + "minecraft:hard_brown_stained_glass_pane": 924, + "minecraft:hard_cyan_stained_glass": 951, + "minecraft:hard_cyan_stained_glass_pane": 921, + "minecraft:hard_glass": 253, + "minecraft:hard_glass_pane": 190, + "minecraft:hard_gray_stained_glass": 949, + "minecraft:hard_gray_stained_glass_pane": 919, + "minecraft:hard_green_stained_glass": 955, + "minecraft:hard_green_stained_glass_pane": 925, + "minecraft:hard_light_blue_stained_glass": 945, + "minecraft:hard_light_blue_stained_glass_pane": 915, + "minecraft:hard_light_gray_stained_glass": 950, + "minecraft:hard_light_gray_stained_glass_pane": 920, + "minecraft:hard_lime_stained_glass": 947, + "minecraft:hard_lime_stained_glass_pane": 917, + "minecraft:hard_magenta_stained_glass": 944, + "minecraft:hard_magenta_stained_glass_pane": 914, + "minecraft:hard_orange_stained_glass": 943, + "minecraft:hard_orange_stained_glass_pane": 913, + "minecraft:hard_pink_stained_glass": 948, + "minecraft:hard_pink_stained_glass_pane": 918, + "minecraft:hard_purple_stained_glass": 952, + "minecraft:hard_purple_stained_glass_pane": 922, + "minecraft:hard_red_stained_glass": 956, + "minecraft:hard_red_stained_glass_pane": 926, + "minecraft:hard_white_stained_glass": 254, + "minecraft:hard_white_stained_glass_pane": 191, + "minecraft:hard_yellow_stained_glass": 946, + "minecraft:hard_yellow_stained_glass_pane": 916, + "minecraft:hardened_clay": 172, + "minecraft:hay_block": 170, + "minecraft:heavy_core": 571, + "minecraft:heavy_weighted_pressure_plate": 148, + "minecraft:honey_block": 475, + "minecraft:honeycomb_block": 476, + "minecraft:hopper": 154, + "minecraft:horn_coral": 839, + "minecraft:horn_coral_block": 1107, + "minecraft:horn_coral_fan": 1098, + "minecraft:ice": 79, + "minecraft:infested_deepslate": 709, + "minecraft:info_update": 248, + "minecraft:info_update2": 249, + "minecraft:invisible_bedrock": 95, + "minecraft:iron_bars": 101, + "minecraft:iron_block": 42, + "minecraft:iron_door": 71, + "minecraft:iron_ore": 15, + "minecraft:iron_trapdoor": 167, + "minecraft:jigsaw": 466, + "minecraft:jukebox": 84, + "minecraft:jungle_button": 398, + "minecraft:jungle_door": 195, + "minecraft:jungle_double_slab": 1066, + "minecraft:jungle_fence": 833, + "minecraft:jungle_fence_gate": 185, + "minecraft:jungle_hanging_sign": 758, + "minecraft:jungle_leaves": 1057, + "minecraft:jungle_log": 826, + "minecraft:jungle_planks": 996, + "minecraft:jungle_pressure_plate": 408, + "minecraft:jungle_sapling": 1082, + "minecraft:jungle_slab": 1061, + "minecraft:jungle_stairs": 136, + "minecraft:jungle_standing_sign": 443, + "minecraft:jungle_trapdoor": 403, + "minecraft:jungle_wall_sign": 444, + "minecraft:jungle_wood": 1071, + "minecraft:kelp": 393, + "minecraft:ladder": 65, + "minecraft:lantern": 463, + "minecraft:lapis_block": 22, + "minecraft:lapis_ore": 21, + "minecraft:large_amethyst_bud": 585, + "minecraft:large_fern": 1120, + "minecraft:lava": 11, + "minecraft:lectern": 449, + "minecraft:lever": 69, + "minecraft:light_block": 470, + "minecraft:light_blue_candle": 671, + "minecraft:light_blue_candle_cake": 688, + "minecraft:light_blue_carpet": 854, + "minecraft:light_blue_concrete": 885, + "minecraft:light_blue_concrete_powder": 966, + "minecraft:light_blue_glazed_terracotta": 223, + "minecraft:light_blue_shulker_box": 870, + "minecraft:light_blue_stained_glass": 930, + "minecraft:light_blue_stained_glass_pane": 900, + "minecraft:light_blue_terracotta": 981, + "minecraft:light_blue_wool": 817, + "minecraft:light_gray_candle": 676, + "minecraft:light_gray_candle_cake": 693, + "minecraft:light_gray_carpet": 859, + "minecraft:light_gray_concrete": 890, + "minecraft:light_gray_concrete_powder": 971, + "minecraft:light_gray_shulker_box": 875, + "minecraft:light_gray_stained_glass": 935, + "minecraft:light_gray_stained_glass_pane": 905, + "minecraft:light_gray_terracotta": 986, + "minecraft:light_gray_wool": 807, + "minecraft:light_weighted_pressure_plate": 147, + "minecraft:lightning_rod": 567, + "minecraft:lilac": 1118, + "minecraft:lily_of_the_valley": 1094, + "minecraft:lime_candle": 673, + "minecraft:lime_candle_cake": 690, + "minecraft:lime_carpet": 856, + "minecraft:lime_concrete": 887, + "minecraft:lime_concrete_powder": 968, + "minecraft:lime_glazed_terracotta": 225, + "minecraft:lime_shulker_box": 872, + "minecraft:lime_stained_glass": 932, + "minecraft:lime_stained_glass_pane": 902, + "minecraft:lime_terracotta": 983, + "minecraft:lime_wool": 814, + "minecraft:lit_blast_furnace": 469, + "minecraft:lit_deepslate_redstone_ore": 659, + "minecraft:lit_furnace": 62, + "minecraft:lit_pumpkin": 91, + "minecraft:lit_redstone_lamp": 124, + "minecraft:lit_redstone_ore": 74, + "minecraft:lit_smoker": 454, + "minecraft:lodestone": 477, + "minecraft:loom": 459, + "minecraft:magenta_candle": 670, + "minecraft:magenta_candle_cake": 687, + "minecraft:magenta_carpet": 853, + "minecraft:magenta_concrete": 884, + "minecraft:magenta_concrete_powder": 965, + "minecraft:magenta_glazed_terracotta": 222, + "minecraft:magenta_shulker_box": 869, + "minecraft:magenta_stained_glass": 929, + "minecraft:magenta_stained_glass_pane": 899, + "minecraft:magenta_terracotta": 980, + "minecraft:magenta_wool": 820, + "minecraft:magma": 213, + "minecraft:mangrove_button": 742, + "minecraft:mangrove_door": 748, + "minecraft:mangrove_double_slab": 754, + "minecraft:mangrove_fence": 746, + "minecraft:mangrove_fence_gate": 747, + "minecraft:mangrove_hanging_sign": 763, + "minecraft:mangrove_leaves": 727, + "minecraft:mangrove_log": 739, + "minecraft:mangrove_planks": 741, + "minecraft:mangrove_pressure_plate": 745, + "minecraft:mangrove_propagule": 729, + "minecraft:mangrove_roots": 737, + "minecraft:mangrove_slab": 744, + "minecraft:mangrove_stairs": 743, + "minecraft:mangrove_standing_sign": 749, + "minecraft:mangrove_trapdoor": 751, + "minecraft:mangrove_wall_sign": 750, + "minecraft:mangrove_wood": 752, + "minecraft:medium_amethyst_bud": 586, + "minecraft:melon_block": 103, + "minecraft:melon_stem": 105, + "minecraft:mob_spawner": 52, + "minecraft:monster_egg": 97, + "minecraft:moss_block": 575, + "minecraft:moss_carpet": 590, + "minecraft:mossy_cobblestone": 48, + "minecraft:mossy_cobblestone_stairs": 434, + "minecraft:mossy_stone_brick_stairs": 430, + "minecraft:moving_block": 250, + "minecraft:mud": 728, + "minecraft:mud_brick_double_slab": 734, + "minecraft:mud_brick_slab": 733, + "minecraft:mud_brick_stairs": 735, + "minecraft:mud_brick_wall": 736, + "minecraft:mud_bricks": 730, + "minecraft:muddy_mangrove_roots": 738, + "minecraft:mycelium": 110, + "minecraft:nether_brick": 112, + "minecraft:nether_brick_fence": 113, + "minecraft:nether_brick_slab": 1132, + "minecraft:nether_brick_stairs": 114, + "minecraft:nether_gold_ore": 543, + "minecraft:nether_sprouts": 493, + "minecraft:nether_wart": 115, + "minecraft:nether_wart_block": 214, + "minecraft:netherite_block": 525, + "minecraft:netherrack": 87, + "minecraft:netherreactor": 247, + "minecraft:normal_stone_stairs": 435, + "minecraft:noteblock": 25, + "minecraft:oak_double_slab": 157, + "minecraft:oak_fence": 85, + "minecraft:oak_hanging_sign": 755, + "minecraft:oak_leaves": 18, + "minecraft:oak_log": 17, + "minecraft:oak_planks": 5, + "minecraft:oak_sapling": 6, + "minecraft:oak_slab": 158, + "minecraft:oak_stairs": 53, + "minecraft:oak_wood": 467, + "minecraft:observer": 251, + "minecraft:obsidian": 49, + "minecraft:ochre_froglight": 726, + "minecraft:orange_candle": 669, + "minecraft:orange_candle_cake": 686, + "minecraft:orange_carpet": 852, + "minecraft:orange_concrete": 883, + "minecraft:orange_concrete_powder": 964, + "minecraft:orange_glazed_terracotta": 221, + "minecraft:orange_shulker_box": 868, + "minecraft:orange_stained_glass": 928, + "minecraft:orange_stained_glass_pane": 898, + "minecraft:orange_terracotta": 979, + "minecraft:orange_tulip": 1089, + "minecraft:orange_wool": 812, + "minecraft:oxeye_daisy": 1092, + "minecraft:oxidized_chiseled_copper": 1018, + "minecraft:oxidized_copper": 598, + "minecraft:oxidized_copper_bulb": 1034, + "minecraft:oxidized_copper_door": 1042, + "minecraft:oxidized_copper_grate": 1026, + "minecraft:oxidized_copper_trapdoor": 1050, + "minecraft:oxidized_cut_copper": 605, + "minecraft:oxidized_cut_copper_slab": 619, + "minecraft:oxidized_cut_copper_stairs": 612, + "minecraft:oxidized_double_cut_copper_slab": 626, + "minecraft:packed_ice": 174, + "minecraft:packed_mud": 732, + "minecraft:pearlescent_froglight": 724, + "minecraft:peony": 1122, + "minecraft:petrified_oak_slab": 1157, + "minecraft:pink_candle": 674, + "minecraft:pink_candle_cake": 691, + "minecraft:pink_carpet": 857, + "minecraft:pink_concrete": 888, + "minecraft:pink_concrete_powder": 969, + "minecraft:pink_glazed_terracotta": 226, + "minecraft:pink_petals": 804, + "minecraft:pink_shulker_box": 873, + "minecraft:pink_stained_glass": 933, + "minecraft:pink_stained_glass_pane": 903, + "minecraft:pink_terracotta": 984, + "minecraft:pink_tulip": 1091, + "minecraft:pink_wool": 821, + "minecraft:piston": 33, + "minecraft:piston_arm_collision": 34, + "minecraft:pitcher_crop": 829, + "minecraft:pitcher_plant": 867, + "minecraft:podzol": 243, + "minecraft:pointed_dripstone": 563, + "minecraft:polished_andesite": 850, + "minecraft:polished_andesite_stairs": 429, + "minecraft:polished_basalt": 490, + "minecraft:polished_blackstone": 546, + "minecraft:polished_blackstone_brick_double_slab": 540, + "minecraft:polished_blackstone_brick_slab": 539, + "minecraft:polished_blackstone_brick_stairs": 530, + "minecraft:polished_blackstone_brick_wall": 533, + "minecraft:polished_blackstone_bricks": 529, + "minecraft:polished_blackstone_button": 551, + "minecraft:polished_blackstone_double_slab": 549, + "minecraft:polished_blackstone_pressure_plate": 550, + "minecraft:polished_blackstone_slab": 548, + "minecraft:polished_blackstone_stairs": 547, + "minecraft:polished_blackstone_wall": 552, + "minecraft:polished_deepslate": 638, + "minecraft:polished_deepslate_double_slab": 652, + "minecraft:polished_deepslate_slab": 639, + "minecraft:polished_deepslate_stairs": 640, + "minecraft:polished_deepslate_wall": 641, + "minecraft:polished_diorite": 848, + "minecraft:polished_diorite_stairs": 428, + "minecraft:polished_granite": 846, + "minecraft:polished_granite_stairs": 427, + "minecraft:polished_tuff": 1003, + "minecraft:polished_tuff_double_slab": 1005, + "minecraft:polished_tuff_slab": 1004, + "minecraft:polished_tuff_stairs": 1006, + "minecraft:polished_tuff_wall": 1007, + "minecraft:poppy": 38, + "minecraft:portal": 90, + "minecraft:potatoes": 142, + "minecraft:powder_snow": 561, + "minecraft:powered_comparator": 150, + "minecraft:powered_repeater": 94, + "minecraft:prismarine": 168, + "minecraft:prismarine_bricks_stairs": 259, + "minecraft:prismarine_stairs": 257, + "minecraft:pumpkin": 86, + "minecraft:pumpkin_stem": 104, + "minecraft:purple_candle": 678, + "minecraft:purple_candle_cake": 695, + "minecraft:purple_carpet": 861, + "minecraft:purple_concrete": 892, + "minecraft:purple_concrete_powder": 973, + "minecraft:purple_glazed_terracotta": 219, + "minecraft:purple_shulker_box": 877, + "minecraft:purple_stained_glass": 937, + "minecraft:purple_stained_glass_pane": 907, + "minecraft:purple_terracotta": 988, + "minecraft:purple_wool": 819, + "minecraft:purpur_block": 201, + "minecraft:purpur_stairs": 203, + "minecraft:quartz_block": 155, + "minecraft:quartz_bricks": 559, + "minecraft:quartz_ore": 153, + "minecraft:quartz_slab": 1131, + "minecraft:quartz_stairs": 156, + "minecraft:rail": 66, + "minecraft:raw_copper_block": 707, + "minecraft:raw_gold_block": 708, + "minecraft:raw_iron_block": 706, + "minecraft:red_candle": 682, + "minecraft:red_candle_cake": 699, + "minecraft:red_carpet": 865, + "minecraft:red_concrete": 896, + "minecraft:red_concrete_powder": 977, + "minecraft:red_glazed_terracotta": 234, + "minecraft:red_mushroom": 40, + "minecraft:red_mushroom_block": 100, + "minecraft:red_nether_brick": 215, + "minecraft:red_nether_brick_stairs": 439, + "minecraft:red_sandstone": 179, + "minecraft:red_sandstone_stairs": 180, + "minecraft:red_shulker_box": 881, + "minecraft:red_stained_glass": 941, + "minecraft:red_stained_glass_pane": 911, + "minecraft:red_terracotta": 992, + "minecraft:red_tulip": 1088, + "minecraft:red_wool": 811, + "minecraft:redstone_block": 152, + "minecraft:redstone_lamp": 123, + "minecraft:redstone_ore": 73, + "minecraft:redstone_torch": 76, + "minecraft:redstone_wire": 55, + "minecraft:reeds": 83, + "minecraft:reinforced_deepslate": 721, + "minecraft:repeating_command_block": 188, + "minecraft:reserved6": 255, + "minecraft:respawn_anchor": 527, + "minecraft:rose_bush": 1121, + "minecraft:sand": 12, + "minecraft:sandstone": 24, + "minecraft:sandstone_slab": 1127, + "minecraft:sandstone_stairs": 128, + "minecraft:scaffolding": 420, + "minecraft:sculk": 713, + "minecraft:sculk_catalyst": 715, + "minecraft:sculk_sensor": 562, + "minecraft:sculk_shrieker": 716, + "minecraft:sculk_vein": 714, + "minecraft:sea_lantern": 169, + "minecraft:sea_pickle": 411, + "minecraft:seagrass": 385, + "minecraft:short_grass": 31, + "minecraft:shroomlight": 485, + "minecraft:silver_glazed_terracotta": 228, + "minecraft:skull": 144, + "minecraft:slime": 165, + "minecraft:small_amethyst_bud": 587, + "minecraft:small_dripleaf_block": 591, + "minecraft:smithing_table": 457, + "minecraft:smoker": 453, + "minecraft:smooth_basalt": 632, + "minecraft:smooth_quartz_stairs": 440, + "minecraft:smooth_red_sandstone_stairs": 431, + "minecraft:smooth_sandstone_stairs": 432, + "minecraft:smooth_stone": 438, + "minecraft:smooth_stone_slab": 44, + "minecraft:sniffer_egg": 851, + "minecraft:snow": 80, + "minecraft:snow_layer": 78, + "minecraft:soul_campfire": 545, + "minecraft:soul_fire": 492, + "minecraft:soul_lantern": 524, + "minecraft:soul_sand": 88, + "minecraft:soul_soil": 491, + "minecraft:soul_torch": 523, + "minecraft:sponge": 19, + "minecraft:spore_blossom": 576, + "minecraft:spruce_button": 399, + "minecraft:spruce_door": 193, + "minecraft:spruce_double_slab": 1064, + "minecraft:spruce_fence": 834, + "minecraft:spruce_fence_gate": 183, + "minecraft:spruce_hanging_sign": 756, + "minecraft:spruce_leaves": 1055, + "minecraft:spruce_log": 824, + "minecraft:spruce_planks": 994, + "minecraft:spruce_pressure_plate": 409, + "minecraft:spruce_sapling": 1080, + "minecraft:spruce_slab": 1059, + "minecraft:spruce_stairs": 134, + "minecraft:spruce_standing_sign": 436, + "minecraft:spruce_trapdoor": 404, + "minecraft:spruce_wall_sign": 437, + "minecraft:spruce_wood": 1069, + "minecraft:standing_banner": 176, + "minecraft:standing_sign": 63, + "minecraft:sticky_piston": 29, + "minecraft:sticky_piston_arm_collision": 472, + "minecraft:stone": 1, + "minecraft:stone_block_slab2": 182, + "minecraft:stone_block_slab3": 417, + "minecraft:stone_block_slab4": 421, + "minecraft:stone_brick_slab": 1130, + "minecraft:stone_brick_stairs": 109, + "minecraft:stone_button": 77, + "minecraft:stone_pressure_plate": 70, + "minecraft:stone_stairs": 67, + "minecraft:stonebrick": 98, + "minecraft:stonecutter": 245, + "minecraft:stonecutter_block": 452, + "minecraft:stripped_acacia_log": 263, + "minecraft:stripped_acacia_wood": 1078, + "minecraft:stripped_bamboo_block": 783, + "minecraft:stripped_birch_log": 261, + "minecraft:stripped_birch_wood": 1076, + "minecraft:stripped_cherry_log": 790, + "minecraft:stripped_cherry_wood": 800, + "minecraft:stripped_crimson_hyphae": 555, + "minecraft:stripped_crimson_stem": 495, + "minecraft:stripped_dark_oak_log": 264, + "minecraft:stripped_dark_oak_wood": 1079, + "minecraft:stripped_jungle_log": 262, + "minecraft:stripped_jungle_wood": 1077, + "minecraft:stripped_mangrove_log": 740, + "minecraft:stripped_mangrove_wood": 753, + "minecraft:stripped_oak_log": 265, + "minecraft:stripped_oak_wood": 1074, + "minecraft:stripped_spruce_log": 260, + "minecraft:stripped_spruce_wood": 1075, + "minecraft:stripped_warped_hyphae": 556, + "minecraft:stripped_warped_stem": 496, + "minecraft:structure_block": 252, + "minecraft:structure_void": 217, + "minecraft:sunflower": 175, + "minecraft:suspicious_gravel": 828, + "minecraft:suspicious_sand": 784, + "minecraft:sweet_berry_bush": 462, + "minecraft:tall_grass": 1119, + "minecraft:target": 494, + "minecraft:tinted_glass": 589, + "minecraft:tnt": 46, + "minecraft:torch": 50, + "minecraft:torchflower": 823, + "minecraft:torchflower_crop": 822, + "minecraft:trapdoor": 96, + "minecraft:trapped_chest": 146, + "minecraft:trial_spawner": 570, + "minecraft:trip_wire": 132, + "minecraft:tripwire_hook": 131, + "minecraft:tube_coral": 386, + "minecraft:tube_coral_block": 387, + "minecraft:tube_coral_fan": 388, + "minecraft:tuff": 588, + "minecraft:tuff_brick_double_slab": 1011, + "minecraft:tuff_brick_slab": 1010, + "minecraft:tuff_brick_stairs": 1012, + "minecraft:tuff_brick_wall": 1013, + "minecraft:tuff_bricks": 1009, + "minecraft:tuff_double_slab": 1000, + "minecraft:tuff_slab": 999, + "minecraft:tuff_stairs": 1001, + "minecraft:tuff_wall": 1002, + "minecraft:turtle_egg": 414, + "minecraft:twisting_vines": 542, + "minecraft:underwater_torch": 239, + "minecraft:undyed_shulker_box": 205, + "minecraft:unknown": 560, + "minecraft:unlit_redstone_torch": 75, + "minecraft:unpowered_comparator": 149, + "minecraft:unpowered_repeater": 93, + "minecraft:vault": 569, + "minecraft:verdant_froglight": 725, + "minecraft:vine": 106, + "minecraft:wall_banner": 177, + "minecraft:wall_sign": 68, + "minecraft:warped_button": 516, + "minecraft:warped_door": 500, + "minecraft:warped_double_slab": 522, + "minecraft:warped_fence": 512, + "minecraft:warped_fence_gate": 514, + "minecraft:warped_fungus": 484, + "minecraft:warped_hanging_sign": 762, + "minecraft:warped_hyphae": 553, + "minecraft:warped_nylium": 488, + "minecraft:warped_planks": 498, + "minecraft:warped_pressure_plate": 518, + "minecraft:warped_roots": 479, + "minecraft:warped_slab": 520, + "minecraft:warped_stairs": 510, + "minecraft:warped_standing_sign": 506, + "minecraft:warped_stem": 481, + "minecraft:warped_trapdoor": 502, + "minecraft:warped_wall_sign": 508, + "minecraft:warped_wart_block": 482, + "minecraft:water": 9, + "minecraft:waterlily": 111, + "minecraft:waxed_chiseled_copper": 1019, + "minecraft:waxed_copper": 599, + "minecraft:waxed_copper_bulb": 1035, + "minecraft:waxed_copper_door": 1043, + "minecraft:waxed_copper_grate": 1027, + "minecraft:waxed_copper_trapdoor": 1051, + "minecraft:waxed_cut_copper": 606, + "minecraft:waxed_cut_copper_slab": 620, + "minecraft:waxed_cut_copper_stairs": 613, + "minecraft:waxed_double_cut_copper_slab": 627, + "minecraft:waxed_exposed_chiseled_copper": 1020, + "minecraft:waxed_exposed_copper": 600, + "minecraft:waxed_exposed_copper_bulb": 1036, + "minecraft:waxed_exposed_copper_door": 1044, + "minecraft:waxed_exposed_copper_grate": 1028, + "minecraft:waxed_exposed_copper_trapdoor": 1052, + "minecraft:waxed_exposed_cut_copper": 607, + "minecraft:waxed_exposed_cut_copper_slab": 621, + "minecraft:waxed_exposed_cut_copper_stairs": 614, + "minecraft:waxed_exposed_double_cut_copper_slab": 628, + "minecraft:waxed_oxidized_chiseled_copper": 1021, + "minecraft:waxed_oxidized_copper": 701, + "minecraft:waxed_oxidized_copper_bulb": 1038, + "minecraft:waxed_oxidized_copper_door": 1046, + "minecraft:waxed_oxidized_copper_grate": 1030, + "minecraft:waxed_oxidized_copper_trapdoor": 1054, + "minecraft:waxed_oxidized_cut_copper": 702, + "minecraft:waxed_oxidized_cut_copper_slab": 704, + "minecraft:waxed_oxidized_cut_copper_stairs": 703, + "minecraft:waxed_oxidized_double_cut_copper_slab": 705, + "minecraft:waxed_weathered_chiseled_copper": 1022, + "minecraft:waxed_weathered_copper": 601, + "minecraft:waxed_weathered_copper_bulb": 1037, + "minecraft:waxed_weathered_copper_door": 1045, + "minecraft:waxed_weathered_copper_grate": 1029, + "minecraft:waxed_weathered_copper_trapdoor": 1053, + "minecraft:waxed_weathered_cut_copper": 608, + "minecraft:waxed_weathered_cut_copper_slab": 622, + "minecraft:waxed_weathered_cut_copper_stairs": 615, + "minecraft:waxed_weathered_double_cut_copper_slab": 629, + "minecraft:weathered_chiseled_copper": 1017, + "minecraft:weathered_copper": 597, + "minecraft:weathered_copper_bulb": 1033, + "minecraft:weathered_copper_door": 1041, + "minecraft:weathered_copper_grate": 1025, + "minecraft:weathered_copper_trapdoor": 1049, + "minecraft:weathered_cut_copper": 604, + "minecraft:weathered_cut_copper_slab": 618, + "minecraft:weathered_cut_copper_stairs": 611, + "minecraft:weathered_double_cut_copper_slab": 625, + "minecraft:web": 30, + "minecraft:weeping_vines": 486, + "minecraft:wheat": 59, + "minecraft:white_candle": 668, + "minecraft:white_candle_cake": 685, + "minecraft:white_carpet": 171, + "minecraft:white_concrete": 236, + "minecraft:white_concrete_powder": 237, + "minecraft:white_glazed_terracotta": 220, + "minecraft:white_shulker_box": 218, + "minecraft:white_stained_glass": 241, + "minecraft:white_stained_glass_pane": 160, + "minecraft:white_terracotta": 159, + "minecraft:white_tulip": 1090, + "minecraft:white_wool": 35, + "minecraft:wither_rose": 471, + "minecraft:wooden_button": 143, + "minecraft:wooden_door": 64, + "minecraft:wooden_pressure_plate": 72, + "minecraft:yellow_candle": 672, + "minecraft:yellow_candle_cake": 689, + "minecraft:yellow_carpet": 855, + "minecraft:yellow_concrete": 886, + "minecraft:yellow_concrete_powder": 967, + "minecraft:yellow_flower": 37, + "minecraft:yellow_glazed_terracotta": 224, + "minecraft:yellow_shulker_box": 871, + "minecraft:yellow_stained_glass": 931, + "minecraft:yellow_stained_glass_pane": 901, + "minecraft:yellow_terracotta": 982, + "minecraft:yellow_wool": 813 +} \ No newline at end of file diff --git a/src/pocketmine/resources/vanilla/legacy_item_ids.json b/src/pocketmine/resources/vanilla/legacy_item_ids.json new file mode 100644 index 00000000..8fa031dc --- /dev/null +++ b/src/pocketmine/resources/vanilla/legacy_item_ids.json @@ -0,0 +1,501 @@ +{ + "minecraft:acacia_boat": 387, + "minecraft:acacia_chest_boat": 661, + "minecraft:acacia_door": 572, + "minecraft:acacia_sign": 595, + "minecraft:agent_spawn_egg": 497, + "minecraft:allay_spawn_egg": 650, + "minecraft:amethyst_shard": 643, + "minecraft:angler_pottery_sherd": 675, + "minecraft:apple": 257, + "minecraft:archer_pottery_sherd": 676, + "minecraft:armadillo_scute": 721, + "minecraft:armadillo_spawn_egg": 720, + "minecraft:armor_stand": 568, + "minecraft:arms_up_pottery_sherd": 677, + "minecraft:arrow": 307, + "minecraft:axolotl_bucket": 376, + "minecraft:axolotl_spawn_egg": 512, + "minecraft:baked_potato": 285, + "minecraft:balloon": 617, + "minecraft:bamboo_chest_raft": 673, + "minecraft:bamboo_raft": 672, + "minecraft:bamboo_sign": 671, + "minecraft:banner": 583, + "minecraft:banner_pattern": 756, + "minecraft:bat_spawn_egg": 462, + "minecraft:bed": 426, + "minecraft:bee_spawn_egg": 504, + "minecraft:beef": 277, + "minecraft:beetroot": 289, + "minecraft:beetroot_seeds": 299, + "minecraft:beetroot_soup": 290, + "minecraft:birch_boat": 384, + "minecraft:birch_chest_boat": 658, + "minecraft:birch_door": 570, + "minecraft:birch_sign": 593, + "minecraft:black_dye": 403, + "minecraft:blade_pottery_sherd": 678, + "minecraft:blaze_powder": 438, + "minecraft:blaze_rod": 431, + "minecraft:blaze_spawn_egg": 465, + "minecraft:bleach": 615, + "minecraft:blue_dye": 407, + "minecraft:boat": 754, + "minecraft:bogged_spawn_egg": 472, + "minecraft:bolt_armor_trim_smithing_template": 717, + "minecraft:bone": 423, + "minecraft:bone_meal": 419, + "minecraft:book": 395, + "minecraft:bordure_indented_banner_pattern": 602, + "minecraft:bow": 306, + "minecraft:bowl": 328, + "minecraft:bread": 265, + "minecraft:breeze_rod": 432, + "minecraft:breeze_spawn_egg": 511, + "minecraft:brewer_pottery_sherd": 679, + "minecraft:brewing_stand": 440, + "minecraft:brick": 391, + "minecraft:brown_dye": 406, + "minecraft:brush": 698, + "minecraft:bucket": 367, + "minecraft:burn_pottery_sherd": 680, + "minecraft:cake": 425, + "minecraft:camel_spawn_egg": 674, + "minecraft:camera": 612, + "minecraft:campfire": 607, + "minecraft:carpet": 726, + "minecraft:carrot": 283, + "minecraft:carrot_on_a_stick": 533, + "minecraft:cat_spawn_egg": 498, + "minecraft:cauldron": 441, + "minecraft:cave_spider_spawn_egg": 466, + "minecraft:chain": 638, + "minecraft:chainmail_boots": 349, + "minecraft:chainmail_chestplate": 347, + "minecraft:chainmail_helmet": 346, + "minecraft:chainmail_leggings": 348, + "minecraft:charcoal": 309, + "minecraft:cherry_boat": 668, + "minecraft:cherry_chest_boat": 669, + "minecraft:cherry_sign": 670, + "minecraft:chest_boat": 664, + "minecraft:chest_minecart": 397, + "minecraft:chicken": 279, + "minecraft:chicken_spawn_egg": 444, + "minecraft:chorus_fruit": 574, + "minecraft:clay_ball": 392, + "minecraft:clock": 401, + "minecraft:coal": 308, + "minecraft:coast_armor_trim_smithing_template": 702, + "minecraft:cocoa_beans": 420, + "minecraft:cod": 268, + "minecraft:cod_bucket": 371, + "minecraft:cod_spawn_egg": 490, + "minecraft:command_block_minecart": 579, + "minecraft:comparator": 538, + "minecraft:compass": 399, + "minecraft:compound": 613, + "minecraft:concrete": 743, + "minecraft:concrete_powder": 744, + "minecraft:cooked_beef": 278, + "minecraft:cooked_chicken": 280, + "minecraft:cooked_cod": 272, + "minecraft:cooked_mutton": 567, + "minecraft:cooked_porkchop": 267, + "minecraft:cooked_rabbit": 293, + "minecraft:cooked_salmon": 273, + "minecraft:cookie": 275, + "minecraft:copper_ingot": 520, + "minecraft:coral": 740, + "minecraft:coral_block": 729, + "minecraft:coral_fan": 730, + "minecraft:coral_fan_dead": 731, + "minecraft:cow_spawn_egg": 445, + "minecraft:creeper_banner_pattern": 598, + "minecraft:creeper_spawn_egg": 450, + "minecraft:crimson_door": 635, + "minecraft:crimson_sign": 633, + "minecraft:crossbow": 591, + "minecraft:cyan_dye": 409, + "minecraft:danger_pottery_sherd": 681, + "minecraft:dark_oak_boat": 388, + "minecraft:dark_oak_chest_boat": 662, + "minecraft:dark_oak_door": 573, + "minecraft:dark_oak_sign": 596, + "minecraft:diamond": 310, + "minecraft:diamond_axe": 325, + "minecraft:diamond_boots": 357, + "minecraft:diamond_chestplate": 355, + "minecraft:diamond_helmet": 354, + "minecraft:diamond_hoe": 339, + "minecraft:diamond_horse_armor": 549, + "minecraft:diamond_leggings": 356, + "minecraft:diamond_pickaxe": 324, + "minecraft:diamond_shovel": 323, + "minecraft:diamond_sword": 322, + "minecraft:disc_fragment_5": 656, + "minecraft:dolphin_spawn_egg": 494, + "minecraft:donkey_spawn_egg": 475, + "minecraft:double_plant": 738, + "minecraft:dragon_breath": 576, + "minecraft:dried_kelp": 274, + "minecraft:drowned_spawn_egg": 493, + "minecraft:dune_armor_trim_smithing_template": 701, + "minecraft:dye": 755, + "minecraft:echo_shard": 666, + "minecraft:egg": 398, + "minecraft:elder_guardian_spawn_egg": 481, + "minecraft:elytra": 580, + "minecraft:emerald": 528, + "minecraft:empty_map": 531, + "minecraft:enchanted_book": 537, + "minecraft:enchanted_golden_apple": 263, + "minecraft:end_crystal": 758, + "minecraft:ender_dragon_spawn_egg": 517, + "minecraft:ender_eye": 442, + "minecraft:ender_pearl": 430, + "minecraft:enderman_spawn_egg": 451, + "minecraft:endermite_spawn_egg": 469, + "minecraft:evoker_spawn_egg": 485, + "minecraft:experience_bottle": 524, + "minecraft:explorer_pottery_sherd": 682, + "minecraft:eye_armor_trim_smithing_template": 705, + "minecraft:feather": 334, + "minecraft:fence": 728, + "minecraft:fermented_spider_eye": 437, + "minecraft:field_masoned_banner_pattern": 601, + "minecraft:filled_map": 428, + "minecraft:fire_charge": 525, + "minecraft:firework_rocket": 535, + "minecraft:firework_star": 536, + "minecraft:fishing_rod": 400, + "minecraft:flint": 363, + "minecraft:flint_and_steel": 305, + "minecraft:flow_armor_trim_smithing_template": 716, + "minecraft:flow_banner_pattern": 605, + "minecraft:flow_pottery_sherd": 683, + "minecraft:flower_banner_pattern": 597, + "minecraft:flower_pot": 530, + "minecraft:fox_spawn_egg": 500, + "minecraft:frame": 529, + "minecraft:friend_pottery_sherd": 684, + "minecraft:frog_spawn_egg": 647, + "minecraft:ghast_spawn_egg": 463, + "minecraft:ghast_tear": 433, + "minecraft:glass_bottle": 436, + "minecraft:glistering_melon_slice": 443, + "minecraft:globe_banner_pattern": 604, + "minecraft:glow_berries": 759, + "minecraft:glow_frame": 642, + "minecraft:glow_ink_sac": 519, + "minecraft:glow_squid_spawn_egg": 514, + "minecraft:glow_stick": 620, + "minecraft:glowstone_dust": 402, + "minecraft:goat_horn": 646, + "minecraft:goat_spawn_egg": 513, + "minecraft:gold_ingot": 312, + "minecraft:gold_nugget": 434, + "minecraft:golden_apple": 262, + "minecraft:golden_axe": 332, + "minecraft:golden_boots": 361, + "minecraft:golden_carrot": 287, + "minecraft:golden_chestplate": 359, + "minecraft:golden_helmet": 358, + "minecraft:golden_hoe": 340, + "minecraft:golden_horse_armor": 548, + "minecraft:golden_leggings": 360, + "minecraft:golden_pickaxe": 331, + "minecraft:golden_shovel": 330, + "minecraft:golden_sword": 329, + "minecraft:gray_dye": 411, + "minecraft:green_dye": 405, + "minecraft:guardian_spawn_egg": 470, + "minecraft:gunpowder": 335, + "minecraft:guster_banner_pattern": 606, + "minecraft:guster_pottery_sherd": 685, + "minecraft:hard_stained_glass": 752, + "minecraft:hard_stained_glass_pane": 753, + "minecraft:heart_of_the_sea": 587, + "minecraft:heart_pottery_sherd": 686, + "minecraft:heartbreak_pottery_sherd": 687, + "minecraft:hoglin_spawn_egg": 506, + "minecraft:honey_bottle": 610, + "minecraft:honeycomb": 609, + "minecraft:hopper": 543, + "minecraft:hopper_minecart": 542, + "minecraft:horse_spawn_egg": 467, + "minecraft:host_armor_trim_smithing_template": 715, + "minecraft:howl_pottery_sherd": 688, + "minecraft:husk_spawn_egg": 473, + "minecraft:ice_bomb": 614, + "minecraft:ink_sac": 421, + "minecraft:iron_axe": 304, + "minecraft:iron_boots": 353, + "minecraft:iron_chestplate": 351, + "minecraft:iron_door": 379, + "minecraft:iron_golem_spawn_egg": 515, + "minecraft:iron_helmet": 350, + "minecraft:iron_hoe": 338, + "minecraft:iron_horse_armor": 547, + "minecraft:iron_ingot": 311, + "minecraft:iron_leggings": 352, + "minecraft:iron_nugget": 585, + "minecraft:iron_pickaxe": 303, + "minecraft:iron_shovel": 302, + "minecraft:iron_sword": 313, + "minecraft:jungle_boat": 385, + "minecraft:jungle_chest_boat": 659, + "minecraft:jungle_door": 571, + "minecraft:jungle_sign": 594, + "minecraft:kelp": 390, + "minecraft:lapis_lazuli": 422, + "minecraft:lava_bucket": 370, + "minecraft:lead": 563, + "minecraft:leather": 389, + "minecraft:leather_boots": 345, + "minecraft:leather_chestplate": 343, + "minecraft:leather_helmet": 342, + "minecraft:leather_horse_armor": 546, + "minecraft:leather_leggings": 344, + "minecraft:leaves": 733, + "minecraft:leaves2": 734, + "minecraft:light_blue_dye": 415, + "minecraft:light_gray_dye": 410, + "minecraft:lime_dye": 413, + "minecraft:lingering_potion": 578, + "minecraft:llama_spawn_egg": 483, + "minecraft:lodestone_compass": 621, + "minecraft:log": 727, + "minecraft:log2": 742, + "minecraft:mace": 326, + "minecraft:magenta_dye": 416, + "minecraft:magma_cream": 439, + "minecraft:magma_cube_spawn_egg": 464, + "minecraft:mangrove_boat": 654, + "minecraft:mangrove_chest_boat": 663, + "minecraft:mangrove_door": 652, + "minecraft:mangrove_sign": 653, + "minecraft:medicine": 618, + "minecraft:melon_seeds": 297, + "minecraft:melon_slice": 276, + "minecraft:milk_bucket": 368, + "minecraft:minecart": 377, + "minecraft:miner_pottery_sherd": 689, + "minecraft:mojang_banner_pattern": 600, + "minecraft:mooshroom_spawn_egg": 449, + "minecraft:mourner_pottery_sherd": 690, + "minecraft:mule_spawn_egg": 476, + "minecraft:mushroom_stew": 264, + "minecraft:music_disc_11": 560, + "minecraft:music_disc_13": 550, + "minecraft:music_disc_5": 655, + "minecraft:music_disc_blocks": 552, + "minecraft:music_disc_cat": 551, + "minecraft:music_disc_chirp": 553, + "minecraft:music_disc_creator": 749, + "minecraft:music_disc_creator_music_box": 750, + "minecraft:music_disc_far": 554, + "minecraft:music_disc_mall": 555, + "minecraft:music_disc_mellohi": 556, + "minecraft:music_disc_otherside": 645, + "minecraft:music_disc_pigstep": 639, + "minecraft:music_disc_precipice": 751, + "minecraft:music_disc_relic": 718, + "minecraft:music_disc_stal": 557, + "minecraft:music_disc_strad": 558, + "minecraft:music_disc_wait": 561, + "minecraft:music_disc_ward": 559, + "minecraft:mutton": 566, + "minecraft:name_tag": 564, + "minecraft:nautilus_shell": 586, + "minecraft:nether_sprouts": 640, + "minecraft:nether_star": 534, + "minecraft:nether_wart": 298, + "minecraft:netherbrick": 539, + "minecraft:netherite_axe": 625, + "minecraft:netherite_boots": 631, + "minecraft:netherite_chestplate": 629, + "minecraft:netherite_helmet": 628, + "minecraft:netherite_hoe": 626, + "minecraft:netherite_ingot": 627, + "minecraft:netherite_leggings": 630, + "minecraft:netherite_pickaxe": 624, + "minecraft:netherite_scrap": 632, + "minecraft:netherite_shovel": 623, + "minecraft:netherite_sword": 622, + "minecraft:netherite_upgrade_smithing_template": 699, + "minecraft:npc_spawn_egg": 480, + "minecraft:oak_boat": 383, + "minecraft:oak_chest_boat": 657, + "minecraft:oak_sign": 365, + "minecraft:ocelot_spawn_egg": 460, + "minecraft:ominous_bottle": 611, + "minecraft:ominous_trial_key": 258, + "minecraft:orange_dye": 417, + "minecraft:painting": 364, + "minecraft:panda_spawn_egg": 499, + "minecraft:paper": 394, + "minecraft:parrot_spawn_egg": 488, + "minecraft:phantom_membrane": 590, + "minecraft:phantom_spawn_egg": 496, + "minecraft:pig_spawn_egg": 446, + "minecraft:piglin_banner_pattern": 603, + "minecraft:piglin_brute_spawn_egg": 509, + "minecraft:piglin_spawn_egg": 507, + "minecraft:pillager_spawn_egg": 501, + "minecraft:pink_dye": 412, + "minecraft:pitcher_pod": 301, + "minecraft:planks": 739, + "minecraft:plenty_pottery_sherd": 691, + "minecraft:poisonous_potato": 286, + "minecraft:polar_bear_spawn_egg": 482, + "minecraft:popped_chorus_fruit": 575, + "minecraft:porkchop": 266, + "minecraft:potato": 284, + "minecraft:potion": 435, + "minecraft:powder_snow_bucket": 375, + "minecraft:prismarine_crystals": 565, + "minecraft:prismarine_shard": 581, + "minecraft:prize_pottery_sherd": 692, + "minecraft:pufferfish": 271, + "minecraft:pufferfish_bucket": 374, + "minecraft:pufferfish_spawn_egg": 491, + "minecraft:pumpkin_pie": 288, + "minecraft:pumpkin_seeds": 296, + "minecraft:purple_dye": 408, + "minecraft:quartz": 540, + "minecraft:rabbit": 292, + "minecraft:rabbit_foot": 544, + "minecraft:rabbit_hide": 545, + "minecraft:rabbit_spawn_egg": 468, + "minecraft:rabbit_stew": 294, + "minecraft:raiser_armor_trim_smithing_template": 713, + "minecraft:rapid_fertilizer": 616, + "minecraft:ravager_spawn_egg": 503, + "minecraft:raw_copper": 523, + "minecraft:raw_gold": 522, + "minecraft:raw_iron": 521, + "minecraft:recovery_compass": 665, + "minecraft:red_dye": 404, + "minecraft:red_flower": 737, + "minecraft:redstone": 380, + "minecraft:repeater": 427, + "minecraft:rib_armor_trim_smithing_template": 709, + "minecraft:rotten_flesh": 281, + "minecraft:saddle": 378, + "minecraft:salmon": 269, + "minecraft:salmon_bucket": 372, + "minecraft:salmon_spawn_egg": 492, + "minecraft:sapling": 732, + "minecraft:scrape_pottery_sherd": 693, + "minecraft:sentry_armor_trim_smithing_template": 700, + "minecraft:shaper_armor_trim_smithing_template": 714, + "minecraft:sheaf_pottery_sherd": 694, + "minecraft:shears": 429, + "minecraft:sheep_spawn_egg": 447, + "minecraft:shelter_pottery_sherd": 695, + "minecraft:shield": 362, + "minecraft:shulker_box": 747, + "minecraft:shulker_shell": 582, + "minecraft:shulker_spawn_egg": 479, + "minecraft:silence_armor_trim_smithing_template": 711, + "minecraft:silverfish_spawn_egg": 452, + "minecraft:skeleton_horse_spawn_egg": 477, + "minecraft:skeleton_spawn_egg": 453, + "minecraft:skull": 532, + "minecraft:skull_banner_pattern": 599, + "minecraft:skull_pottery_sherd": 696, + "minecraft:slime_ball": 396, + "minecraft:slime_spawn_egg": 454, + "minecraft:sniffer_spawn_egg": 510, + "minecraft:snort_pottery_sherd": 697, + "minecraft:snout_armor_trim_smithing_template": 708, + "minecraft:snow_golem_spawn_egg": 516, + "minecraft:snowball": 381, + "minecraft:soul_campfire": 641, + "minecraft:sparkler": 619, + "minecraft:spawn_egg": 757, + "minecraft:spider_eye": 282, + "minecraft:spider_spawn_egg": 455, + "minecraft:spire_armor_trim_smithing_template": 710, + "minecraft:splash_potion": 577, + "minecraft:spruce_boat": 386, + "minecraft:spruce_chest_boat": 660, + "minecraft:spruce_door": 569, + "minecraft:spruce_sign": 592, + "minecraft:spyglass": 644, + "minecraft:squid_spawn_egg": 459, + "minecraft:stained_glass": 745, + "minecraft:stained_glass_pane": 746, + "minecraft:stained_hardened_clay": 719, + "minecraft:stick": 327, + "minecraft:stone_axe": 321, + "minecraft:stone_block_slab": 736, + "minecraft:stone_hoe": 337, + "minecraft:stone_pickaxe": 320, + "minecraft:stone_shovel": 319, + "minecraft:stone_sword": 318, + "minecraft:stray_spawn_egg": 471, + "minecraft:strider_spawn_egg": 505, + "minecraft:string": 333, + "minecraft:sugar": 424, + "minecraft:sugar_cane": 393, + "minecraft:suspicious_stew": 608, + "minecraft:sweet_berries": 291, + "minecraft:tadpole_bucket": 649, + "minecraft:tadpole_spawn_egg": 648, + "minecraft:tallgrass": 741, + "minecraft:tide_armor_trim_smithing_template": 707, + "minecraft:tnt_minecart": 541, + "minecraft:torchflower_seeds": 300, + "minecraft:totem_of_undying": 584, + "minecraft:trader_llama_spawn_egg": 667, + "minecraft:trial_key": 259, + "minecraft:trident": 562, + "minecraft:tropical_fish": 270, + "minecraft:tropical_fish_bucket": 373, + "minecraft:tropical_fish_spawn_egg": 489, + "minecraft:turtle_helmet": 589, + "minecraft:turtle_scute": 588, + "minecraft:turtle_spawn_egg": 495, + "minecraft:vex_armor_trim_smithing_template": 706, + "minecraft:vex_spawn_egg": 486, + "minecraft:villager_spawn_egg": 458, + "minecraft:vindicator_spawn_egg": 484, + "minecraft:wandering_trader_spawn_egg": 502, + "minecraft:ward_armor_trim_smithing_template": 704, + "minecraft:warden_spawn_egg": 651, + "minecraft:warped_door": 636, + "minecraft:warped_fungus_on_a_stick": 637, + "minecraft:warped_sign": 634, + "minecraft:water_bucket": 369, + "minecraft:wayfinder_armor_trim_smithing_template": 712, + "minecraft:wheat": 341, + "minecraft:wheat_seeds": 295, + "minecraft:white_dye": 418, + "minecraft:wild_armor_trim_smithing_template": 703, + "minecraft:wind_charge": 260, + "minecraft:witch_spawn_egg": 461, + "minecraft:wither_skeleton_spawn_egg": 474, + "minecraft:wither_spawn_egg": 518, + "minecraft:wolf_armor": 722, + "minecraft:wolf_spawn_egg": 448, + "minecraft:wood": 748, + "minecraft:wooden_axe": 317, + "minecraft:wooden_door": 366, + "minecraft:wooden_hoe": 336, + "minecraft:wooden_pickaxe": 316, + "minecraft:wooden_shovel": 315, + "minecraft:wooden_slab": 735, + "minecraft:wooden_sword": 314, + "minecraft:wool": 725, + "minecraft:writable_book": 526, + "minecraft:written_book": 527, + "minecraft:yellow_dye": 414, + "minecraft:zoglin_spawn_egg": 508, + "minecraft:zombie_horse_spawn_egg": 478, + "minecraft:zombie_pigman_spawn_egg": 457, + "minecraft:zombie_spawn_egg": 456, + "minecraft:zombie_villager_spawn_egg": 487 +} \ No newline at end of file diff --git a/src/pocketmine/resources/vanilla/recipes.json b/src/pocketmine/resources/vanilla/recipes.json index 0647aad0..0512e8aa 100644 --- a/src/pocketmine/resources/vanilla/recipes.json +++ b/src/pocketmine/resources/vanilla/recipes.json @@ -1,49988 +1,70160 @@ { - "potion_container_change": [ + "version": 685, + "recipes": [ { - "ingredient": { - "id": 289 - }, - "input_item_id": 373, - "output_item_id": 438 - }, - { - "ingredient": { - "id": 437 - }, - "input_item_id": 438, - "output_item_id": 441 - } - ], - "potion_type": [ - { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 12 - }, - "output": { - "id": 373, - "damage": 13 - } + "type": 9, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 14 - }, - "output": { - "id": 373, - "damage": 15 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 17 - }, - "output": { - "id": 373, - "damage": 18 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 19 - }, - "output": { - "id": 373, - "damage": 20 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 25 - }, - "output": { - "id": 373, - "damage": 26 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 28 - }, - "output": { - "id": 373, - "damage": 29 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 31 - }, - "output": { - "id": 373, - "damage": 32 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 34 - }, - "output": { - "id": 373, - "damage": 35 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 37 - }, - "output": { - "id": 373, - "damage": 38 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 373, - "damage": 40 - }, - "output": { - "id": 373, - "damage": 41 - } + "type": 8, + "block": "smithing_table" }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:barrel", + "type": 1, "input": { - "id": 373, - "damage": 5 + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:wooden_slabs" + } }, - "output": { - "id": 373, - "damage": 6 - } + "output": [ + { + "legacyId": -203, + "id": "minecraft:barrel" + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "deprecated", + "priority": -1 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:barrel_from_crimson_slab", + "type": 1, "input": { - "id": 373, - "damage": 7 + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -264, + "auxValue": 32767 + } }, - "output": { - "id": 373, - "damage": 8 - } + "output": [ + { + "legacyId": -203, + "id": "minecraft:barrel" + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "deprecated", + "priority": 2 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:barrel_from_mangrove_slab", + "type": 1, "input": { - "id": 373, - "damage": 9 + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -489, + "auxValue": 32767 + } }, - "output": { - "id": 373, - "damage": 10 - } + "output": [ + { + "legacyId": -203, + "id": "minecraft:barrel" + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "deprecated", + "priority": 2 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:barrel_from_warped_slab", + "type": 1, "input": { - "id": 373 + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -265, + "auxValue": 32767 + } }, - "output": { - "id": 373, - "damage": 1 - } + "output": [ + { + "legacyId": -203, + "id": "minecraft:barrel" + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "deprecated", + "priority": 2 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:barrel_with_tag", + "type": 1, "input": { - "id": 438, - "damage": 12 + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:wooden_slabs" + } }, - "output": { - "id": 438, - "damage": 13 - } + "output": [ + { + "legacyId": -203, + "id": "minecraft:barrel" + } + ], + "shape": [ + "ABA", + "A A", + "ABA" + ], + "block": "deprecated", + "priority": -1 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 438, - "damage": 14 - }, - "output": { - "id": 438, - "damage": 15 - } + "id": "minecraft:cobweb_to_string", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": 333, + "id": "minecraft:string" + } + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_crimson_planks2", + "type": 1, "input": { - "id": 438, - "damage": 17 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 18 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_crimson_planks3", + "type": 1, "input": { - "id": 438, - "damage": 19 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 20 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_crimson_planks4", + "type": 1, "input": { - "id": 438, - "damage": 25 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 26 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_mangrove_planks2", + "type": 1, "input": { - "id": 438, - "damage": 28 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 29 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_mangrove_planks3", + "type": 1, "input": { - "id": 438, - "damage": 31 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 32 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_mangrove_planks4", + "type": 1, "input": { - "id": 438, - "damage": 34 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 35 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_warped_planks2", + "type": 1, "input": { - "id": 438, - "damage": 37 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 38 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_warped_planks3", + "type": 1, "input": { - "id": 438, - "damage": 40 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 41 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:grindstone_from_warped_planks4", + "type": 1, "input": { - "id": 438, - "damage": 5 + "A": { + "type": "default", + "count": 1, + "itemId": -195, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 6 - } + "output": [ + { + "legacyId": -195, + "id": "minecraft:grindstone" + } + ], + "shape": [ + "A" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, + "id": "minecraft:stripped_mangrove_wood", + "type": 1, "input": { - "id": 438, - "damage": 7 + "A": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 + } }, - "output": { - "id": 438, - "damage": 8 - } + "output": [ + { + "legacyId": -498, + "id": "minecraft:stripped_mangrove_wood", + "count": 3 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "deprecated", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 438, - "damage": 9 - }, - "output": { - "id": 438, - "damage": 10 - } + "type": 4, + "uuid": "442d85ed-8272-4543-a6f1-418f90ded05d" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 1 - } + "type": 4, + "uuid": "8b36268c-1829-483c-a0f1-993b7156a8f2" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 12 - }, - "output": { - "id": 441, - "damage": 13 - } + "type": 4, + "uuid": "602234e4-cac1-4353-8bb7-b1ebff70024b" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 14 - }, - "output": { - "id": 441, - "damage": 15 - } + "id": "minecraft:cartography_table_locator_map", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 399, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": 531, + "id": "minecraft:empty_map", + "damage": 2 + } + ], + "block": "cartography_table", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 17 - }, - "output": { - "id": 441, - "damage": 18 - } + "id": "minecraft:cartography_table_map", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": 531, + "id": "minecraft:empty_map" + } + ], + "block": "cartography_table", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 19 - }, - "output": { - "id": 441, - "damage": 20 - } + "type": 4, + "uuid": "98c84b38-1085-46bd-b1ce-dd38c159e6cc" }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 25 - }, - "output": { - "id": 441, - "damage": 26 - } + "id": "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -395, + "id": "minecraft:chiseled_deepslate" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 28 - }, - "output": { - "id": 441, - "damage": 29 - } + "id": "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -380, + "id": "minecraft:cobbled_deepslate_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 31 - }, - "output": { - "id": 441, - "damage": 32 - } + "id": "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -381, + "id": "minecraft:cobbled_deepslate_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 34 - }, - "output": { - "id": 441, - "damage": 35 - } + "id": "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -382, + "id": "minecraft:cobbled_deepslate_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 37 - }, - "output": { - "id": 441, - "damage": 38 - } + "id": "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -392, + "id": "minecraft:deepslate_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 40 - }, - "output": { - "id": 441, - "damage": 41 - } + "id": "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -392, + "id": "minecraft:deepslate_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 5 - }, - "output": { - "id": 441, - "damage": 6 - } + "id": "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -392, + "id": "minecraft:deepslate_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 7 - }, - "output": { - "id": 441, - "damage": 8 - } + "id": "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -393, + "id": "minecraft:deepslate_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441, - "damage": 9 - }, - "output": { - "id": 441, - "damage": 10 - } + "id": "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -393, + "id": "minecraft:deepslate_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 331 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 1 - } + "id": "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecut", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -393, + "id": "minecraft:deepslate_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 14 - }, - "output": { - "id": 373, - "damage": 16 - } + "id": "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -394, + "id": "minecraft:deepslate_brick_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 17 - }, - "output": { - "id": 373, - "damage": 42 - } + "id": "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -394, + "id": "minecraft:deepslate_brick_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 21 - }, - "output": { - "id": 373, - "damage": 22 - } + "id": "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -394, + "id": "minecraft:deepslate_brick_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 23 - }, - "output": { - "id": 373, - "damage": 24 - } + "id": "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 25 - }, - "output": { - "id": 373, - "damage": 27 - } - }, - { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 28 - }, - "output": { - "id": 373, - "damage": 30 - } + "id": "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -391, + "id": "minecraft:deepslate_bricks" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 31 - }, - "output": { - "id": 373, - "damage": 33 - } + "id": "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 37 - }, - "output": { - "id": 373, - "damage": 39 - } + "id": "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373, - "damage": 9 - }, - "output": { - "id": 373, - "damage": 11 - } + "id": "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -387, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 3 - } + "id": "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 14 - }, - "output": { - "id": 438, - "damage": 16 - } + "id": "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 17 - }, - "output": { - "id": 438, - "damage": 42 - } + "id": "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 21 - }, - "output": { - "id": 438, - "damage": 22 - } + "id": "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -387, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 23 - }, - "output": { - "id": 438, - "damage": 24 - } + "id": "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 25 - }, - "output": { - "id": 438, - "damage": 27 - } + "id": "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 28 - }, - "output": { - "id": 438, - "damage": 30 - } + "id": "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 31 - }, - "output": { - "id": 438, - "damage": 33 - } + "id": "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -387, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 37 - }, - "output": { - "id": 438, - "damage": 39 - } + "id": "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438, - "damage": 9 - }, - "output": { - "id": 438, - "damage": 11 - } + "id": "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 3 - } + "id": "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 14 - }, - "output": { - "id": 441, - "damage": 16 - } + "id": "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -387, + "id": "minecraft:deepslate_tiles" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 17 - }, - "output": { - "id": 441, - "damage": 42 - } + "id": "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -383, + "id": "minecraft:polished_deepslate" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 21 - }, - "output": { - "id": 441, - "damage": 22 - } + "id": "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecut", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -384, + "id": "minecraft:polished_deepslate_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 23 - }, - "output": { - "id": 441, - "damage": 24 - } + "id": "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -384, + "id": "minecraft:polished_deepslate_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 25 - }, - "output": { - "id": 441, - "damage": 27 - } + "id": "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -385, + "id": "minecraft:polished_deepslate_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 28 - }, - "output": { - "id": 441, - "damage": 30 - } + "id": "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -385, + "id": "minecraft:polished_deepslate_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 31 - }, - "output": { - "id": 441, - "damage": 33 - } + "id": "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecut", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -386, + "id": "minecraft:polished_deepslate_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 37 - }, - "output": { - "id": 441, - "damage": 39 - } + "id": "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecut", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -386, + "id": "minecraft:polished_deepslate_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441, - "damage": 9 - }, - "output": { - "id": 441, - "damage": 11 - } + "id": "minecraft:stonecutter_andesite_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 348 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 3 - } + "id": "minecraft:stonecutter_andesite_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -171, + "id": "minecraft:andesite_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 353 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 14 - } + "id": "minecraft:stonecutter_andesite_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 353 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 1 - } + "id": "minecraft:stonecutter_blackstone_slab_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -282, + "id": "minecraft:blackstone_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 353 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 14 - } + "id": "minecraft:stonecutter_blackstone_stairs_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -276, + "id": "minecraft:blackstone_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 353 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 1 - } + "id": "minecraft:stonecutter_blackstone_wall_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -277, + "id": "minecraft:blackstone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 353 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 14 - } + "id": "minecraft:stonecutter_brick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 45, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -874, + "id": "minecraft:brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 353 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 1 - } + "id": "minecraft:stonecutter_brick_slab_from_polished_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -284, + "id": "minecraft:polished_blackstone_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 370 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 28 - } + "id": "minecraft:stonecutter_brick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 45, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 108, + "id": "minecraft:brick_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 370 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 1 - } + "id": "minecraft:stonecutter_brick_stairs_from_polished_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -275, + "id": "minecraft:polished_blackstone_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 370 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 28 - } + "id": "minecraft:stonecutter_brick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 45, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 370 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 1 - } + "id": "minecraft:stonecutter_brick_wall_from_polished_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -278, + "id": "minecraft:polished_blackstone_brick_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 370 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 28 - } + "id": "minecraft:stonecutter_bricks_from_polished_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 370 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 1 - } + "id": "minecraft:stonecutter_chiseled_from_polished_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -279, + "id": "minecraft:chiseled_polished_blackstone" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 372 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 4 - } + "id": "minecraft:stonecutter_chiseled_nether_bricks_from_nether_brick", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 112, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -302, + "id": "minecraft:chiseled_nether_bricks" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 372 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 4 - } + "id": "minecraft:stonecutter_chiseled_polished_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -279, + "id": "minecraft:chiseled_polished_blackstone" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 372 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 4 - } + "id": "minecraft:stonecutter_cobbledouble_stone_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -873, + "id": "minecraft:cobblestone_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 375 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 25 - } + "id": "minecraft:stonecutter_cobblestone_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 67, + "id": "minecraft:stone_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 375 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 1 - } + "id": "minecraft:stonecutter_cobblestone_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 375 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 25 - } + "id": "minecraft:stonecutter_copper_block_to_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -760, + "id": "minecraft:chiseled_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 375 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 1 - } + "id": "minecraft:stonecutter_copper_block_to_copper_grate", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -768, + "id": "minecraft:copper_grate", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 375 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 25 - } + "id": "minecraft:stonecutter_copper_block_to_cut_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -347, + "id": "minecraft:cut_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 375 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 1 - } + "id": "minecraft:stonecutter_copper_block_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -361, + "id": "minecraft:cut_copper_slab", + "count": 8 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 10 - }, - "output": { - "id": 373, - "damage": 18 - } + "id": "minecraft:stonecutter_copper_block_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -354, + "id": "minecraft:cut_copper_stairs", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 14 - }, - "output": { - "id": 373, - "damage": 17 - } + "id": "minecraft:stonecutter_cut_copper_to_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -347, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -760, + "id": "minecraft:chiseled_copper" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 15 - }, - "output": { - "id": 373, - "damage": 18 - } + "id": "minecraft:stonecutter_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -347, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -361, + "id": "minecraft:cut_copper_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 1 - }, - "output": { - "id": 373, - "damage": 34 - } + "id": "minecraft:stonecutter_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -347, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -354, + "id": "minecraft:cut_copper_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 21 - }, - "output": { - "id": 373, - "damage": 23 - } + "id": "minecraft:stonecutter_dark_prismarine_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 1 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 22 - }, - "output": { - "id": 373, - "damage": 24 - } + "id": "minecraft:stonecutter_dark_prismarine_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 1 + } + ], + "output": [ + { + "legacyId": -3, + "id": "minecraft:dark_prismarine_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 25 - }, - "output": { - "id": 373, - "damage": 23 - } + "id": "minecraft:stonecutter_diorite_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 26 - }, - "output": { - "id": 373, - "damage": 23 - } + "id": "minecraft:stonecutter_diorite_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -170, + "id": "minecraft:diorite_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 27 - }, - "output": { - "id": 373, - "damage": 24 - } + "id": "minecraft:stonecutter_diorite_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 2 - }, - "output": { - "id": 373, - "damage": 35 - } + "id": "minecraft:stonecutter_double_stone_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -166, + "id": "minecraft:stone_block_slab4", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 5 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 31 - }, - "output": { - "id": 373, - "damage": 34 - } + "id": "minecraft:stonecutter_endbrick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 121, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 32 - }, - "output": { - "id": 373, - "damage": 35 - } + "id": "minecraft:stonecutter_endbrick_slab2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 206, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 33 - }, - "output": { - "id": 373, - "damage": 34 - } + "id": "minecraft:stonecutter_endbrick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 121, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -178, + "id": "minecraft:end_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 3 - }, - "output": { - "id": 373, - "damage": 34 - } + "id": "minecraft:stonecutter_endbrick_stairs2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 206, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -178, + "id": "minecraft:end_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 34 - } + "id": "minecraft:stonecutter_endbrick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 121, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 5 - }, - "output": { - "id": 373, - "damage": 7 - } + "id": "minecraft:stonecutter_endbrick_wall2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 206, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 6 - }, - "output": { - "id": 373, - "damage": 8 - } + "id": "minecraft:stonecutter_endbricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 121, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 206, + "id": "minecraft:end_bricks" + } + ], + "block": "stonecutter", + "priority": 3 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373, - "damage": 9 - }, - "output": { - "id": 373, - "damage": 17 - } + "id": "minecraft:stonecutter_exposed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 34 - } + "id": "minecraft:stonecutter_exposed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -355, + "id": "minecraft:exposed_cut_copper_stairs", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 10 - }, - "output": { - "id": 438, - "damage": 18 - } + "id": "minecraft:stonecutter_exposed_copper_to_exposed_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -761, + "id": "minecraft:exposed_chiseled_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 14 - }, - "output": { - "id": 438, - "damage": 17 - } + "id": "minecraft:stonecutter_exposed_copper_to_exposed_copper_grate", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -769, + "id": "minecraft:exposed_copper_grate", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 15 - }, - "output": { - "id": 438, - "damage": 18 - } + "id": "minecraft:stonecutter_exposed_copper_to_exposed_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -362, + "id": "minecraft:exposed_cut_copper_slab", + "count": 8 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 1 - }, - "output": { - "id": 438, - "damage": 34 - } + "id": "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -348, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -362, + "id": "minecraft:exposed_cut_copper_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 21 - }, - "output": { - "id": 438, - "damage": 23 - } + "id": "minecraft:stonecutter_exposed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -348, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -355, + "id": "minecraft:exposed_cut_copper_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 22 - }, - "output": { - "id": 438, - "damage": 24 - } - }, - { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 25 - }, - "output": { - "id": 438, - "damage": 23 - } + "id": "minecraft:stonecutter_exposed_cut_copper_to_exposed_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -348, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -761, + "id": "minecraft:exposed_chiseled_copper" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 26 - }, - "output": { - "id": 438, - "damage": 23 - } + "id": "minecraft:stonecutter_granite_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 27 - }, - "output": { - "id": 438, - "damage": 24 - } + "id": "minecraft:stonecutter_granite_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -169, + "id": "minecraft:granite_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 2 - }, - "output": { - "id": 438, - "damage": 35 - } + "id": "minecraft:stonecutter_granite_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 31 - }, - "output": { - "id": 438, - "damage": 34 - } + "id": "minecraft:stonecutter_mossy_cobbledouble_stone_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 48, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 32 - }, - "output": { - "id": 438, - "damage": 35 - } + "id": "minecraft:stonecutter_mossy_cobblestone_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 48, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -179, + "id": "minecraft:mossy_cobblestone_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 33 - }, - "output": { - "id": 438, - "damage": 34 - } + "id": "minecraft:stonecutter_mossy_cobblestone_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 48, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 3 - }, - "output": { - "id": 438, - "damage": 34 - } + "id": "minecraft:stonecutter_mossy_stonebrick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 1 + } + ], + "output": [ + { + "legacyId": -166, + "id": "minecraft:stone_block_slab4", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 34 - } + "id": "minecraft:stonecutter_mossy_stonebrick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 1 + } + ], + "output": [ + { + "legacyId": -175, + "id": "minecraft:mossy_stone_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 5 - }, - "output": { - "id": 438, - "damage": 7 - } + "id": "minecraft:stonecutter_mossy_stonebrick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 1 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 6 - }, - "output": { - "id": 438, - "damage": 8 - } + "id": "minecraft:stonecutter_mud_brick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -475, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -478, + "id": "minecraft:mud_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438, - "damage": 9 - }, - "output": { - "id": 438, - "damage": 17 - } + "id": "minecraft:stonecutter_mud_brick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -475, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -480, + "id": "minecraft:mud_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 34 - } + "id": "minecraft:stonecutter_mud_brick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -475, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -481, + "id": "minecraft:mud_brick_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 10 - }, - "output": { - "id": 441, - "damage": 18 - } + "id": "minecraft:stonecutter_nether_brick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 112, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -877, + "id": "minecraft:nether_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 14 - }, - "output": { - "id": 441, - "damage": 17 - } + "id": "minecraft:stonecutter_nether_brick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 112, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 114, + "id": "minecraft:nether_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 15 - }, - "output": { - "id": 441, - "damage": 18 - } + "id": "minecraft:stonecutter_nether_brick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 112, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 1 - }, - "output": { - "id": 441, - "damage": 34 - } + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 21 - }, - "output": { - "id": 441, - "damage": 23 - } + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -364, + "id": "minecraft:oxidized_cut_copper_slab", + "count": 8 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 22 - }, - "output": { - "id": 441, - "damage": 24 - } + "id": "minecraft:stonecutter_oxidized_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -357, + "id": "minecraft:oxidized_cut_copper_stairs", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 25 - }, - "output": { - "id": 441, - "damage": 23 - } + "id": "minecraft:stonecutter_oxidized_copper_to_oxidized_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -763, + "id": "minecraft:oxidized_chiseled_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 26 - }, - "output": { - "id": 441, - "damage": 23 - } + "id": "minecraft:stonecutter_oxidized_copper_to_oxidized_copper_grate", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -771, + "id": "minecraft:oxidized_copper_grate", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 27 - }, - "output": { - "id": 441, - "damage": 24 - } + "id": "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -350, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -364, + "id": "minecraft:oxidized_cut_copper_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 2 - }, - "output": { - "id": 441, - "damage": 35 - } + "id": "minecraft:stonecutter_oxidized_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -350, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -357, + "id": "minecraft:oxidized_cut_copper_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 31 - }, - "output": { - "id": 441, - "damage": 34 - } + "id": "minecraft:stonecutter_oxidized_cut_copper_to_oxidized_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -350, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -763, + "id": "minecraft:oxidized_chiseled_copper" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 32 - }, - "output": { - "id": 441, - "damage": 35 - } + "id": "minecraft:stonecutter_polished_andesite", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -595, + "id": "minecraft:polished_andesite" + } + ], + "block": "stonecutter", + "priority": 3 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 33 - }, - "output": { - "id": 441, - "damage": 34 - } + "id": "minecraft:stonecutter_polished_andesite_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 4 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 3 - }, - "output": { - "id": 441, - "damage": 34 - } + "id": "minecraft:stonecutter_polished_andesite_slab2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -595, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 34 - } + "id": "minecraft:stonecutter_polished_andesite_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -174, + "id": "minecraft:polished_andesite_stairs" + } + ], + "block": "stonecutter", + "priority": 5 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 5 - }, - "output": { - "id": 441, - "damage": 7 - } + "id": "minecraft:stonecutter_polished_andesite_stairs2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -595, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -174, + "id": "minecraft:polished_andesite_stairs" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 6 - }, - "output": { - "id": 441, - "damage": 8 - } + "id": "minecraft:stonecutter_polished_basalt_from_basalt", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -234, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -235, + "id": "minecraft:polished_basalt" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441, - "damage": 9 - }, - "output": { - "id": 441, - "damage": 17 - } + "id": "minecraft:stonecutter_polished_brick_slab_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -284, + "id": "minecraft:polished_blackstone_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 376 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 34 - } + "id": "minecraft:stonecutter_polished_brick_stairs_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -275, + "id": "minecraft:polished_blackstone_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 377 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 31 - } + "id": "minecraft:stonecutter_polished_brick_wall_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -278, + "id": "minecraft:polished_blackstone_brick_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 377 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 1 - } + "id": "minecraft:stonecutter_polished_bricks_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 377 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 31 - } + "id": "minecraft:stonecutter_polished_diorite", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -593, + "id": "minecraft:polished_diorite" + } + ], + "block": "stonecutter", + "priority": 3 }, { - "ingredient": { - "id": 377 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 1 - } + "id": "minecraft:stonecutter_polished_diorite_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_polished_diorite_slab2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -593, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_diorite_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -173, + "id": "minecraft:polished_diorite_stairs" + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_polished_diorite_stairs2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -593, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -173, + "id": "minecraft:polished_diorite_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_polished_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -291, + "id": "minecraft:polished_blackstone" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_granite", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -591, + "id": "minecraft:polished_granite" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_polished_granite_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_polished_granite_slab2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -591, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_granite_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -172, + "id": "minecraft:polished_granite_stairs" + } + ], + "block": "stonecutter", + "priority": 5 + }, + { + "id": "minecraft:stonecutter_polished_granite_stairs2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -591, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -172, + "id": "minecraft:polished_granite_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_polished_slab_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -293, + "id": "minecraft:polished_blackstone_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_stairs_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -292, + "id": "minecraft:polished_blackstone_stairs" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_polished_tuff_to_chiseled_tuff_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -759, + "id": "minecraft:chiseled_tuff_bricks" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_tuff_to_polished_tuff_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -749, + "id": "minecraft:polished_tuff_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_tuff_to_polished_tuff_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -751, + "id": "minecraft:polished_tuff_stairs" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_tuff_to_polished_tuff_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -752, + "id": "minecraft:polished_tuff_wall" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_tuff_to_tuff_brick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -755, + "id": "minecraft:tuff_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_tuff_to_tuff_brick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -757, + "id": "minecraft:tuff_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_tuff_to_tuff_brick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -758, + "id": "minecraft:tuff_brick_wall" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_tuff_to_tuff_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -754, + "id": "minecraft:tuff_bricks" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_polished_wall_from_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -297, + "id": "minecraft:polished_blackstone_wall" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_prismarine_brick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 2 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_prismarine_brick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 2 + } + ], + "output": [ + { + "legacyId": -4, + "id": "minecraft:prismarine_bricks_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_prismarine_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_prismarine_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -2, + "id": "minecraft:prismarine_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_prismarine_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_purpur_lines", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 201, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 201, + "id": "minecraft:purpur_block" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_purpur_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 201, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_purpur_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 201, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 203, + "id": "minecraft:purpur_stairs" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_bricks_from_quartz_block", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -304, + "id": "minecraft:quartz_bricks" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_chiseled", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_quartz_lines", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 155, + "id": "minecraft:quartz_block" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_quartz_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -876, + "id": "minecraft:quartz_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_quartz_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 156, + "id": "minecraft:quartz_stairs" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 215, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 215, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -184, + "id": "minecraft:red_nether_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_red_nether_brick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 215, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_red_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_red_sandstone_cut", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_red_sandstone_heiroglyphs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 179, + "id": "minecraft:red_sandstone" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_red_sandstone_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 180, + "id": "minecraft:red_sandstone_stairs" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_red_sandstone_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -872, + "id": "minecraft:sandstone_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_sandstone_cut", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 24, + "id": "minecraft:sandstone" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_sandstone_heiroglyphs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 24, + "id": "minecraft:sandstone" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_sandstone_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 128, + "id": "minecraft:sandstone_stairs" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_sandstone_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_slab_from_polished_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -293, + "id": "minecraft:polished_blackstone_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_slab_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -274, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -284, + "id": "minecraft:polished_blackstone_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_smooth_double_stone_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -183, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": 44, + "id": "minecraft:smooth_stone_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_quartz_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 3 + } + ], + "output": [ + { + "legacyId": -166, + "id": "minecraft:stone_block_slab4", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_quartz_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 3 + } + ], + "output": [ + { + "legacyId": -185, + "id": "minecraft:smooth_quartz_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_smooth_red_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 3 + } + ], + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_red_sandstone_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 3 + } + ], + "output": [ + { + "legacyId": -176, + "id": "minecraft:smooth_red_sandstone_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_smooth_sanddouble_stone_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 3 + } + ], + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_smooth_sandstone_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 3 + } + ], + "output": [ + { + "legacyId": -177, + "id": "minecraft:smooth_sandstone_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stairs_from_polished_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -292, + "id": "minecraft:polished_blackstone_stairs" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_stone_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -180, + "id": "minecraft:normal_stone_stairs" + } + ], + "block": "stonecutter", + "priority": 6 + }, + { + "id": "minecraft:stonecutter_stonebrick", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick" + } + ], + "block": "stonecutter", + "priority": 4 + }, + { + "id": "minecraft:stonecutter_stonebrick_chiseled", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 98, + "id": "minecraft:stonebrick" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_stonebrick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -875, + "id": "minecraft:stone_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stonebrick_slab2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -875, + "id": "minecraft:stone_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_stonebrick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 109, + "id": "minecraft:stone_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_stonebrick_stairs2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 109, + "id": "minecraft:stone_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_stonebrick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 3 + }, + { + "id": "minecraft:stonecutter_stonebrick_wall2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": 139, + "id": "minecraft:cobblestone_wall" + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_tuff_bricks_to_chiseled_tuff_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -754, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -759, + "id": "minecraft:chiseled_tuff_bricks" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_bricks_to_tuff_brick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -754, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -755, + "id": "minecraft:tuff_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_bricks_to_tuff_brick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -754, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -757, + "id": "minecraft:tuff_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_bricks_to_tuff_brick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -754, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -758, + "id": "minecraft:tuff_brick_wall" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_chiseled_tuff", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -753, + "id": "minecraft:chiseled_tuff" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_chiseled_tuff_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -759, + "id": "minecraft:chiseled_tuff_bricks" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_polished_tuff", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -748, + "id": "minecraft:polished_tuff" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_polished_tuff_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -749, + "id": "minecraft:polished_tuff_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_polished_tuff_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -751, + "id": "minecraft:polished_tuff_stairs" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_polished_tuff_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -752, + "id": "minecraft:polished_tuff_wall" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_tuff_brick_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -755, + "id": "minecraft:tuff_brick_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_tuff_brick_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -757, + "id": "minecraft:tuff_brick_stairs" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_tuff_brick_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -758, + "id": "minecraft:tuff_brick_wall" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_tuff_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -754, + "id": "minecraft:tuff_bricks" + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_tuff_to_tuff_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -744, + "id": "minecraft:tuff_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 377 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 31 - } + "id": "minecraft:stonecutter_tuff_to_tuff_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -746, + "id": "minecraft:tuff_stairs" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 377 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 1 - } + "id": "minecraft:stonecutter_tuff_to_tuff_wall", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -747, + "id": "minecraft:tuff_wall" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 378 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 12 - } + "id": "minecraft:stonecutter_wall_from_polished_blackstone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -297, + "id": "minecraft:polished_blackstone_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 378 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 1 - } + "id": "minecraft:stonecutter_wall_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -274, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -278, + "id": "minecraft:polished_blackstone_brick_wall" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 378 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 12 - } + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 378 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 1 - } + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -365, + "id": "minecraft:waxed_cut_copper_slab", + "count": 8 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 378 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 12 - } + "id": "minecraft:stonecutter_waxed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -358, + "id": "minecraft:waxed_cut_copper_stairs", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 378 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 1 - } + "id": "minecraft:stonecutter_waxed_copper_to_exposed_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -345, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -366, + "id": "minecraft:waxed_exposed_cut_copper_slab", + "count": 8 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 382 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 21 - } + "id": "minecraft:stonecutter_waxed_copper_to_waxed_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -764, + "id": "minecraft:waxed_chiseled_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 382 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 1 - } + "id": "minecraft:stonecutter_waxed_copper_to_waxed_copper_grate", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -772, + "id": "minecraft:waxed_copper_grate", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 382 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 21 - } + "id": "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -351, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -365, + "id": "minecraft:waxed_cut_copper_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 382 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 1 - } + "id": "minecraft:stonecutter_waxed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -351, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -358, + "id": "minecraft:waxed_cut_copper_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 382 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 21 - } + "id": "minecraft:stonecutter_waxed_cut_copper_to_waxed_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -351, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -764, + "id": "minecraft:waxed_chiseled_copper" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 382 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 1 - } + "id": "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -345, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 396 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 5 - } + "id": "minecraft:stonecutter_waxed_exposed_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -345, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -359, + "id": "minecraft:waxed_exposed_cut_copper_stairs", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 396 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 5 - } + "id": "minecraft:stonecutter_waxed_exposed_copper_to_waxed_exposed_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -345, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -765, + "id": "minecraft:waxed_exposed_chiseled_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 396 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 5 - } + "id": "minecraft:stonecutter_waxed_exposed_copper_to_waxed_exposed_copper_grate", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -345, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -773, + "id": "minecraft:waxed_exposed_copper_grate", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 414 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 9 - } + "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -352, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -366, + "id": "minecraft:waxed_exposed_cut_copper_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 414 - }, - "input": { - "id": 373 - }, - "output": { - "id": 373, - "damage": 1 - } + "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -352, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -359, + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 414 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 9 - } + "id": "minecraft:stonecutter_waxed_exposed_cut_copper_to_waxed_exposed_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -352, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -765, + "id": "minecraft:waxed_exposed_chiseled_copper" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 414 - }, - "input": { - "id": 438 - }, - "output": { - "id": 438, - "damage": 1 - } + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -446, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 414 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 9 - } + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -446, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -449, + "id": "minecraft:waxed_oxidized_cut_copper_slab", + "count": 8 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 414 - }, - "input": { - "id": 441 - }, - "output": { - "id": 441, - "damage": 1 - } + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -446, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -448, + "id": "minecraft:waxed_oxidized_cut_copper_stairs", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 462 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 19 - } + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_waxed_oxidized_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -446, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -766, + "id": "minecraft:waxed_oxidized_chiseled_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 462 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 19 - } + "id": "minecraft:stonecutter_waxed_oxidized_copper_to_waxed_oxidized_copper_grate", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -446, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -775, + "id": "minecraft:waxed_oxidized_copper_grate", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 462 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 19 - } + "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -447, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -449, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 469 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 37 - } + "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -447, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -448, + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 469 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 37 - } + "id": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_waxed_oxidized_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -447, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -766, + "id": "minecraft:waxed_oxidized_chiseled_copper" + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 469 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 37 - } + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -346, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 }, { - "ingredient": { - "id": 470 - }, - "input": { - "id": 373, - "damage": 4 - }, - "output": { - "id": 373, - "damage": 40 - } + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -346, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -367, + "id": "minecraft:waxed_weathered_cut_copper_slab", + "count": 8 + } + ], + "block": "stonecutter", + "priority": 1 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -346, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -360, + "id": "minecraft:waxed_weathered_cut_copper_stairs", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 2 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_waxed_weathered_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -346, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -767, + "id": "minecraft:waxed_weathered_chiseled_copper", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_copper_to_waxed_weathered_copper_grate", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -346, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -774, + "id": "minecraft:waxed_weathered_copper_grate", + "count": 4 + } + ], + "block": "stonecutter", + "priority": 0 + }, + { + "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -353, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -367, + "id": "minecraft:waxed_weathered_cut_copper_slab", + "count": 2 + } + ], + "block": "stonecutter", + "priority": 1 }, { - "ingredient": { - "id": 470 - }, - "input": { - "id": 438, - "damage": 4 - }, - "output": { - "id": 438, - "damage": 40 - } + "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -353, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -360, + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } + ], + "block": "stonecutter", + "priority": 2 }, { - "ingredient": { - "id": 470 - }, - "input": { - "id": 441, - "damage": 4 - }, - "output": { - "id": 441, - "damage": 40 - } - } - ], - "shaped": [ + "id": "minecraft:stonecutter_waxed_weathered_cut_copper_to_waxed_weathered_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -353, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -767, + "id": "minecraft:waxed_weathered_chiseled_copper" + } + ], + "block": "stonecutter", + "priority": 0 + }, { - "block": "crafting_table", - "input": { - "A": { - "id": -10, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -198 + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "count": 4 } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "stonecutter", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -10, - "damage": -1 + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 8, - "count": 3 + "legacyId": -363, + "id": "minecraft:weathered_cut_copper_slab", + "count": 8 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "stonecutter", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -10, - "damage": -1 + "id": "minecraft:stonecutter_weathered_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, + "legacyId": -356, + "id": "minecraft:weathered_cut_copper_stairs", "count": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "stonecutter", + "priority": 2 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -139, - "damage": -1 + "id": "minecraft:stonecutter_weathered_copper_to_weathered_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 464, - "count": 9 + "legacyId": -762, + "id": "minecraft:weathered_chiseled_copper", + "count": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "stonecutter", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -155, - "damage": -1 - }, - "B": { - "id": 50, - "damage": -1 + "id": "minecraft:stonecutter_weathered_copper_to_weathered_copper_grate", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 91 + "legacyId": -770, + "id": "minecraft:weathered_copper_grate", + "count": 4 } ], - "priority": 0, - "shape": [ - "A", - "B" - ] + "block": "stonecutter", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -163, - "damage": -1 - }, - "B": { - "id": 287, - "damage": -1 + "id": "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_slab", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -349, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -165, - "count": 6 + "legacyId": -363, + "id": "minecraft:weathered_cut_copper_slab", + "count": 2 } ], - "priority": 0, - "shape": [ - "ABA", - "A A", - "A A" - ] + "block": "stonecutter", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -163 + "id": "minecraft:stonecutter_weathered_cut_copper_to_cut_copper_stairs", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -349, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 280 + "legacyId": -356, + "id": "minecraft:weathered_cut_copper_stairs" } ], - "priority": 2, - "shape": [ - "A", - "A" - ] + "block": "stonecutter", + "priority": 2 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -183 + "id": "minecraft:stonecutter_weathered_cut_copper_to_weathered_chiseled_copper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -349, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 44, - "count": 6 + "legacyId": -762, + "id": "minecraft:weathered_chiseled_copper" } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "stonecutter", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -212, - "damage": 10 + "id": "stonecutter_stairs_from_polished_blackstone_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -274, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 2, - "count": 4 + "legacyId": -275, + "id": "minecraft:polished_blackstone_brick_stairs" } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "stonecutter", + "priority": 2 }, { - "block": "crafting_table", + "id": "ButtonAcacia_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 3, - "count": 4 + "legacyId": -140, + "id": "minecraft:acacia_button" } ], - "priority": 0, "shape": [ "A" - ] + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "ButtonBirch_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 4, - "count": 4 + "legacyId": -141, + "id": "minecraft:birch_button" } ], - "priority": 0, "shape": [ "A" - ] + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "ButtonDarkOak_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 5, - "count": 4 + "legacyId": -142, + "id": "minecraft:dark_oak_button" } ], - "priority": 0, "shape": [ "A" - ] + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "ButtonJungle_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 1, - "count": 4 + "legacyId": -143, + "id": "minecraft:jungle_button" } ], - "priority": 0, "shape": [ "A" - ] + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "ButtonSpruce_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 2, - "count": 4 + "legacyId": -144, + "id": "minecraft:spruce_button" } ], - "priority": 0, "shape": [ "A" - ] + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "Painting_Cobblestone_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 3, - "count": 4 + "legacyId": -873, + "id": "minecraft:cobblestone_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "A" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "Painting_NetherBrick_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 112, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 4, - "count": 4 + "legacyId": -877, + "id": "minecraft:nether_brick_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "A" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "Painting_VanillaBlocks_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 5, - "count": 4 + "legacyId": -872, + "id": "minecraft:sandstone_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "A" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "PressurePlateAcacia_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": 5, - "count": 4 + "legacyId": -150, + "id": "minecraft:acacia_pressure_plate" } ], - "priority": 0, "shape": [ - "A" - ] + "AA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "PressurePlateBirch_recipeId", + "type": 1, "input": { "A": { - "id": -212, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": 5, - "damage": 1, - "count": 4 + "legacyId": -151, + "id": "minecraft:birch_pressure_plate" } ], - "priority": 0, "shape": [ - "A" - ] + "AA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "PressurePlateDarkOak_recipeId", + "type": 1, "input": { "A": { - "id": -212 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": 5, - "count": 4 + "legacyId": -152, + "id": "minecraft:dark_oak_pressure_plate" } ], - "priority": 0, "shape": [ - "A" - ] + "AA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "PressurePlateJungle_recipeId", + "type": 1, "input": { "A": { - "id": -225, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": -198 + "legacyId": -153, + "id": "minecraft:jungle_pressure_plate" } ], - "priority": 2, "shape": [ - " A ", - "ABA", - " A " - ] + "AA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "PressurePlateSpruce_recipeId", + "type": 1, "input": { "A": { - "id": -225, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 } }, "output": [ { - "id": -242, - "count": 4 + "legacyId": -154, + "id": "minecraft:spruce_pressure_plate" } ], - "priority": 0, "shape": [ - "A" - ] + "AA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "Stick_bamboo_recipeId", + "type": 1, "input": { "A": { - "id": -225, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -163, + "auxValue": 0 } }, "output": [ { - "id": -299, - "count": 3 + "legacyId": 327, + "id": "minecraft:stick" } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "StoneSlab4_recipeId", + "type": 1, "input": { "A": { - "id": -226, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 } }, "output": [ { - "id": -198 + "legacyId": -166, + "id": "minecraft:stone_block_slab4", + "count": 6 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - " A " - ] + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "StoneSlab4_stoneBrick_recipeId", + "type": 1, "input": { "A": { - "id": -226, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 1 } }, "output": [ { - "id": -243, - "count": 4 + "legacyId": -166, + "id": "minecraft:stone_block_slab4", + "count": 6 } ], - "priority": 0, "shape": [ - "A" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "StoneSlab_Brick_recipeId", + "type": 1, "input": { "A": { - "id": -226, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 45, + "auxValue": 0 } }, "output": [ { - "id": -298, - "count": 3 + "legacyId": -874, + "id": "minecraft:brick_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "StoneSlab_StoneBrick_recipeId", + "type": 1, "input": { "A": { - "id": -234, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 0 } }, "output": [ { - "id": -235, - "count": 4 + "legacyId": -875, + "id": "minecraft:stone_brick_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "StoneSlab_recipeId", + "type": 1, "input": { "A": { - "id": -240, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -183, + "auxValue": 0 } }, "output": [ { - "id": -198 + "legacyId": 44, + "id": "minecraft:smooth_stone_slab", + "count": 6 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - " A " - ] + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "TrapdoorAcacia_recipeId", + "type": 1, "input": { "A": { - "id": -240, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": -242, - "count": 4 + "legacyId": -145, + "id": "minecraft:acacia_trapdoor", + "count": 2 } ], - "priority": 0, "shape": [ - "A" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "TrapdoorBirch_recipeId", + "type": 1, "input": { "A": { - "id": -240, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": -300, - "count": 3 + "legacyId": -146, + "id": "minecraft:birch_trapdoor", + "count": 2 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "TrapdoorDarkOak_recipeId", + "type": 1, "input": { "A": { - "id": -241, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": -198 + "legacyId": -147, + "id": "minecraft:dark_oak_trapdoor", + "count": 2 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - " A " - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "TrapdoorJungle_recipeId", + "type": 1, "input": { "A": { - "id": -241, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": -243, - "count": 4 + "legacyId": -148, + "id": "minecraft:jungle_trapdoor", + "count": 2 } ], - "priority": 0, "shape": [ - "A" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "TrapdoorSpruce_recipeId", + "type": 1, "input": { "A": { - "id": -241, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 } }, "output": [ { - "id": -301, - "count": 3 + "legacyId": -149, + "id": "minecraft:spruce_trapdoor", + "count": 2 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "Trapdoor_recipeId", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 264, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 } }, "output": [ { - "id": 84 + "legacyId": 96, + "id": "minecraft:trapdoor", + "count": 2 } ], - "priority": 2, "shape": [ "AAA", - "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "WoodButton_recipeId", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 } }, "output": [ { - "id": 513 + "legacyId": 143, + "id": "minecraft:wooden_button" } ], - "priority": 2, "shape": [ - "ABA", - "AAA", - " A " - ] + "A" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "WoodPressurePlate_recipeId", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 } }, "output": [ { - "id": -256, - "count": 3 + "legacyId": 72, + "id": "minecraft:wooden_pressure_plate" } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "AA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "acacia_stairs_acacia_recipeId", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": 268 + "legacyId": 163, + "id": "minecraft:acacia_stairs", + "count": 4 } ], - "priority": 2, "shape": [ - "A", - "A", - "B" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "type": 4, + "uuid": "d81aaeaf-e172-4440-9225-868df030d27b" + }, + { + "type": 4, + "uuid": "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" + }, + { + "type": 4, + "uuid": "00000000-0000-0000-0000-000000000002" + }, + { + "id": "bed_color_0", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 269 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, "shape": [ - "A", - "B", - "B" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_1", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 270 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 2, "shape": [ "AAA", - " B ", - " B " - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_10", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 271 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 2, "shape": [ - "AA", - "AB", - " B" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_11", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 290 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 2, "shape": [ - "AA ", - " B ", - " B " - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_12", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 753, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, "shape": [ "AAA", - "AAA", - " B " - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_13", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 }, "B": { - "id": 331, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 25 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 2, "shape": [ "AAA", - "ABA", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_14", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 }, "B": { - "id": 340, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 47 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 2, "shape": [ "AAA", - "BBB", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_15", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 }, "B": { - "id": 4, - "damage": -1 - }, - "C": { - "id": 265, - "damage": -1 - }, - "D": { - "id": 331, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 33, - "damage": 1 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 2, "shape": [ "AAA", - "BCB", - "BDB" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_16", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 }, "B": { - "id": 736, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": -219 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, "shape": [ "AAA", - "BBB", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_17", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": -246, - "count": 2 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, "shape": [ "AAA", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_18", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": -254, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_19", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": -260 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, "shape": [ - "A" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_2", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": -262 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, "shape": [ - "AA" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_3", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": -264, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, "shape": [ - "AAA" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_4", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 280, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 2, "shape": [ - "A", - "A" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_5", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 281, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 2, "shape": [ - "A A", - " A " - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_6", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 54 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 2, "shape": [ "AAA", - "A A", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_7", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 58 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 2, "shape": [ - "AA", - "AA" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_8", + "type": 1, "input": { "A": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 755, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, "shape": [ - "AA", - "AA", - "AA" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_9", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 }, "B": { - "id": 264, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 84 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 2, "shape": [ "AAA", - "ABA", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_0", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 }, "B": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 513 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 2, "shape": [ - "ABA", "AAA", - " A " - ] + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_1", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -257, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_10", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 268 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 2, "shape": [ - "A", - "A", - "B" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_11", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 269 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 2, "shape": [ - "A", - "B", - "B" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_12", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 270 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 2, "shape": [ "AAA", - " B ", - " B " - ] + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_13", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 271 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 2, "shape": [ - "AA", - "AB", - " B" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_14", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 290 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 2, "shape": [ - "AA ", - " B ", - " B " - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_15", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 754, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, "shape": [ "AAA", - "AAA", - " B " - ] + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_2", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 }, "B": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 25 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 2, "shape": [ "AAA", - "ABA", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_3", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 }, "B": { - "id": 340, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 47 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 2, "shape": [ "AAA", - "BBB", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_4", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 }, "B": { - "id": 4, - "damage": -1 - }, - "C": { - "id": 265, - "damage": -1 - }, - "D": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 33, - "damage": 1 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 2, "shape": [ "AAA", - "BCB", - "BDB" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_5", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 }, "B": { - "id": 736, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -219 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 2, "shape": [ "AAA", - "BBB", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_6", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -247, - "count": 2 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, "shape": [ "AAA", - "AAA" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_7", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -255, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_8", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -261 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 0, "shape": [ - "A" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "bed_color_bamboo_9", + "type": 1, "input": { "A": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -263 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 0, "shape": [ - "AA" - ] + "AAA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -243, - "damage": -1 + "id": "bed_dye_0_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -265, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -243, - "damage": -1 + "id": "bed_dye_0_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 280, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "A", - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -243, - "damage": -1 + "id": "bed_dye_0_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 281, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "A A", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -243, - "damage": -1 + "id": "bed_dye_0_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 54 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "AAA", - "A A", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -243, - "damage": -1 + "id": "bed_dye_0_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 58 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -243, - "damage": -1 + "id": "bed_dye_0_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 756, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "AA", - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -264, - "damage": -1 + "id": "bed_dye_0_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": 47, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -194 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "AAA", - " B ", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -264, - "damage": -1 + "id": "bed_dye_0_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -213 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "A A", - "A A", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -265, - "damage": -1 + "id": "bed_dye_0_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "B": { - "id": 47, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -194 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "AAA", - " B ", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -265, - "damage": -1 + "id": "bed_dye_0_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -213 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "A A", - "A A", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -270, - "damage": -1 + "id": "bed_dye_0_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 742, - "count": 9 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_0_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 272 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "A", - "A", - "B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_0_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 273 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "A", - "B", - "B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_0_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 274 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "AAA", - " B ", - " B " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_0_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 275 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 2, - "shape": [ - "AA", - "AB", - " B" - ] + "block": "crafting_table", + "priority": 50 }, { + "id": "bed_dye_10_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 + } + ], "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "priority": 50 + }, + { + "id": "bed_dye_10_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 291 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 2, - "shape": [ - "AA", - " B", - " B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_10_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -276, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_10_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -277, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_10_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -282, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_10_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -291, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -273, - "damage": -1 + "id": "bed_dye_10_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 61 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 2, - "shape": [ - "AAA", - "A A", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -274, - "damage": -1 + "id": "bed_dye_10_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -275, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -274, - "damage": -1 + "id": "bed_dye_10_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -278, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -274, - "damage": -1 + "id": "bed_dye_10_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -284, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -289, - "damage": -1 + "id": "bed_dye_10_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 89, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -272 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AAA", - "BBB", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -291, - "damage": -1 + "id": "bed_dye_10_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -274, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -291, - "damage": -1 + "id": "bed_dye_10_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -292, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -291, - "damage": -1 + "id": "bed_dye_10_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -293, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -291, - "damage": -1 + "id": "bed_dye_10_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -295 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 5 } ], - "priority": 0, - "shape": [ - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -291, - "damage": -1 + "id": "bed_dye_11_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -296 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -291, - "damage": -1 + "id": "bed_dye_11_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -297, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -293, - "damage": -1 + "id": "bed_dye_11_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -279 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "A", - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -298, - "damage": -1 + "id": "bed_dye_11_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -243, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -299, - "damage": -1 + "id": "bed_dye_11_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -242, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -300, - "damage": -1 + "id": "bed_dye_11_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -242, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -301, - "damage": -1 + "id": "bed_dye_11_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -243, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -5, - "damage": -1 + "id": "bed_dye_11_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "B": { - "id": 61, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -198 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -5, - "damage": -1 + "id": "bed_dye_11_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 9, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -5, - "damage": -1 + "id": "bed_dye_11_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 1, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -6, - "damage": -1 + "id": "bed_dye_11_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 61, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -198 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -6, - "damage": -1 + "id": "bed_dye_11_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 10, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -6, - "damage": -1 + "id": "bed_dye_11_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 2, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -7, - "damage": -1 + "id": "bed_dye_11_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 61, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -198 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -7, - "damage": -1 + "id": "bed_dye_11_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 11, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 4 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -7, - "damage": -1 + "id": "bed_dye_12_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 3, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -8, - "damage": -1 + "id": "bed_dye_12_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 61, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -198 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -8, - "damage": -1 + "id": "bed_dye_12_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 12, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -8, - "damage": -1 + "id": "bed_dye_12_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 4, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -9, - "damage": -1 + "id": "bed_dye_12_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 61, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -198 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -9, - "damage": -1 + "id": "bed_dye_12_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 13, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": -9, - "damage": -1 + "id": "bed_dye_12_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 5, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 1 + "id": "bed_dye_12_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -162, - "damage": 6, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 1 + "id": "bed_dye_12_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -169, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 1 + "id": "bed_dye_12_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 1, - "damage": 2, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 1 + "id": "bed_dye_12_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 139, - "damage": 2, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 2 + "id": "bed_dye_12_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -162, - "damage": 7, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 2 + "id": "bed_dye_12_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -172, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 3 + "id": "bed_dye_12_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -162, - "damage": 4, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 3 + "id": "bed_dye_12_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -170, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 3 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 3 + "id": "bed_dye_13_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 1, - "damage": 4, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 3 + "id": "bed_dye_13_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 139, - "damage": 3, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 4 + "id": "bed_dye_13_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -162, - "damage": 5, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 4 + "id": "bed_dye_13_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -173, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 5 + "id": "bed_dye_13_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -162, - "damage": 3, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 5 + "id": "bed_dye_13_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -171, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 5 + "id": "bed_dye_13_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 1, - "damage": 6, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 5 + "id": "bed_dye_13_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 139, - "damage": 4, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 6 + "id": "bed_dye_13_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -162, - "damage": 2, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1, - "damage": 6 + "id": "bed_dye_13_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -174, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_13_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 351, - "damage": 10 + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 5, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_13_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 351, - "damage": 11 + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 4, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_13_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 }, - "B": { - "id": 351, - "damage": 12 + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 3, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_13_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 351, - "damage": 13 + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 2, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_13_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 351, - "damage": 14 + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 1, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 351, - "damage": 16 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 15, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 351, - "damage": 17 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 12, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 }, - "B": { - "id": 351, - "damage": 18 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 11, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 }, - "B": { - "id": 351, - "damage": 19 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "B": { - "id": 351, - "damage": 1 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 14, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 351, - "damage": 2 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 13, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": 351, - "damage": 5 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 10, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "B": { - "id": 351, - "damage": 6 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 9, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "B": { - "id": 351, - "damage": 7 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 8, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 }, - "B": { - "id": 351, - "damage": 8 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 7, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 102, - "damage": -1 + "id": "bed_dye_14_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 351, - "damage": 9 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 6, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 112, - "damage": -1 + "id": "bed_dye_14_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 405, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 113, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "ABA", - "ABA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 112, - "damage": -1 + "id": "bed_dye_14_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 114, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 112, - "damage": -1 + "id": "bed_dye_14_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 + }, + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 139, - "damage": 9, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 112 + "id": "bed_dye_14_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 + }, + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 44, - "damage": 7, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 1 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 12, - "damage": 1 + "id": "bed_dye_15_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 179 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 121, - "damage": -1 + "id": "bed_dye_15_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 206, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 12 + "id": "bed_dye_15_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 24 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 133, - "damage": -1 + "id": "bed_dye_15_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 388, - "count": 9 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 152, - "damage": -1 + "id": "bed_dye_15_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 331, - "count": 9 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 155, - "damage": 3 + "id": "bed_dye_15_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -166, - "damage": 1, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 155, - "damage": 3 + "id": "bed_dye_15_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -185, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 155 + "id": "bed_dye_15_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -304 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 155 + "id": "bed_dye_15_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 155, - "damage": 2, - "count": 2 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "A", - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 155 + "id": "bed_dye_15_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 156, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 155 + "id": "bed_dye_15_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 44, - "damage": 6, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 158, - "damage": -1 + "id": "bed_dye_15_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 47, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -194 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AAA", - " B ", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 158, - "damage": -1 + "id": "bed_dye_15_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -213 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "A A", - "A A", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 162, - "damage": -1 + "id": "bed_dye_15_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 61, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -198 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 162, - "damage": 1 + "id": "bed_dye_15_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 5, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 162, - "damage": 1 + "id": "bed_dye_16_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 5, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 162 + "id": "bed_dye_16_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 4, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 162 + "id": "bed_dye_16_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 4, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "A" - ] - }, - { "block": "crafting_table", - "input": { - "A": { - "id": 165, - "damage": -1 + "priority": 50 + }, + { + "id": "bed_dye_16_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 341, - "count": 9 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 168, - "damage": 1 + "id": "bed_dye_16_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -3, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 168, - "damage": 1 + "id": "bed_dye_16_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 182, - "damage": 3, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 168, - "damage": 2 + "id": "bed_dye_16_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -4, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 168, - "damage": 2 + "id": "bed_dye_16_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 182, - "damage": 4, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 168 + "id": "bed_dye_16_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -2, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 168 + "id": "bed_dye_16_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 139, - "damage": 11, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 168 + "id": "bed_dye_16_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 182, - "damage": 2, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17, - "damage": -1 + "id": "bed_dye_16_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 61, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -198 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17, - "damage": 1 + "id": "bed_dye_16_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 1, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17, - "damage": 1 + "id": "bed_dye_16_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 1, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17, - "damage": 2 + "id": "bed_dye_16_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 + }, + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 2, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 15 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17, - "damage": 2 + "id": "bed_dye_17_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 2, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17, - "damage": 3 + "id": "bed_dye_17_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "damage": 3, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17, - "damage": 3 + "id": "bed_dye_17_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "damage": 3, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 170, - "damage": -1 + "id": "bed_dye_17_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 296, - "count": 9 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "B": { - "id": 351, - "damage": 10 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 5, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 351, - "damage": 11 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 4, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "B": { - "id": 351, - "damage": 12 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 3, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": 351, - "damage": 13 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 2, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "B": { - "id": 351, - "damage": 14 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 1, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 }, - "B": { - "id": 351, - "damage": 16 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 15, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 351, - "damage": 17 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 12, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 351, - "damage": 18 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 11, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 }, - "B": { - "id": 351, - "damage": 1 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 14, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 351, - "damage": 2 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 13, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_17_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 351, - "damage": 5 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 10, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_18_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 351, - "damage": 6 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 9, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_18_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 351, - "damage": 7 - } - }, - "output": [ { - "id": 171, - "damage": 8, - "count": 8 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "output": [ + { + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 + } + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_18_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 }, - "B": { - "id": 351, - "damage": 8 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 7, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 171 + "id": "bed_dye_18_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 }, - "B": { - "id": 351, - "damage": 9 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 6, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "B": { - "id": 351, - "damage": 10 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 5, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 351, - "damage": 11 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 4, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "B": { - "id": 351, - "damage": 12 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 3, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": 351, - "damage": 13 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 2, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "B": { - "id": 351, - "damage": 14 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 1, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "B": { - "id": 351, - "damage": 15 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 351, - "damage": 16 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 15, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 351, - "damage": 17 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 12, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 }, - "B": { - "id": 351, - "damage": 18 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 11, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 351, - "damage": 19 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_18_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 351, - "damage": 1 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 14, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 351, - "damage": 2 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 13, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 351, - "damage": 3 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 12, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 }, - "B": { - "id": 351, - "damage": 4 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 11, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 }, - "B": { - "id": 351, - "damage": 5 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 10, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "B": { - "id": 351, - "damage": 6 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 9, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 351, - "damage": 7 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 8, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "B": { - "id": 351, - "damage": 8 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 7, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "B": { - "id": 351, - "damage": 9 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 6, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 172, - "damage": -1 + "id": "bed_dye_19_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "B": { - "id": 351 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 159, - "damage": 15, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 173, - "damage": -1 + "id": "bed_dye_19_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 263, - "count": 9 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 174, - "damage": -1 + "id": "bed_dye_19_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -11 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "AAA", - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 179, - "damage": 1 + "id": "bed_dye_19_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 182, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 179, - "damage": 2 + "id": "bed_dye_19_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -166, - "damage": 4, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 179, - "damage": 3 + "id": "bed_dye_19_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -162, - "damage": 1, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 179, - "damage": 3 + "id": "bed_dye_19_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -176, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed" } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 179 + "id": "bed_dye_1_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ - { - "id": 139, - "damage": 12, - "count": 6 + { + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 179 + "id": "bed_dye_1_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 179, - "damage": 2, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 179 + "id": "bed_dye_1_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 180, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 179 + "id": "bed_dye_1_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 182, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17 + "id": "bed_dye_1_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -212, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 17 + "id": "bed_dye_1_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 5, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 182, - "damage": 1 + "id": "bed_dye_1_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 201, - "damage": 2 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 50, - "shape": [ - "A", - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 182 + "id": "bed_dye_1_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 179, - "damage": 1 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 50, - "shape": [ - "A", - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1 + "id": "bed_dye_1_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -166, - "damage": 2, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1 + "id": "bed_dye_1_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -180, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1 + "id": "bed_dye_1_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 70 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1 + "id": "bed_dye_1_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 77 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 1 + "id": "bed_dye_1_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 98, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_1_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 351, - "damage": 10 + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 5, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_1_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 351, - "damage": 11 + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 4, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 14 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 351, - "damage": 12 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 3, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 351, - "damage": 13 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 2, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 }, - "B": { - "id": 351, - "damage": 14 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 1, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 }, - "B": { - "id": 351, - "damage": 15 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "B": { - "id": 351, - "damage": 16 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 15, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 351, - "damage": 17 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 12, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "B": { - "id": 351, - "damage": 18 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 11, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": 351, - "damage": 19 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "B": { - "id": 351, - "damage": 1 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 14, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 }, - "B": { - "id": 351, - "damage": 2 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 13, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 351, - "damage": 3 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 12, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 351, - "damage": 4 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 11, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 }, - "B": { - "id": 351, - "damage": 5 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 10, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 351, - "damage": 6 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 9, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_2_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 351, - "damage": 7 + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 8, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 13 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_3_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 351, - "damage": 8 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 7, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_3_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 351, - "damage": 9 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 6, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_3_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 }, - "B": { - "id": 351 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 241, - "damage": 15, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 1, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 381, - "damage": -1 + "id": "bed_dye_3_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 }, - "C": { - "id": 370, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 426 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "ACA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 399, - "damage": -1 + "id": "bed_dye_3_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "C": { - "id": 49, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 138 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 406, - "damage": -1 + "id": "bed_dye_3_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "C": { - "id": -264, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 151 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 2, - "shape": [ - "AAA", - "BBB", - "CCC" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 406, - "damage": -1 + "id": "bed_dye_3_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "C": { - "id": -265, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 151 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 2, - "shape": [ - "AAA", - "BBB", - "CCC" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_3_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 102, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20, - "damage": -1 + "id": "bed_dye_3_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 374, - "count": 3 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "A A", - " A " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 201, - "damage": -1 + "id": "bed_dye_3_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 203, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 201 + "id": "bed_dye_3_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 182, - "damage": 1, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 206, - "damage": -1 + "id": "bed_dye_3_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -178, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 206, - "damage": -1 + "id": "bed_dye_3_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 139, - "damage": 10, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 206 + "id": "bed_dye_3_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -162, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 20 - }, - "B": { - "id": 406, - "damage": -1 + "id": "bed_dye_3_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "C": { - "id": 158, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 151 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 12 } ], - "priority": 0, - "shape": [ - "AAA", - "BBB", - "CCC" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 215, - "damage": -1 + "id": "bed_dye_4_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -184, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 215, - "damage": -1 + "id": "bed_dye_4_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 139, - "damage": 13, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 215 + "id": "bed_dye_4_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 182, - "damage": 7, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 22, - "damage": -1 + "id": "bed_dye_4_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 351, - "damage": 4, - "count": 9 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 24, - "damage": 1 + "id": "bed_dye_4_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 44, - "damage": 1, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 24, - "damage": 2 + "id": "bed_dye_4_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -166, - "damage": 3, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 24, - "damage": 3 + "id": "bed_dye_4_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -177, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 24, - "damage": 3 + "id": "bed_dye_4_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 182, - "damage": 6, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 10 + "id": "bed_dye_4_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 10, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 11 + "id": "bed_dye_4_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 11, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 12 + "id": "bed_dye_4_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 12, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 13 + "id": "bed_dye_4_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 13, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 14 + "id": "bed_dye_4_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 14, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 15 + "id": "bed_dye_4_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 15, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 1 + "id": "bed_dye_4_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 1, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 11 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 2 + "id": "bed_dye_5_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 2, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 3 + "id": "bed_dye_5_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 3, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 4 + "id": "bed_dye_5_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 4, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 5 + "id": "bed_dye_5_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 5, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 6 + "id": "bed_dye_5_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 6, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 7 + "id": "bed_dye_5_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 7, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 8 + "id": "bed_dye_5_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 8, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241, - "damage": 9 + "id": "bed_dye_5_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "damage": 9, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 241 + "id": "bed_dye_5_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 160, - "count": 16 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 24 + "id": "bed_dye_5_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 128, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "A ", - "AA ", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 24 + "id": "bed_dye_5_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 139, - "damage": 5, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 24 + "id": "bed_dye_5_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 24, - "damage": 2, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 24 + "id": "bed_dye_5_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 44, - "damage": 1, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 50, - "shape": [ - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_5_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 441, - "damage": 10 + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 11, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_5_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 441, - "damage": 11 + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 12, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 10 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 441, - "damage": 12 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 13, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 441, - "damage": 13 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 14, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 }, - "B": { - "id": 441, - "damage": 14 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 15, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 }, - "B": { - "id": 441, - "damage": 15 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 16, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "B": { - "id": 441, - "damage": 16 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 17, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 441, - "damage": 17 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 18, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "B": { - "id": 441, - "damage": 18 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 19, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": 441, - "damage": 19 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 20, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "B": { - "id": 441, - "damage": 20 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 21, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "B": { - "id": 441, - "damage": 21 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 22, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 }, - "B": { - "id": 441, - "damage": 22 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 23, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 441, - "damage": 23 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 24, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 }, - "B": { - "id": 441, - "damage": 24 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 25, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 441, - "damage": 25 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 26, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_6_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 441, - "damage": 26 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 27, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 9 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 441, - "damage": 27 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 28, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 441, - "damage": 28 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 29, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 }, - "B": { - "id": 441, - "damage": 29 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 30, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 }, - "B": { - "id": 441, - "damage": 30 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 31, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "B": { - "id": 441, - "damage": 31 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 32, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 441, - "damage": 32 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 33, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "B": { - "id": 441, - "damage": 33 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 34, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": 441, - "damage": 34 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 35, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "B": { - "id": 441, - "damage": 35 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 36, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "B": { - "id": 441, - "damage": 36 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 37, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 }, - "B": { - "id": 441, - "damage": 37 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 38, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 441, - "damage": 38 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 39, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 441, - "damage": 39 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 40, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 441, - "damage": 40 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 41, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_7_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 441, - "damage": 41 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 42, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 8 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_8_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 441, - "damage": 42 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 43, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_8_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 }, - "B": { - "id": 441, - "damage": 5 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 6, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_8_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 }, - "B": { - "id": 441, - "damage": 6 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 7, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_8_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 }, - "B": { - "id": 441, - "damage": 7 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 8, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_8_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 }, - "B": { - "id": 441, - "damage": 8 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 9, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 262 + "id": "bed_dye_8_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 }, - "B": { - "id": 441, - "damage": 9 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 262, - "damage": 10, - "count": 8 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 263, - "damage": -1 + "id": "bed_dye_8_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 50, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 50, - "shape": [ - "A", - "B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 263, - "damage": 1 + "id": "bed_dye_8_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 50, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 50, - "shape": [ - "A", - "B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 263 - }, - "B": { - "id": 280, - "damage": -1 + "id": "bed_dye_8_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "C": { - "id": -236, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -268, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, - "shape": [ - "A", - "B", - "C" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 263 - }, - "B": { - "id": 280, - "damage": -1 + "id": "bed_dye_8_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "C": { - "id": 88, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -268, - "count": 4 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, - "shape": [ - "A", - "B", - "C" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 263 + "id": "bed_dye_8_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 173 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA", - "AAA" - ] - }, - { "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "priority": 50 + }, + { + "id": "bed_dye_8_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 276 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, - "shape": [ - "A", - "A", - "B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_8_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 277 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, - "shape": [ - "A", - "B", - "B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_8_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 278 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, - "shape": [ - "AAA", - " B ", - " B " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_8_9", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 6 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 279 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 7 } ], - "priority": 0, - "shape": [ - "AA", - "AB", - " B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_9_0", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 15 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 293 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "AA", - " B", - " B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_9_1", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 14 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 310 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "AAA", - "A A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_9_10", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 5 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 311 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "A A", - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_9_11", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 4 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 312 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "AAA", - "A A", - "A A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_9_12", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 3 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 313 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "A A", - "A A" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 264, - "damage": -1 + "id": "bed_dye_9_13", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 2 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 57 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 + "id": "bed_dye_9_14", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 1 }, - "B": { - "id": -242, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -202 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 2, - "shape": [ - "AA", - "BB", - "BB" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 + "id": "bed_dye_9_15", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 0 }, - "B": { - "id": -243, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -202 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 2, - "shape": [ - "AA", - "BB", - "BB" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 + "id": "bed_dye_9_2", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 13 }, - "B": { - "id": 1, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -197 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - " A ", - "BBB" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "id": "bed_dye_9_3", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 12 }, - "C": { - "id": -242, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 131 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 2, - "shape": [ - "A", - "B", - "C" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "id": "bed_dye_9_4", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 11 }, - "C": { - "id": -243, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 131 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 2, - "shape": [ - "A", - "B", - "C" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "id": "bed_dye_9_5", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 10 }, - "C": { - "id": 5, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 131, - "count": 2 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "A", - "B", - "C" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "id": "bed_dye_9_6", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 9 }, - "C": { - "id": 76, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 126, - "count": 6 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ABA" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 + "id": "bed_dye_9_7", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 8 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 256 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "A", - "B", - "B" - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 + "id": "bed_dye_9_8", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 426, + "auxValue": 7 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 257 + "legacyId": 426, + "id": "minecraft:bed", + "damage": 6 } ], - "priority": 0, - "shape": [ - "AAA", - " B ", - " B " - ] + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "birch_stairs_birch_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": 258 + "legacyId": 135, + "id": "minecraft:birch_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "AA", - "AB", - " B" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "type": 4, + "uuid": "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" + }, + { + "id": "chiseled_quartz_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -876, + "auxValue": 0 } }, "output": [ { - "id": 267 + "legacyId": 155, + "id": "minecraft:quartz_block" } ], - "priority": 0, "shape": [ "A", - "A", - "B" - ] + "A" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "chiseled_stonebrick_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -875, + "auxValue": 0 } }, "output": [ { - "id": 292 + "legacyId": 98, + "id": "minecraft:stonebrick" } ], - "priority": 0, "shape": [ - "AA", - " B", - " B" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "type": 4, + "uuid": "85939755-ba10-4d9d-a4cc-efb7a8e943c4" + }, + { + "id": "dark_oak_stairs_dark_oak_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": 66, - "count": 16 + "legacyId": 164, + "id": "minecraft:dark_oak_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "A A", - "ABA", - "A A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "decorated_pot_base_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 391, + "auxValue": 32767 } }, "output": [ { - "id": 345 + "legacyId": -551, + "id": "minecraft:decorated_pot" } ], - "priority": 0, "shape": [ " A ", - "ABA", + "A A", " A " - ] + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "type": 4, + "uuid": "685a742a-c42e-4a4e-88ea-5eb83fc98e5b" + }, + { + "type": 4, + "uuid": "d392b075-4ba1-40ae-8789-af868d56f6ce" + }, + { + "id": "heiroglyphs_redsandstone_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 182, + "auxValue": 0 } }, "output": [ { - "id": -202 + "legacyId": 179, + "id": "minecraft:red_sandstone" } ], - "priority": 0, "shape": [ - "AA", - "BB", - "BB" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "heiroglyphs_sandstone_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 54, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -872, + "auxValue": 0 } }, "output": [ { - "id": 410 + "legacyId": 24, + "id": "minecraft:sandstone" } ], - "priority": 0, "shape": [ - "A A", - "ABA", - " A " - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "jungle_stairs_jungle_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - }, - "C": { - "id": -183, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": -196 + "legacyId": 136, + "id": "minecraft:jungle_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "CCC" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "lines_purpur_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 70, - "damage": -1 - }, - "C": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 182, + "auxValue": 1 } }, "output": [ { - "id": 28, - "count": 6 + "legacyId": 201, + "id": "minecraft:purpur_block" } ], - "priority": 0, "shape": [ - "A A", - "ABA", - "ACA" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "minecraft:Bookshelf_woodplanks_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" + }, + "B": { + "type": "default", + "count": 1, + "itemId": 395, + "auxValue": 32767 } }, "output": [ { - "id": 101, - "count": 16 + "legacyId": 47, + "id": "minecraft:bookshelf" } ], - "priority": 0, "shape": [ "AAA", + "BBB", "AAA" - ] + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:Bowl_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 148 + "legacyId": 328, + "id": "minecraft:bowl", + "count": 4 } ], - "priority": 0, "shape": [ - "AA" - ] + "A A", + " A " + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:Chest_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 167 + "legacyId": 54, + "id": "minecraft:chest" } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:DaylightDetector_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 + }, + "C": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:wooden_slabs" } }, "output": [ { - "id": 306 + "legacyId": 151, + "id": "minecraft:daylight_detector" } ], - "priority": 0, "shape": [ "AAA", - "A A" - ] + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 + "id": "minecraft:FireCharge_blaze_powder_coal_sulphur_recipeId", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 438, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 307 + "legacyId": 525, + "id": "minecraft:fire_charge", + "count": 3 } ], - "priority": 0, - "shape": [ - "A A", - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 + "id": "minecraft:FireCharge_coal_sulphur_recipeId", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 438, + "auxValue": 32767 + }, + { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:coals" + }, + { + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 308 + "legacyId": 525, + "id": "minecraft:fire_charge", + "count": 3 } ], - "priority": 0, - "shape": [ - "AAA", - "A A", - "A A" - ] + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:Jukebox_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" + }, + "B": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": 309 + "legacyId": 84, + "id": "minecraft:jukebox" } ], - "priority": 0, "shape": [ - "A A", - "A A" - ] + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:Torch_charcoal_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 325 + "legacyId": 50, + "id": "minecraft:torch", + "count": 4 } ], - "priority": 0, "shape": [ - "A A", - " A " - ] + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:Torch_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 328 + "legacyId": 50, + "id": "minecraft:torch", + "count": 4 } ], - "priority": 0, "shape": [ - "A A", - "AAA" - ] + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:WorkBench_recipeId", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 330, - "count": 3 + "legacyId": 58, + "id": "minecraft:crafting_table" } ], - "priority": 0, "shape": [ - "AA", "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:WorkBench_recipeId_from_oak", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 32767 } }, "output": [ { - "id": 359 + "legacyId": 58, + "id": "minecraft:crafting_table" } ], - "priority": 0, "shape": [ - " A", - "A " - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:acacia_boat", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": 380 + "legacyId": 387, + "id": "minecraft:acacia_boat" } ], - "priority": 0, "shape": [ - "A A", "A A", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 265, - "damage": -1 + "id": "minecraft:acacia_chest_boat", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 387, + "auxValue": 0 } - }, + ], "output": [ { - "id": 42 + "legacyId": 661, + "id": "minecraft:acacia_chest_boat" } ], - "priority": 0, - "shape": [ - "AAA", - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_door", + "type": 1, "input": { "A": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": 452, - "count": 9 + "legacyId": 572, + "id": "minecraft:acacia_door", + "count": 3 } ], - "priority": 0, "shape": [ - "A" - ] + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_fence", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 }, "B": { - "id": 260, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 322 + "legacyId": -575, + "id": "minecraft:acacia_fence", + "count": 3 } ], - "priority": 0, "shape": [ - "AAA", "ABA", - "AAA" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_fence_gate", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": 27, - "count": 6 + "legacyId": 187, + "id": "minecraft:acacia_fence_gate" } ], - "priority": 0, "shape": [ - "A A", "ABA", - "ACA" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_hanging_sign", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -8, + "auxValue": 32767 } }, "output": [ { - "id": 283 + "legacyId": -504, + "id": "minecraft:acacia_hanging_sign", + "count": 6 } ], - "priority": 0, "shape": [ - "A", - "A", - "B" - ] + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_planks", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 162, + "auxValue": 0 } }, "output": [ { - "id": 284 + "legacyId": -742, + "id": "minecraft:acacia_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "A", - "B", - "B" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_planks_from_stripped", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -8, + "auxValue": 32767 } }, "output": [ { - "id": 285 + "legacyId": -742, + "id": "minecraft:acacia_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - " B ", - " B " - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_planks_from_stripped_wood", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -823, + "auxValue": 32767 } }, "output": [ { - "id": 286 + "legacyId": -742, + "id": "minecraft:acacia_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "AA", - "AB", - " B" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_planks_from_wood", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -817, + "auxValue": 32767 } }, "output": [ { - "id": 294 + "legacyId": -742, + "id": "minecraft:acacia_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "AA", - " B", - " B" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_stairs", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": 347 + "legacyId": 163, + "id": "minecraft:acacia_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - " A ", - "ABA", - " A " - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_wood", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 162, + "auxValue": 32767 } }, "output": [ { - "id": 147 + "legacyId": -817, + "id": "minecraft:acacia_wood", + "count": 3 } ], - "priority": 0, "shape": [ + "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_wood_stripped", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -8, + "auxValue": 32767 } }, "output": [ { - "id": 314 + "legacyId": -823, + "id": "minecraft:stripped_acacia_wood", + "count": 3 } ], - "priority": 0, "shape": [ - "AAA", - "A A" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:acacia_wooden_slab", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 } }, "output": [ { - "id": 315 + "legacyId": -807, + "id": "minecraft:acacia_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "A A", - "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:activator_rail", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 76, + "auxValue": 32767 } }, "output": [ { - "id": 316 + "legacyId": 126, + "id": "minecraft:activator_rail", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", - "A A", - "A A" - ] + "ABA", + "ACA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:amethyst_block", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 643, + "auxValue": 32767 } }, "output": [ { - "id": 317 + "legacyId": -327, + "id": "minecraft:amethyst_block" } ], - "priority": 0, "shape": [ - "A A", - "A A" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 }, { + "id": "minecraft:andesite", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -594, + "id": "minecraft:andesite", + "count": 2 + } + ], "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:andesite_stairs", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 } }, "output": [ { - "id": 371, - "count": 9 + "legacyId": -171, + "id": "minecraft:andesite_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:andesite_wall", + "type": 1, "input": { "A": { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 } }, "output": [ { - "id": 41 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:anvil", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 42, + "auxValue": 32767 }, "B": { - "id": -162, - "damage": -1 - }, - "C": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": -195 + "legacyId": 145, + "id": "minecraft:anvil" } ], - "priority": 2, "shape": [ - "ABA", - "C C" - ] + "AAA", + " B ", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:armor_stand", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -162, - "damage": -1 - }, - "C": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 44, + "auxValue": 32767 } }, "output": [ { - "id": -195 + "legacyId": 568, + "id": "minecraft:armor_stand" } ], - "priority": 2, "shape": [ - "ABA", - "C C" - ] + "AAA", + " A ", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:arrow", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 363, + "auxValue": 32767 }, "B": { - "id": -166, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "C": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 334, + "auxValue": 32767 } }, "output": [ { - "id": -195 + "legacyId": 307, + "id": "minecraft:arrow", + "count": 4 } ], - "priority": 2, "shape": [ - "ABA", - "C C" - ] + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_block", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -166, - "damage": -1 - }, - "C": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -163, + "auxValue": 32767 } }, "output": [ { - "id": -195 + "legacyId": -527, + "id": "minecraft:bamboo_block" } ], - "priority": 2, "shape": [ - "ABA", - "C C" - ] + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_button", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -166, - "damage": 2 - }, - "C": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -195 + "legacyId": -511, + "id": "minecraft:bamboo_button" } ], - "priority": 0, "shape": [ - "ABA", - "C C" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 + "id": "minecraft:bamboo_chest_raft", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 }, - "C": { - "id": -10, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 672, + "auxValue": 0 } - }, + ], "output": [ { - "id": 801 + "legacyId": 673, + "id": "minecraft:bamboo_chest_raft" } ], - "priority": 2, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_door", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -212, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -517, + "id": "minecraft:bamboo_door", + "count": 3 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_fence", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 }, "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -225, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -515, + "id": "minecraft:bamboo_fence", + "count": 3 } ], - "priority": 2, "shape": [ - " A ", "ABA", - "CCC" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_fence_gate", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -226, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -516, + "id": "minecraft:bamboo_fence_gate" } ], - "priority": 2, "shape": [ - " A ", "ABA", - "CCC" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_hanging_sign", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -240, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -528, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -522, + "id": "minecraft:bamboo_hanging_sign", + "count": 6 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_mosaic", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -241, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -513, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -509, + "id": "minecraft:bamboo_mosaic" } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_mosaic_slab", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -509, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -524, + "id": "minecraft:bamboo_mosaic_slab", + "count": 6 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_mosaic_stairs", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -6, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -509, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -523, + "id": "minecraft:bamboo_mosaic_stairs", + "count": 4 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_planks", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -7, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -527, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -510, + "id": "minecraft:bamboo_planks", + "count": 2 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_planks_from_stripped", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -8, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -528, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -510, + "id": "minecraft:bamboo_planks", + "count": 2 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_pressure_plate", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -9, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -514, + "id": "minecraft:bamboo_pressure_plate" } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_raft", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": 162, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 0 } }, "output": [ { - "id": 801 + "legacyId": 672, + "id": "minecraft:bamboo_raft" } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_sign", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 }, "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": 17, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": 671, + "id": "minecraft:bamboo_sign", + "count": 3 } ], - "priority": 1, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_slab", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -258 + "legacyId": -513, + "id": "minecraft:bamboo_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_stairs", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -259 + "legacyId": -512, + "id": "minecraft:bamboo_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bamboo_trapdoor", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -264, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -510, + "auxValue": 32767 } }, "output": [ { - "id": -203 + "legacyId": -520, + "id": "minecraft:bamboo_trapdoor", + "count": 2 } ], - "priority": 2, "shape": [ - "ABA", - "A A", - "ABA" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:banner_pattern_bricks", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, - "B": { - "id": -265, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 45, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -203 + "legacyId": 601, + "id": "minecraft:field_masoned_banner_pattern" } ], - "priority": 2, - "shape": [ - "ABA", - "A A", - "ABA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:banner_pattern_creeper", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, - "B": { - "id": 158, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 532, + "auxValue": 4 } - }, + ], "output": [ { - "id": -203 + "legacyId": 598, + "id": "minecraft:creeper_banner_pattern" } ], - "priority": 0, - "shape": [ - "ABA", - "A A", - "ABA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 182, - "damage": -1 + "id": "minecraft:banner_pattern_flower", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, - "C": { - "id": -242, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": -837, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -195 + "legacyId": 597, + "id": "minecraft:flower_banner_pattern" } ], - "priority": 2, - "shape": [ - "ABA", - "C C" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 182, - "damage": -1 + "id": "minecraft:banner_pattern_skull", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, - "C": { - "id": -243, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 532, + "auxValue": 1 } - }, + ], "output": [ { - "id": -195 + "legacyId": 599, + "id": "minecraft:skull_banner_pattern" } ], - "priority": 2, - "shape": [ - "ABA", - "C C" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": 1 + "id": "minecraft:banner_pattern_thing", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, - "C": { - "id": -10, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 263, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 720 + "legacyId": 600, + "id": "minecraft:mojang_banner_pattern" } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": 1 + "id": "minecraft:banner_pattern_vines", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, - "C": { - "id": -212, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 106, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 720 + "legacyId": 602, + "id": "minecraft:bordure_indented_banner_pattern" } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:barrel_with_planks", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, "B": { - "id": 263, - "damage": 1 - }, - "C": { - "id": -5, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:wooden_slabs" } }, "output": [ { - "id": 720 + "legacyId": -203, + "id": "minecraft:barrel" } ], - "priority": 0, "shape": [ - " A ", "ABA", - "CCC" - ] + "A A", + "ABA" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": 1 + "id": "minecraft:basic_map_to_enhanced", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 531, + "auxValue": 1 }, - "C": { - "id": -6, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 399, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 720 + "legacyId": 531, + "id": "minecraft:empty_map", + "damage": 2 } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:beacon", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 263, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 534, + "auxValue": 32767 }, "C": { - "id": -7, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 49, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": 138, + "id": "minecraft:beacon" } ], - "priority": 0, "shape": [ - " A ", + "AAA", "ABA", "CCC" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:beehive", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, "B": { - "id": 263, - "damage": 1 - }, - "C": { - "id": -8, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -219, + "id": "minecraft:beehive" } ], - "priority": 0, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:beehive_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, "B": { - "id": 263, - "damage": 1 - }, - "C": { - "id": -9, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -219, + "id": "minecraft:beehive" } ], - "priority": 0, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:beehive_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, "B": { - "id": 263, - "damage": 1 - }, - "C": { - "id": 162, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -219, + "id": "minecraft:beehive" } ], - "priority": 0, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:beehive_from_warped_planks", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, "B": { - "id": 263, - "damage": 1 - }, - "C": { - "id": 17, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -219, + "id": "minecraft:beehive" } ], - "priority": 0, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:beetroot_soup", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 }, - "B": { - "id": 263 + { + "type": "default", + "count": 1, + "itemId": 289, + "auxValue": 32767 }, - "C": { - "id": -10, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 289, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 289, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 289, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 289, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 289, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 720 + "legacyId": 290, + "id": "minecraft:beetroot_soup" } ], - "priority": 2, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_boat", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 - }, - "C": { - "id": -212, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": 720 + "legacyId": 384, + "id": "minecraft:birch_boat" } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 + "id": "minecraft:birch_chest_boat", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 }, - "C": { - "id": -225, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 384, + "auxValue": 0 } - }, + ], "output": [ { - "id": 720 + "legacyId": 658, + "id": "minecraft:birch_chest_boat" } ], - "priority": 2, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_door", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 - }, - "C": { - "id": -226, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": 720 + "legacyId": 570, + "id": "minecraft:birch_door", + "count": 3 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_fence", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 }, "B": { - "id": 263 - }, - "C": { - "id": -240, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -576, + "id": "minecraft:birch_fence", + "count": 3 } ], - "priority": 2, "shape": [ - " A ", "ABA", - "CCC" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_fence_gate", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 263 - }, - "C": { - "id": -241, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": 720 + "legacyId": 184, + "id": "minecraft:birch_fence_gate" } ], - "priority": 2, "shape": [ - " A ", "ABA", - "CCC" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_hanging_sign", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, "B": { - "id": 263 - }, - "C": { - "id": -5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -6, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -502, + "id": "minecraft:birch_hanging_sign", + "count": 6 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_planks", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 - }, - "C": { - "id": -6, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -570, + "auxValue": 0 } }, "output": [ { - "id": 720 + "legacyId": -740, + "id": "minecraft:birch_planks", + "count": 4 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_planks_from_stripped", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 - }, - "C": { - "id": -7, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -6, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -740, + "id": "minecraft:birch_planks", + "count": 4 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_planks_from_stripped_wood", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 - }, - "C": { - "id": -8, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -821, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -740, + "id": "minecraft:birch_planks", + "count": 4 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_planks_from_wood", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 - }, - "C": { - "id": -9, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -815, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -740, + "id": "minecraft:birch_planks", + "count": 4 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_stairs", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 - }, - "C": { - "id": 162, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": 720 + "legacyId": 135, + "id": "minecraft:birch_stairs", + "count": 4 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_wood", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263 - }, - "C": { - "id": 17, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -570, + "auxValue": 32767 } }, "output": [ { - "id": 720 + "legacyId": -815, + "id": "minecraft:birch_wood", + "count": 3 } ], - "priority": 1, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_wood_stripped", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 - }, - "C": { - "id": 287, - "damage": -1 - }, - "D": { - "id": 131, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -6, + "auxValue": 32767 } }, "output": [ { - "id": 471 + "legacyId": -821, + "id": "minecraft:stripped_birch_wood", + "count": 3 } ], - "priority": 0, "shape": [ - "ABA", - "CDC", - " A " - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:birch_wooden_slab", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 287, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 } }, "output": [ { - "id": 261 + "legacyId": -805, + "id": "minecraft:birch_slab", + "count": 6 } ], - "priority": 0, "shape": [ - " AB", - "A B", - " AB" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:black_banner", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 }, "B": { - "id": 287, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 346 + "legacyId": 583, + "id": "minecraft:banner", + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 0, "shape": [ - " A", - " AB", - "A B" - ] + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:black_candle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "B": { - "id": 334, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 } - }, + ], "output": [ { - "id": 389 + "legacyId": -428, + "id": "minecraft:black_candle" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:black_candle_from_ink_sac", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "B": { - "id": 35, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 } - }, + ], "output": [ { - "id": 321 + "legacyId": -428, + "id": "minecraft:black_candle" } ], - "priority": 50, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:black_carpet", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } }, "output": [ { - "id": 69 + "legacyId": -611, + "id": "minecraft:black_carpet", + "count": 3 } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:black_carpet_from_white", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, "B": { - "id": 44, - "damage": -1 - }, - "C": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 } }, "output": [ { - "id": -195 + "legacyId": -611, + "id": "minecraft:black_carpet", + "count": 8 } ], - "priority": 2, "shape": [ + "AAA", "ABA", - "C C" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:black_concrete_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 }, - "B": { - "id": 44, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, - "C": { - "id": -243, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -195 + "legacyId": -723, + "id": "minecraft:black_concrete_powder", + "count": 8 } ], - "priority": 2, - "shape": [ - "ABA", - "C C" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:black_concrete_powder_from_ink_sac", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 }, - "B": { - "id": 44 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 425 + "legacyId": -723, + "id": "minecraft:black_concrete_powder", + "count": 8 } ], - "priority": 0, - "shape": [ - "AAA", - " A ", - "ABA" - ] + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5, - "damage": 1 + "id": "minecraft:black_dye_from_ink_sac", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 } - }, + ], "output": [ { - "id": 183 + "legacyId": 403, + "id": "minecraft:black_dye" } ], - "priority": 0, - "shape": [ - "ABA", - "ABA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5, - "damage": 2 + "id": "minecraft:black_dye_from_wither_rose", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -216, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 184 + "legacyId": 403, + "id": "minecraft:black_dye" } ], - "priority": 0, - "shape": [ - "ABA", - "ABA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:black_stained_glass", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 } }, "output": [ { - "id": 185 + "legacyId": -687, + "id": "minecraft:black_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ABA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:black_stained_glass_from_ink_sac", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 } }, "output": [ { - "id": 187 + "legacyId": -687, + "id": "minecraft:black_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ABA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:black_stained_glass_pane", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -687, + "auxValue": 32767 } }, "output": [ { - "id": 186 + "legacyId": -657, + "id": "minecraft:black_stained_glass_pane", + "count": 16 } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:black_stained_glass_pane_from_pane", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, "B": { - "id": 5 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 } }, "output": [ { - "id": 107 + "legacyId": -657, + "id": "minecraft:black_stained_glass_pane", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ABA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:black_stained_hardened_clay", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -10, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 } }, "output": [ { - "id": 801 + "legacyId": -738, + "id": "minecraft:black_terracotta", + "count": 8 } ], - "priority": 2, "shape": [ - " A ", + "AAA", "ABA", - "CCC" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:black_stained_hardened_clay_from_ink_sac", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -212, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 } }, "output": [ { - "id": 801 + "legacyId": -738, + "id": "minecraft:black_terracotta", + "count": 8 } ], - "priority": 2, "shape": [ - " A ", + "AAA", "ABA", - "CCC" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:blackstone_slab", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -225, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -282, + "id": "minecraft:blackstone_slab", + "count": 6 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blackstone_stairs", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -226, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -276, + "id": "minecraft:blackstone_stairs", + "count": 4 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blackstone_wall", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -240, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -277, + "id": "minecraft:blackstone_wall", + "count": 6 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blast_furnace", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 88, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 }, "C": { - "id": -241, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -183, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": -196, + "id": "minecraft:blast_furnace" } ], - "priority": 2, "shape": [ - " A ", + "AAA", "ABA", "CCC" - ] + ], + "block": "crafting_table", + "priority": 0 }, { + "id": "minecraft:blaze_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": 438, + "id": "minecraft:blaze_powder", + "count": 2 + } + ], "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:blue_banner", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 }, "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 801 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 4, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 + "id": "minecraft:blue_candle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "C": { - "id": -6, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 } - }, + ], "output": [ { - "id": 801 + "legacyId": -424, + "id": "minecraft:blue_candle" } ], - "priority": 2, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 + "id": "minecraft:blue_candle_from_lapis_lazuli", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "C": { - "id": -7, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 } - }, + ], "output": [ { - "id": 801 + "legacyId": -424, + "id": "minecraft:blue_candle" } ], - "priority": 2, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blue_carpet", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -8, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } }, "output": [ { - "id": 801 + "legacyId": -607, + "id": "minecraft:blue_carpet", + "count": 3 } ], - "priority": 2, "shape": [ - " A ", - "ABA", - "CCC" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blue_carpet_from_white", + "type": 1, "input": { "A": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -9, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 } }, "output": [ { - "id": 801 + "legacyId": -607, + "id": "minecraft:blue_carpet", + "count": 8 } ], - "priority": 2, "shape": [ - " A ", + "AAA", "ABA", - "CCC" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:blue_concrete_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 }, - "B": { - "id": 88, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, - "C": { - "id": 162, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 801 + "legacyId": -719, + "id": "minecraft:blue_concrete_powder", + "count": 8 } ], - "priority": 2, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:blue_concrete_powder_from_lapis_lazuli", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 }, - "B": { - "id": 88, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, - "C": { - "id": 17, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 801 + "legacyId": -719, + "id": "minecraft:blue_concrete_powder", + "count": 8 } ], - "priority": 1, - "shape": [ - " A ", - "ABA", - "CCC" - ] + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 280, - "damage": -1 + "id": "minecraft:blue_dye_from_cornflower", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -838, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 65, - "count": 3 + "legacyId": 407, + "id": "minecraft:blue_dye" } ], - "priority": 0, - "shape": [ - "A A", - "AAA", - "A A" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 287, - "damage": -1 - }, - "B": { - "id": -242, - "damage": -1 + "id": "minecraft:blue_dye_from_lapis_lazuli", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 } - }, + ], "output": [ { - "id": -204 + "legacyId": 407, + "id": "minecraft:blue_dye" } ], - "priority": 2, - "shape": [ - "AA", - "BB" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blue_ice", + "type": 1, "input": { "A": { - "id": 287, - "damage": -1 - }, - "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 174, + "auxValue": 32767 } }, "output": [ { - "id": -204 + "legacyId": -11, + "id": "minecraft:blue_ice" } ], - "priority": 2, "shape": [ - "AA", - "BB" - ] + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blue_stained_glass", + "type": 1, "input": { "A": { - "id": 287, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 341, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 } }, "output": [ { - "id": 420, - "count": 2 + "legacyId": -683, + "id": "minecraft:blue_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ - "AA ", - "AB ", - " A" - ] + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blue_stained_glass_from_lapis_lazuli", + "type": 1, "input": { "A": { - "id": 287, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 } }, "output": [ { - "id": -204 + "legacyId": -683, + "id": "minecraft:blue_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ - "AA", - "BB" - ] + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:blue_stained_glass_pane", + "type": 1, "input": { "A": { - "id": 287, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -683, + "auxValue": 32767 } }, "output": [ { - "id": 35 + "legacyId": -653, + "id": "minecraft:blue_stained_glass_pane", + "count": 16 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blue_stained_glass_pane_from_pane", + "type": 1, "input": { "A": { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, "B": { - "id": 12, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 } }, "output": [ { - "id": 46 + "legacyId": -653, + "id": "minecraft:blue_stained_glass_pane", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "BAB", - "ABA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blue_stained_hardened_clay", + "type": 1, "input": { "A": { - "id": 296, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 } }, "output": [ { - "id": 357, + "legacyId": -734, + "id": "minecraft:blue_terracotta", "count": 8 } ], - "priority": 0, "shape": [ - "ABA" - ] + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:blue_stained_hardened_clay_from_lapis_lazuli", + "type": 1, "input": { "A": { - "id": 296, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 } }, "output": [ { - "id": 170 + "legacyId": -734, + "id": "minecraft:blue_terracotta", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", - "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:boat", + "type": 1, "input": { "A": { - "id": 296, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 } }, "output": [ { - "id": 297 + "legacyId": 383, + "id": "minecraft:oak_boat" } ], - "priority": 0, "shape": [ + "A A", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bolt_armor_trim_smithing_template_duplicate", + "type": 1, "input": { "A": { - "id": 318, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 717, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 } }, "output": [ { - "id": -201 + "legacyId": 717, + "id": "minecraft:bolt_armor_trim_smithing_template", + "count": 2 } ], - "priority": 2, "shape": [ - "AA", - "BB", - "BB" - ] + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bolt_armor_trim_smithing_template_duplicate_waxed", + "type": 1, "input": { "A": { - "id": 318, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 717, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 } }, "output": [ { - "id": -201 + "legacyId": 717, + "id": "minecraft:bolt_armor_trim_smithing_template", + "count": 2 } ], - "priority": 2, "shape": [ - "AA", - "BB", - "BB" - ] + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bone_block", + "type": 1, "input": { "A": { - "id": 318, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": 288, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } }, "output": [ { - "id": 262, - "count": 4 + "legacyId": 216, + "id": "minecraft:bone_block" } ], - "priority": 0, "shape": [ - "A", - "B", - "C" - ] + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 318, - "damage": -1 - }, - "B": { - "id": 5, - "damage": -1 + "id": "minecraft:bone_meal_from_block", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 216, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -201 + "legacyId": 419, + "id": "minecraft:bone_meal", + "count": 9 } ], - "priority": 0, - "shape": [ - "AA", - "BB", - "BB" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 325, - "damage": 1 - }, - "B": { - "id": 353, - "damage": -1 - }, - "C": { - "id": 344, - "damage": -1 - }, - "D": { - "id": 296, - "damage": -1 + "id": "minecraft:bone_meal_from_bone", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 423, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 354 - }, - { - "id": 325, + "legacyId": 419, + "id": "minecraft:bone_meal", "count": 3 } ], - "priority": 0, - "shape": [ - "AAA", - "BCB", - "DDD" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 331, - "damage": -1 + "id": "minecraft:book", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 0 }, - "B": { - "id": 170, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 389, + "auxValue": 0 } - }, + ], "output": [ { - "id": -239 + "legacyId": 395, + "id": "minecraft:book" } ], - "priority": 0, - "shape": [ - " A ", - "ABA", - " A " - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bookshelf_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 395, + "auxValue": 32767 } }, "output": [ { - "id": 76 + "legacyId": 47, + "id": "minecraft:bookshelf" } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:bookshelf_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, "B": { - "id": 89, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 395, + "auxValue": 32767 } }, "output": [ { - "id": 123 + "legacyId": 47, + "id": "minecraft:bookshelf" } ], - "priority": 0, "shape": [ - " A ", - "ABA", - " A " - ] + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:bookshelf_from_warped_planks", + "type": 1, "input": { "A": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 395, + "auxValue": 32767 } }, "output": [ { - "id": 152 + "legacyId": 47, + "id": "minecraft:bookshelf" } ], - "priority": 0, "shape": [ "AAA", - "AAA", + "BBB", "AAA" - ] + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:bow", + "type": 1, "input": { "A": { - "id": 332, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 } }, "output": [ { - "id": 80 + "legacyId": 306, + "id": "minecraft:bow" } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + " AB", + "A B", + " AB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bowl_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 334, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 298 + "legacyId": 328, + "id": "minecraft:bowl", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "A A" - ] + "A A", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:bowl_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 334, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } }, "output": [ { - "id": 299 + "legacyId": 328, + "id": "minecraft:bowl", + "count": 4 } ], - "priority": 0, "shape": [ "A A", - "AAA", - "AAA" - ] + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:bowl_from_warped_planks", + "type": 1, "input": { "A": { - "id": 334, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } }, "output": [ { - "id": 300 + "legacyId": 328, + "id": "minecraft:bowl", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", "A A", - "A A" - ] + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:bread", + "type": 1, "input": { "A": { - "id": 334, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 341, + "auxValue": 32767 } }, "output": [ { - "id": 301 + "legacyId": 265, + "id": "minecraft:bread" } ], - "priority": 0, "shape": [ - "A A", - "A A" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brewing_stand", + "type": 1, "input": { "A": { - "id": 334, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:stone_crafting_materials" } }, "output": [ { - "id": 416 + "legacyId": 440, + "id": "minecraft:brewing_stand" } ], - "priority": 0, "shape": [ - "A A", - "AAA", - "A A" - ] + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:brewing_stand_from_blackstone", + "type": 1, "input": { "A": { - "id": 336, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 } }, "output": [ { - "id": 390 + "legacyId": 440, + "id": "minecraft:brewing_stand" } ], - "priority": 0, "shape": [ - "A A", - " A " - ] + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:brewing_stand_from_cobbled_deepslate", + "type": 1, "input": { "A": { - "id": 336, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 } }, "output": [ { - "id": 45 + "legacyId": 440, + "id": "minecraft:brewing_stand" } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + " A ", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:brick_block", + "type": 1, "input": { "A": { - "id": 337, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 391, + "auxValue": 32767 } }, "output": [ { - "id": 82 + "legacyId": 45, + "id": "minecraft:brick_block" } ], - "priority": 0, "shape": [ "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brick_stairs", + "type": 1, "input": { "A": { - "id": 338, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 45, + "auxValue": 32767 } }, "output": [ { - "id": 339, - "count": 3 + "legacyId": 108, + "id": "minecraft:brick_stairs", + "count": 4 } ], - "priority": 0, "shape": [ + "A ", + "AA ", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brick_wall", + "type": 1, "input": { "A": { - "id": 338, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 45, + "auxValue": 32767 } }, "output": [ { - "id": 353 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 0, "shape": [ - "A" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brown_banner", + "type": 1, "input": { "A": { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": -200 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 3, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 2, "shape": [ - "AA", - "BB", - "BB" - ] + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 339, - "damage": -1 + "id": "minecraft:brown_candle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "B": { - "id": -243, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 0 } - }, + ], "output": [ { - "id": -200 + "legacyId": -425, + "id": "minecraft:brown_candle" } ], - "priority": 2, - "shape": [ - "AA", - "BB", - "BB" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 339, - "damage": -1 + "id": "minecraft:brown_candle_from_cocoa_beans", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "B": { - "id": 345, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 0 } - }, + ], "output": [ { - "id": 395, - "damage": 2 + "legacyId": -425, + "id": "minecraft:brown_candle" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brown_carpet", + "type": 1, "input": { "A": { - "id": 339, - "damage": -1 - }, - "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } }, "output": [ { - "id": -200 + "legacyId": -608, + "id": "minecraft:brown_carpet", + "count": 3 } ], - "priority": 0, "shape": [ - "AA", - "BB", - "BB" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brown_carpet_from_white", + "type": 1, "input": { "A": { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 0 } }, "output": [ { - "id": 395 + "legacyId": -608, + "id": "minecraft:brown_carpet", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", - "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 340, - "damage": -1 + "id": "minecraft:brown_concrete_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 0 }, - "B": { - "id": 264, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, - "C": { - "id": 49, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 116 + "legacyId": -720, + "id": "minecraft:brown_concrete_powder", + "count": 8 } ], - "priority": 0, - "shape": [ - " A ", - "BCB", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 341, - "damage": -1 + "id": "minecraft:brown_concrete_powder_from_cocoa_beans", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 0 }, - "B": { - "id": 33, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 29, - "damage": 1 + "legacyId": -720, + "id": "minecraft:brown_concrete_powder", + "count": 8 } ], - "priority": 0, - "shape": [ - "A", - "B" - ] + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 341, - "damage": -1 + "id": "minecraft:brown_dye_from_cocoa_beans", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 0 } - }, + ], "output": [ { - "id": 165 + "legacyId": 406, + "id": "minecraft:brown_dye" } ], - "priority": 0, - "shape": [ - "AAA", - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brown_stained_glass", + "type": 1, "input": { "A": { - "id": 346, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": -229, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 0 } }, "output": [ { - "id": 757 + "legacyId": -684, + "id": "minecraft:brown_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ - "A ", - " B" - ] + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brown_stained_glass_from_cocoa_beans", + "type": 1, "input": { "A": { - "id": 346, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 391, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 0 } }, "output": [ { - "id": 398 + "legacyId": -684, + "id": "minecraft:brown_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ - "A ", - " B" - ] + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:brown_stained_glass_pane", + "type": 1, "input": { "A": { - "id": 348, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -684, + "auxValue": 32767 } }, "output": [ { - "id": 89 + "legacyId": -654, + "id": "minecraft:brown_stained_glass_pane", + "count": 16 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brown_stained_glass_pane_from_pane", + "type": 1, "input": { "A": { - "id": 35, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 0 } }, "output": [ { - "id": 355, - "damage": 10 + "legacyId": -654, + "id": "minecraft:brown_stained_glass_pane", + "count": 8 } ], - "priority": 2, "shape": [ "AAA", - "BBB" - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brown_stained_hardened_clay", + "type": 1, "input": { "A": { - "id": 35, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 0 } }, "output": [ { - "id": 355, - "damage": 10 + "legacyId": -735, + "id": "minecraft:brown_terracotta", + "count": 8 } ], - "priority": 2, "shape": [ "AAA", - "BBB" - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:brown_stained_hardened_clay_from_cocoa_beans", + "type": 1, "input": { "A": { - "id": 35, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 0 } }, "output": [ { - "id": 446, - "damage": 5 + "legacyId": -735, + "id": "minecraft:brown_terracotta", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", - "AAA", - " B " - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:brush", + "type": 1, "input": { "A": { - "id": 35, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 334, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 520, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 10 + "legacyId": 698, + "id": "minecraft:brush" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:bucket", + "type": 1, "input": { "A": { - "id": 35, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 10, - "count": 3 + "legacyId": 367, + "id": "minecraft:bucket" } ], - "priority": 0, "shape": [ - "AA" - ] + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cake", + "type": 1, "input": { "A": { - "id": 35, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 368, + "auxValue": 0 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 424, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 398, + "auxValue": 32767 + }, + "D": { + "type": "default", + "count": 1, + "itemId": 341, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": 425, + "id": "minecraft:cake" + }, + { + "legacyId": 367, + "id": "minecraft:bucket", + "count": 3 } ], - "priority": 2, "shape": [ "AAA", - "BBB" - ] + "BCB", + "DDD" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:calibrated_sculk_sensor", + "type": 1, "input": { "A": { - "id": 35, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 643, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -307, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": -580, + "id": "minecraft:calibrated_sculk_sensor" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire", + "type": 1, "input": { "A": { - "id": 35, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:coals" + }, + "C": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:logs" } }, "output": [ { - "id": 446, - "damage": 4 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal", + "type": 1, "input": { "A": { - "id": 35, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "complex_alias", + "count": 1 } }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] - }, - { - "block": "crafting_table", - "input": { - "A": { - "id": 35, - "damage": 11 - } - }, - "output": [ - { - "id": 171, - "damage": 11, - "count": 3 - } + " A ", + "ABA", + "CCC" ], - "priority": 0, - "shape": [ - "AA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_log2", + "type": 1, "input": { "A": { - "id": 35, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "complex_alias", + "count": 1 } }, "output": [ { - "id": 355, - "damage": 12 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_mangrove_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -484, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 12 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_mangrove_wood", + "type": 1, "input": { "A": { - "id": 35, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -497, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 3 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_stripped_acacia_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -8, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 12 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_stripped_birch_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -6, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 12, - "count": 3 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AA" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_stripped_dark_oak_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -9, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 13 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_stripped_jungle_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -7, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 13 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_stripped_mangrove_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 2 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_stripped_mangrove_wood", + "type": 1, "input": { "A": { - "id": 35, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -498, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 13 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_stripped_oak_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -10, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 13, - "count": 3 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AA" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_stripped_spruce_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -5, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 14 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_charcoal_wood", + "type": 1, "input": { "A": { - "id": 35, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 309, + "auxValue": 32767 + }, + "C": { + "type": "complex_alias", + "count": 1 } }, "output": [ { - "id": 355, - "damage": 14 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_crimson_stem", + "type": 1, "input": { "A": { - "id": 35, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -225, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 1 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_log2", + "type": 1, "input": { "A": { - "id": 35, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "complex_alias", + "count": 1 } }, "output": [ { - "id": 355, - "damage": 14 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 1, "shape": [ - "AAA", + " A ", + "ABA", "BBB" - ] + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_mangrove_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -484, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 14, - "count": 3 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AA" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_mangrove_wood", + "type": 1, "input": { "A": { - "id": 35, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -497, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 15 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_acacia_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -8, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 15 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_birch_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -6, + "auxValue": 32767 } }, "output": [ { - "id": 446 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_crimson_stem", + "type": 1, "input": { "A": { - "id": 35, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -240, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 15 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_dark_oak_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -9, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 15, - "count": 3 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AA" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_jungle_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -7, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 1 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_mangrove_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 1 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_mangrove_wood", + "type": 1, "input": { "A": { - "id": 35, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -498, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 14 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_oak_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -10, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 1 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_spruce_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -5, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 1, - "count": 3 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AA" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_stripped_warped_stem", + "type": 1, "input": { "A": { - "id": 35, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -241, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 2 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_warped_stem", + "type": 1, "input": { "A": { - "id": 35, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "complex_alias", + "count": 1 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -226, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 2 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:campfire_from_wood", + "type": 1, "input": { "A": { - "id": 35, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "complex_alias", + "count": 1 } }, "output": [ { - "id": 446, - "damage": 13 + "legacyId": 607, + "id": "minecraft:campfire" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + " A ", + "ABA", + "BBB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:candle", + "type": 1, "input": { "A": { - "id": 35, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 2 + "legacyId": -412, + "id": "minecraft:candle" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + "A", + "B" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:carrot_on_a_stick", + "type": 1, "input": { "A": { - "id": 35, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 400, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 283, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 2, - "count": 3 + "legacyId": 533, + "id": "minecraft:carrot_on_a_stick" } ], - "priority": 0, "shape": [ - "AA" - ] + "A ", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cartography_table", + "type": 1, "input": { "A": { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 355, - "damage": 3 + "legacyId": -200, + "id": "minecraft:cartography_table" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:cartography_table_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 3 + "legacyId": -200, + "id": "minecraft:cartography_table" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:cartography_table_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 12 + "legacyId": -200, + "id": "minecraft:cartography_table" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:cartography_table_from_warped_planks", + "type": 1, "input": { "A": { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 3 + "legacyId": -200, + "id": "minecraft:cartography_table" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:cauldron", + "type": 1, "input": { "A": { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 3, - "count": 3 + "legacyId": 441, + "id": "minecraft:cauldron" } ], - "priority": 0, "shape": [ - "AA" - ] + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:chain", + "type": 1, "input": { "A": { - "id": 35, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 585, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 4 + "legacyId": 638, + "id": "minecraft:chain" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "A", + "B", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_boat", + "type": 1, "input": { "A": { - "id": 35, - "damage": 4 - }, - "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 4 + "legacyId": 668, + "id": "minecraft:cherry_boat" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_button", + "type": 1, "input": { "A": { - "id": 35, - "damage": 4 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 11 + "legacyId": -530, + "id": "minecraft:cherry_button" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 35, - "damage": 4 + "id": "minecraft:cherry_chest_boat", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 }, - "B": { - "id": 5, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 668, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": 669, + "id": "minecraft:cherry_chest_boat" } ], - "priority": 1, - "shape": [ - "AAA", - "BBB" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_door", + "type": 1, "input": { "A": { - "id": 35, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 4, + "legacyId": -531, + "id": "minecraft:cherry_door", "count": 3 } ], - "priority": 0, "shape": [ + "AA", + "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_fence", + "type": 1, "input": { "A": { - "id": 35, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 5 + "legacyId": -532, + "id": "minecraft:cherry_fence", + "count": 3 } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_fence_gate", + "type": 1, "input": { "A": { - "id": 35, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 5 + "legacyId": -533, + "id": "minecraft:cherry_fence_gate" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_hanging_sign", + "type": 1, "input": { "A": { - "id": 35, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -535, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 10 + "legacyId": -534, + "id": "minecraft:cherry_hanging_sign", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_planks_from_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 5 - }, - "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -536, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 5 + "legacyId": -537, + "id": "minecraft:cherry_planks", + "count": 4 } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_planks_from_stripped_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -535, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 5, - "count": 3 + "legacyId": -537, + "id": "minecraft:cherry_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "AA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_planks_from_stripped_wood", + "type": 1, "input": { "A": { - "id": 35, - "damage": 6 - }, - "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -545, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 6 + "legacyId": -537, + "id": "minecraft:cherry_planks", + "count": 4 } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_planks_from_wood", + "type": 1, "input": { "A": { - "id": 35, - "damage": 6 - }, - "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -546, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 6 + "legacyId": -537, + "id": "minecraft:cherry_planks", + "count": 4 } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_pressure_plate", + "type": 1, "input": { "A": { - "id": 35, - "damage": 6 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 9 + "legacyId": -538, + "id": "minecraft:cherry_pressure_plate" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_sign", + "type": 1, "input": { "A": { - "id": 35, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 6 + "legacyId": 670, + "id": "minecraft:cherry_sign", + "count": 3 } ], - "priority": 1, "shape": [ "AAA", - "BBB" - ] - }, - { - "block": "crafting_table", - "input": { - "A": { - "id": 35, - "damage": 6 - } - }, - "output": [ - { - "id": 171, - "damage": 6, - "count": 3 - } + "AAA", + " B " ], - "priority": 0, - "shape": [ - "AA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_slab", + "type": 1, "input": { "A": { - "id": 35, - "damage": 7 - }, - "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 7 + "legacyId": -539, + "id": "minecraft:cherry_slab", + "count": 6 } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_stairs", + "type": 1, "input": { "A": { - "id": 35, - "damage": 7 - }, - "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 7 + "legacyId": -541, + "id": "minecraft:cherry_stairs", + "count": 4 } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_trapdoor", + "type": 1, "input": { "A": { - "id": 35, - "damage": 7 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -537, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 8 + "legacyId": -543, + "id": "minecraft:cherry_trapdoor", + "count": 2 } ], - "priority": 0, "shape": [ "AAA", - "AAA", - " B " - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_wood_from_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 7 - }, - "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -536, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 7 + "legacyId": -546, + "id": "minecraft:cherry_wood", + "count": 3 } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cherry_wood_from_stripped_log", + "type": 1, "input": { "A": { - "id": 35, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -535, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 7, + "legacyId": -545, + "id": "minecraft:stripped_cherry_wood", "count": 3 } ], - "priority": 0, "shape": [ + "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 35, - "damage": 8 + "id": "minecraft:chest_boat", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 }, - "B": { - "id": -242, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 383, + "auxValue": 0 } - }, + ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": 657, + "id": "minecraft:oak_chest_boat" } ], - "priority": 2, - "shape": [ - "AAA", - "BBB" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:chest_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 35, - "damage": 8 - }, - "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 8 + "legacyId": 54, + "id": "minecraft:chest" } ], - "priority": 2, "shape": [ "AAA", - "BBB" - ] + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:chest_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 35, - "damage": 8 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 7 + "legacyId": 54, + "id": "minecraft:chest" } ], - "priority": 0, "shape": [ "AAA", - "AAA", - " B " - ] + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:chest_from_warped_planks", + "type": 1, "input": { "A": { - "id": 35, - "damage": 8 - }, - "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 8 + "legacyId": 54, + "id": "minecraft:chest" } ], - "priority": 1, "shape": [ "AAA", - "BBB" - ] + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 35, - "damage": 8 + "id": "minecraft:chest_minecart", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 377, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 171, - "damage": 8, - "count": 3 + "legacyId": 397, + "id": "minecraft:chest_minecart" } ], - "priority": 0, - "shape": [ - "AA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:chiseled_bookshelf", + "type": 1, "input": { "A": { - "id": 35, - "damage": 9 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, "B": { - "id": -242, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:wooden_slabs" } }, "output": [ { - "id": 355, - "damage": 9 + "legacyId": -526, + "id": "minecraft:chiseled_bookshelf" } ], - "priority": 2, "shape": [ "AAA", - "BBB" - ] + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:chiseled_deepslate", + "type": 1, "input": { "A": { - "id": 35, - "damage": 9 - }, - "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -380, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 9 + "legacyId": -395, + "id": "minecraft:chiseled_deepslate" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:chiseled_nether_bricks", + "type": 1, "input": { "A": { - "id": 35, - "damage": 9 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -877, + "auxValue": 32767 } }, "output": [ { - "id": 446, - "damage": 6 + "legacyId": -302, + "id": "minecraft:chiseled_nether_bricks" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:chiseled_polished_blackstone", + "type": 1, "input": { "A": { - "id": 35, - "damage": 9 - }, - "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -293, + "auxValue": 32767 } }, "output": [ { - "id": 355, - "damage": 9 + "legacyId": -279, + "id": "minecraft:chiseled_polished_blackstone" } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:chiseled_tuff", + "type": 1, "input": { "A": { - "id": 35, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -744, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "damage": 9, - "count": 3 + "legacyId": -753, + "id": "minecraft:chiseled_tuff" } ], - "priority": 0, "shape": [ - "AA" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:chiseled_tuff_bricks", + "type": 1, "input": { "A": { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -755, + "auxValue": 32767 } }, "output": [ { - "id": 216 + "legacyId": -759, + "id": "minecraft:chiseled_tuff_bricks" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - "AAA" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:clay", + "type": 1, "input": { "A": { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 392, + "auxValue": 32767 } }, "output": [ { - "id": 22 + "legacyId": 82, + "id": "minecraft:clay" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:clock", + "type": 1, "input": { "A": { - "id": 35 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, "B": { - "id": -242, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } }, "output": [ { - "id": 355 + "legacyId": 401, + "id": "minecraft:clock" } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:coal", + "type": 1, "input": { "A": { - "id": 35 - }, - "B": { - "id": -243, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 173, + "auxValue": 32767 } }, "output": [ { - "id": 355 + "legacyId": 308, + "id": "minecraft:coal", + "count": 9 } ], - "priority": 2, "shape": [ - "AAA", - "BBB" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:coal_block", + "type": 1, "input": { "A": { - "id": 35 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 308, + "auxValue": 0 } }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 173, + "id": "minecraft:coal_block" } ], - "priority": 0, "shape": [ "AAA", "AAA", - " B " - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:coarse_dirt", + "type": 1, "input": { "A": { - "id": 35 + "type": "default", + "count": 1, + "itemId": 3, + "auxValue": 0 }, "B": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } }, "output": [ { - "id": 355 + "legacyId": 3, + "id": "minecraft:dirt", + "count": 4 } ], - "priority": 1, "shape": [ - "AAA", - "BBB" - ] + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:coast_armor_trim_smithing_template_duplicate", + "type": 1, "input": { "A": { - "id": 35 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 702, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 } }, "output": [ { - "id": 171, - "count": 3 + "legacyId": 702, + "id": "minecraft:coast_armor_trim_smithing_template", + "count": 2 } ], - "priority": 0, "shape": [ - "AA" - ] + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cobbled_deepslate_slab", + "type": 1, "input": { "A": { - "id": 360, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 } }, "output": [ { - "id": 103 + "legacyId": -380, + "id": "minecraft:cobbled_deepslate_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", - "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:cobbled_deepslate_stairs", + "type": 1, "input": { "A": { - "id": 360, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 } }, "output": [ { - "id": 362 + "legacyId": -381, + "id": "minecraft:cobbled_deepslate_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:cobbled_deepslate_wall", + "type": 1, "input": { "A": { - "id": 369, - "damage": -1 - }, - "B": { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 } }, "output": [ { - "id": 379 + "legacyId": -382, + "id": "minecraft:cobbled_deepslate_wall", + "count": 6 } ], - "priority": 2, "shape": [ - " A ", - "BBB" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:cobblestone_stairs", + "type": 1, "input": { "A": { - "id": 369, - "damage": -1 - }, - "B": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 } }, "output": [ { - "id": 379 + "legacyId": 67, + "id": "minecraft:stone_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - " A ", - "BBB" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cobblestone_wall", + "type": 1, "input": { "A": { - "id": 369, - "damage": -1 - }, - "B": { - "id": 433, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 } }, "output": [ { - "id": 208, - "count": 4 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:comparator", + "type": 1, "input": { "A": { - "id": 371, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 76, + "auxValue": 32767 }, "B": { - "id": 360, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 } }, "output": [ { - "id": 382 + "legacyId": 538, + "id": "minecraft:comparator" } ], - "priority": 0, "shape": [ - "AAA", + " A ", "ABA", - "AAA" - ] + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:compass", + "type": 1, "input": { "A": { - "id": 371, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 391, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } }, "output": [ { - "id": 396 + "legacyId": 399, + "id": "minecraft:compass" } ], - "priority": 0, "shape": [ - "AAA", + " A ", "ABA", - "AAA" - ] + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:composter", + "type": 1, "input": { "A": { - "id": 371, - "damage": -1 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:wooden_slabs" } }, "output": [ { - "id": 266 + "legacyId": -213, + "id": "minecraft:composter" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", + "A A", + "A A", "AAA" - ] + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:composter_from_crimson_slab", + "type": 1, "input": { "A": { - "id": 372, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -264, + "auxValue": 32767 } }, "output": [ { - "id": 214 + "legacyId": -213, + "id": "minecraft:composter" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", + "A A", + "A A", "AAA" - ] - }, - { - "block": "crafting_table", - "input": { - "A": { - "id": 378, - "damage": -1 - } - }, - "output": [ - { - "id": 213 - } ], - "priority": 0, - "shape": [ - "AA", - "AA" - ] + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:composter_from_mangrove_slab", + "type": 1, "input": { "A": { - "id": 388, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -489, + "auxValue": 32767 } }, "output": [ { - "id": 133 + "legacyId": -213, + "id": "minecraft:composter" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", + "A A", + "A A", "AAA" - ] + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:composter_from_warped_slab", + "type": 1, "input": { "A": { - "id": 3 - }, - "B": { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -265, + "auxValue": 32767 } }, "output": [ { - "id": 3, - "damage": 1, - "count": 4 + "legacyId": -213, + "id": "minecraft:composter" } ], - "priority": 0, "shape": [ - "AB", - "BA" - ] + "A A", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:conduit", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 586, + "auxValue": 32767 }, "B": { - "id": 261, - "damage": -1 - }, - "C": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 587, + "auxValue": 32767 } }, "output": [ { - "id": 23, - "damage": 3 + "legacyId": -157, + "id": "minecraft:conduit" } ], - "priority": 0, "shape": [ "AAA", "ABA", - "ACA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cookie", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 341, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 0 } }, "output": [ { - "id": 272 + "legacyId": 275, + "id": "minecraft:cookie", + "count": 8 } ], - "priority": 0, "shape": [ - "A", - "A", - "B" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:copper_block_from_ingots", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 520, + "auxValue": 32767 } }, "output": [ { - "id": 273 + "legacyId": -340, + "id": "minecraft:copper_block" } ], - "priority": 0, "shape": [ - "A", - "B", - "B" - ] + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:copper_bulb", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } }, "output": [ { - "id": 274 + "legacyId": -776, + "id": "minecraft:copper_bulb", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - " B ", - " B " - ] + " A ", + "ABA", + " C " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:copper_door", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 520, + "auxValue": 32767 } }, "output": [ { - "id": 275 + "legacyId": -784, + "id": "minecraft:copper_door", + "count": 3 } ], - "priority": 0, "shape": [ "AA", - "AB", - " B" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:copper_grate", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 } }, "output": [ { - "id": 291 + "legacyId": -768, + "id": "minecraft:copper_grate", + "count": 4 } ], - "priority": 0, "shape": [ - "AA", - " B", - " B" - ] + " A ", + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:copper_trapdoor", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - }, - "C": { - "id": 406, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 520, + "auxValue": 32767 } }, "output": [ { - "id": 251 + "legacyId": -792, + "id": "minecraft:copper_trapdoor", + "count": 2 } ], - "priority": 0, "shape": [ "AAA", - "BBC", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crafter", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 58, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 + }, + "D": { + "type": "default", + "count": 1, + "itemId": 125, + "auxValue": 32767 } }, "output": [ { - "id": 125, - "damage": 3 + "legacyId": -313, + "id": "minecraft:crafter" } ], - "priority": 0, "shape": [ "AAA", - "A A", - "ABA" - ] + "ABA", + "CDC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_chiseled_copper", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 406, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -361, + "auxValue": 32767 } }, "output": [ { - "id": 1, - "damage": 3, - "count": 2 + "legacyId": -760, + "id": "minecraft:chiseled_copper" } ], - "priority": 0, "shape": [ - "AB", - "BA" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_cut_copper", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 } }, "output": [ { - "id": 139, - "count": 6 + "legacyId": -347, + "id": "minecraft:cut_copper", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_cut_copper_slab", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -347, + "auxValue": 32767 } }, "output": [ { - "id": 61 + "legacyId": -361, + "id": "minecraft:cut_copper_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", - "A A", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_cut_copper_stairs", + "type": 1, "input": { "A": { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -347, + "auxValue": 32767 } }, "output": [ { - "id": 67, + "legacyId": -354, + "id": "minecraft:cut_copper_stairs", "count": 4 } ], - "priority": 0, "shape": [ "A ", "AA ", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_exposed_cut_copper", + "type": 1, "input": { "A": { - "id": 405, - "damage": -1 - }, - "B": { - "id": 372, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 } }, "output": [ { - "id": 215 + "legacyId": -348, + "id": "minecraft:exposed_cut_copper", + "count": 4 } ], - "priority": 0, "shape": [ - "AB", - "BA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_exposed_cut_copper_slab", + "type": 1, "input": { "A": { - "id": 405, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -348, + "auxValue": 32767 } }, "output": [ { - "id": 112 + "legacyId": -362, + "id": "minecraft:exposed_cut_copper_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_exposed_cut_copper_stairs", + "type": 1, "input": { "A": { - "id": 406, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -348, + "auxValue": 32767 } }, "output": [ { - "id": 155 + "legacyId": -355, + "id": "minecraft:exposed_cut_copper_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 409, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 168, - "damage": 1 + "legacyId": 58, + "id": "minecraft:crafting_table" } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 409, - "damage": -1 - }, - "B": { - "id": 351 + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } }, "output": [ { - "id": 168, - "damage": 1 + "legacyId": 58, + "id": "minecraft:crafting_table" } ], - "priority": 1, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_from_warped_planks", + "type": 1, "input": { "A": { - "id": 409, - "damage": -1 - }, - "B": { - "id": 422, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } }, "output": [ { - "id": 169 + "legacyId": 58, + "id": "minecraft:crafting_table" } ], - "priority": 0, "shape": [ - "ABA", - "BBB", - "ABA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_oxidized_cut_copper", + "type": 1, "input": { "A": { - "id": 409, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 } }, "output": [ { - "id": 168, - "damage": 2 + "legacyId": -350, + "id": "minecraft:oxidized_cut_copper", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_oxidized_cut_copper_slab", + "type": 1, "input": { "A": { - "id": 409, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -350, + "auxValue": 32767 } }, "output": [ { - "id": 168 + "legacyId": -364, + "id": "minecraft:oxidized_cut_copper_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_oxidized_cut_copper_stairs", + "type": 1, "input": { "A": { - "id": 41, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -350, + "auxValue": 32767 } }, "output": [ { - "id": 266, - "count": 9 + "legacyId": -357, + "id": "minecraft:oxidized_cut_copper_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_copper_door", + "type": 1, "input": { "A": { - "id": 410, - "damage": -1 - }, - "B": { - "id": 328, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 } }, "output": [ { - "id": 408 + "legacyId": -788, + "id": "minecraft:waxed_copper_door", + "count": 3 } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_cut_copper", + "type": 1, "input": { "A": { - "id": 415, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 } }, "output": [ { - "id": 334 + "legacyId": -351, + "id": "minecraft:waxed_cut_copper", + "count": 4 } ], - "priority": 0, "shape": [ "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_cut_copper_slab", + "type": 1, "input": { "A": { - "id": 42, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -351, + "auxValue": 32767 } }, "output": [ { - "id": 145 + "legacyId": -365, + "id": "minecraft:waxed_cut_copper_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", - " B ", - "BBB" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_cut_copper_stairs", + "type": 1, "input": { "A": { - "id": 42, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -351, + "auxValue": 32767 } }, "output": [ { - "id": 265, - "count": 9 + "legacyId": -358, + "id": "minecraft:waxed_cut_copper_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_exposed_cut_copper", + "type": 1, "input": { "A": { - "id": 433, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -345, + "auxValue": 32767 } }, "output": [ { - "id": 201, + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper", "count": 4 } ], - "priority": 0, "shape": [ "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_exposed_cut_copper_slab", + "type": 1, "input": { "A": { - "id": 44, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -352, + "auxValue": 32767 } }, "output": [ { - "id": 24, - "damage": 1 + "legacyId": -366, + "id": "minecraft:waxed_exposed_cut_copper_slab", + "count": 6 } ], - "priority": 50, "shape": [ - "A", - "A" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_exposed_cut_copper_stairs", + "type": 1, "input": { "A": { - "id": 44, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -352, + "auxValue": 32767 } }, "output": [ { - "id": 98, - "damage": 3 + "legacyId": -359, + "id": "minecraft:waxed_exposed_cut_copper_stairs", + "count": 4 } ], - "priority": 50, "shape": [ - "A", - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper", + "type": 1, "input": { "A": { - "id": 44, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -446, + "auxValue": 32767 } }, "output": [ { - "id": 155, - "damage": 1 + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper", + "count": 4 } ], - "priority": 50, "shape": [ - "A", - "A" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper_slab", + "type": 1, "input": { "A": { - "id": 44, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -447, + "auxValue": 32767 } }, "output": [ { - "id": -302 + "legacyId": -449, + "id": "minecraft:waxed_oxidized_cut_copper_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "A", - "A" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_oxidized_cut_copper_stairs", + "type": 1, "input": { "A": { - "id": 445, - "damage": -1 - }, - "B": { - "id": 54, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -447, + "auxValue": 32767 } }, "output": [ { - "id": 205 + "legacyId": -448, + "id": "minecraft:waxed_oxidized_cut_copper_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "A", - "B", - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_weathered_cut_copper", + "type": 1, "input": { "A": { - "id": 45, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -346, + "auxValue": 32767 } }, "output": [ { - "id": 108, + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper", "count": 4 } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_weathered_cut_copper_slab", + "type": 1, "input": { "A": { - "id": 45, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -353, + "auxValue": 32767 } }, "output": [ { - "id": 139, - "damage": 6, + "legacyId": -367, + "id": "minecraft:waxed_weathered_cut_copper_slab", "count": 6 } ], - "priority": 0, "shape": [ - "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_waxed_weathered_cut_copper_stairs", + "type": 1, "input": { "A": { - "id": 452, - "damage": -1 - }, - "B": { - "id": -268, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -353, + "auxValue": 32767 } }, "output": [ { - "id": -269 + "legacyId": -360, + "id": "minecraft:waxed_weathered_cut_copper_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "ABA", + "A ", + "AA ", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_weathered_cut_copper", + "type": 1, "input": { "A": { - "id": 452, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 } }, "output": [ { - "id": 758 + "legacyId": -349, + "id": "minecraft:weathered_cut_copper", + "count": 4 } ], - "priority": 0, "shape": [ - "A", - "B", - "A" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_weathered_cut_copper_slab", + "type": 1, "input": { "A": { - "id": 452, - "damage": -1 - }, - "B": { - "id": 50, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -349, + "auxValue": 32767 } }, "output": [ { - "id": -208 + "legacyId": -363, + "id": "minecraft:weathered_cut_copper_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", - "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crafting_table_weathered_cut_copper_stairs", + "type": 1, "input": { "A": { - "id": 452, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -349, + "auxValue": 32767 } }, "output": [ { - "id": 265 + "legacyId": -356, + "id": "minecraft:weathered_cut_copper_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "AAA", + "A ", + "AA ", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:crimson_button", + "type": 1, "input": { "A": { - "id": 45 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 44, - "damage": 4, - "count": 6 + "legacyId": -260, + "id": "minecraft:crimson_button" } ], - "priority": 50, "shape": [ - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_door", + "type": 1, "input": { "A": { - "id": 464, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": -139 + "legacyId": 635, + "id": "minecraft:crimson_door", + "count": 3 } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - "AAA" - ] + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_fence", + "type": 1, "input": { "A": { - "id": 465, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, "B": { - "id": 467, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": -157 + "legacyId": -256, + "id": "minecraft:crimson_fence", + "count": 3 } ], - "priority": 0, "shape": [ - "AAA", "ABA", - "AAA" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_fence_gate", + "type": 1, "input": { "A": { - "id": 468, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 469 + "legacyId": -258, + "id": "minecraft:crimson_fence_gate" } ], - "priority": 0, "shape": [ - "AAA", - "A A" - ] + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_hanging_sign", + "type": 1, "input": { "A": { - "id": 46 + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, "B": { - "id": 328, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -240, + "auxValue": 32767 } }, "output": [ { - "id": 407 + "legacyId": -506, + "id": "minecraft:crimson_hanging_sign", + "count": 6 } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_hyphae", + "type": 1, "input": { "A": { - "id": 48, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -225, + "auxValue": 32767 } }, "output": [ { - "id": -179, - "count": 4 + "legacyId": -299, + "id": "minecraft:crimson_hyphae", + "count": 3 } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_planks", + "type": 1, "input": { "A": { - "id": 48, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -225, + "auxValue": 32767 } }, "output": [ { - "id": 139, - "damage": 1, - "count": 6 + "legacyId": -242, + "id": "minecraft:crimson_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_planks_from_crimson_hyphae", + "type": 1, "input": { "A": { - "id": 48 + "type": "default", + "count": 1, + "itemId": -299, + "auxValue": 32767 } }, "output": [ { - "id": 182, - "damage": 5, - "count": 6 + "legacyId": -242, + "id": "minecraft:crimson_planks", + "count": 4 } ], - "priority": 50, "shape": [ - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_planks_from_stripped_crimson_hyphae", + "type": 1, "input": { "A": { - "id": 49, - "damage": -1 - }, - "B": { - "id": 381, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -300, + "auxValue": 32767 } }, "output": [ { - "id": 130 + "legacyId": -242, + "id": "minecraft:crimson_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_planks_from_stripped_log", + "type": 1, "input": { "A": { - "id": 4 + "type": "default", + "count": 1, + "itemId": -240, + "auxValue": 32767 } }, "output": [ { - "id": 44, - "damage": 3, - "count": 6 + "legacyId": -242, + "id": "minecraft:crimson_planks", + "count": 4 } ], - "priority": 50, "shape": [ - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_pressure_plate", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 264, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 84 + "legacyId": -262, + "id": "minecraft:crimson_pressure_plate" } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_sign", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, "B": { - "id": 265, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 513 + "legacyId": 633, + "id": "minecraft:crimson_sign", + "count": 3 } ], - "priority": 0, "shape": [ - "ABA", "AAA", - " A " - ] + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_slab", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 268 + "legacyId": -264, + "id": "minecraft:crimson_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "A", - "A", - "B" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_stairs", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 269 + "legacyId": -254, + "id": "minecraft:crimson_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "A", - "B", - "B" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crimson_trapdoor", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 270 + "legacyId": -246, + "id": "minecraft:crimson_trapdoor", + "count": 2 } ], - "priority": 0, "shape": [ "AAA", - " B ", - " B " - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:crossbow", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 + }, + "D": { + "type": "default", + "count": 1, + "itemId": 131, + "auxValue": 32767 } }, "output": [ { - "id": 271 + "legacyId": 591, + "id": "minecraft:crossbow" } ], - "priority": 0, "shape": [ - "AA", - "AB", - " B" - ] + "ABA", + "CDC", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cyan_banner", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 290 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 6, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 0, "shape": [ - "AA", - " B", - " B" - ] + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 5, - "damage": -1 + "id": "minecraft:cyan_candle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "B": { - "id": 331, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 0 } - }, + ], "output": [ { - "id": 25 + "legacyId": -422, + "id": "minecraft:cyan_candle" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cyan_carpet", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 340, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } }, "output": [ { - "id": 47 + "legacyId": -605, + "id": "minecraft:cyan_carpet", + "count": 3 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "AAA" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cyan_carpet_from_white", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, "B": { - "id": 4 - }, - "C": { - "id": 265, - "damage": -1 - }, - "D": { - "id": 331, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 0 } }, "output": [ { - "id": 33, - "damage": 1 + "legacyId": -605, + "id": "minecraft:cyan_carpet", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", - "BCB", - "BDB" - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 5, - "damage": -1 + "id": "minecraft:cyan_concrete_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 0 }, - "B": { - "id": 736, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": -219 + "legacyId": -717, + "id": "minecraft:cyan_concrete_powder", + "count": 8 } ], - "priority": 0, - "shape": [ - "AAA", - "BBB", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 5, - "damage": -1 + "id": "minecraft:cyan_dye", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 } - }, + ], "output": [ { - "id": 280, - "count": 4 + "legacyId": 409, + "id": "minecraft:cyan_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "A", - "A" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 5, - "damage": -1 + "id": "minecraft:cyan_dye_from_lapis_lazuli", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 } - }, + ], "output": [ { - "id": 281, - "count": 4 + "legacyId": 409, + "id": "minecraft:cyan_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "A A", - " A " - ] + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 5, - "damage": -1 + "id": "minecraft:cyan_dye_from_pitcher_plant", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -612, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 54 + "legacyId": 409, + "id": "minecraft:cyan_dye" } ], - "priority": 0, - "shape": [ - "AAA", - "A A", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cyan_stained_glass", + "type": 1, "input": { "A": { - "id": 5, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 0 } }, "output": [ { - "id": 58 + "legacyId": -681, + "id": "minecraft:cyan_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cyan_stained_glass_pane", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 - }, - "B": { - "id": 269, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -681, + "auxValue": 32767 } }, "output": [ { - "id": 333, - "damage": 1 + "legacyId": -651, + "id": "minecraft:cyan_stained_glass_pane", + "count": 16 } ], - "priority": 0, "shape": [ - "ABA", + "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cyan_stained_glass_pane_from_pane", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 0 } }, "output": [ { - "id": 472, - "count": 3 + "legacyId": -651, + "id": "minecraft:cyan_stained_glass_pane", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", - "AAA", - " B " - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:cyan_stained_hardened_clay", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 0 } }, "output": [ { - "id": 85, - "damage": 1, - "count": 3 + "legacyId": -732, + "id": "minecraft:cyan_terracotta", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ABA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_boat", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": -144 + "legacyId": 388, + "id": "minecraft:dark_oak_boat" } ], - "priority": 50, "shape": [ - "A" - ] + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 5, - "damage": 1 + "id": "minecraft:dark_oak_chest_boat", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 388, + "auxValue": 0 } - }, + ], "output": [ { - "id": -149, - "count": 2 + "legacyId": 662, + "id": "minecraft:dark_oak_chest_boat" } ], - "priority": 50, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_door", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": -154 + "legacyId": 573, + "id": "minecraft:dark_oak_door", + "count": 3 } ], - "priority": 50, "shape": [ + "AA", + "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_fence", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 134, - "count": 4 + "legacyId": -577, + "id": "minecraft:dark_oak_fence", + "count": 3 } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_fence_gate", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": 134, - "count": 4 + "legacyId": 186, + "id": "minecraft:dark_oak_fence_gate" } ], - "priority": 50, "shape": [ - "A ", - "AA ", - "AAA" - ] + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_hanging_sign", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -9, + "auxValue": 32767 } }, "output": [ { - "id": 158, - "damage": 1, + "legacyId": -505, + "id": "minecraft:dark_oak_hanging_sign", "count": 6 } ], - "priority": 0, "shape": [ - "AAA" - ] + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_planks", + "type": 1, "input": { "A": { - "id": 5, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -572, + "auxValue": 0 } }, "output": [ { - "id": 427, - "count": 3 + "legacyId": -743, + "id": "minecraft:dark_oak_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "AA", - "AA", - "AA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_planks_from_stripped", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 - }, - "B": { - "id": 269, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -9, + "auxValue": 32767 } }, "output": [ { - "id": 333, - "damage": 2 + "legacyId": -743, + "id": "minecraft:dark_oak_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "ABA", - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_planks_from_stripped_wood", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -824, + "auxValue": 32767 } }, "output": [ { - "id": 473, - "count": 3 + "legacyId": -743, + "id": "minecraft:dark_oak_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_planks_from_wood", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -818, + "auxValue": 32767 } }, "output": [ { - "id": 85, - "damage": 2, - "count": 3 + "legacyId": -743, + "id": "minecraft:dark_oak_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_stairs", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": -141 + "legacyId": 164, + "id": "minecraft:dark_oak_stairs", + "count": 4 } ], - "priority": 50, "shape": [ - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_wood", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -572, + "auxValue": 32767 } }, "output": [ { - "id": -146, - "count": 2 + "legacyId": -818, + "id": "minecraft:dark_oak_wood", + "count": 3 } ], - "priority": 50, "shape": [ - "AAA", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_wood_stripped", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -9, + "auxValue": 32767 } }, "output": [ { - "id": -151 + "legacyId": -824, + "id": "minecraft:stripped_dark_oak_wood", + "count": 3 } ], - "priority": 50, "shape": [ + "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_oak_wooden_slab", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 } }, "output": [ { - "id": 135, - "count": 4 + "legacyId": -808, + "id": "minecraft:dark_oak_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "A ", - "AA ", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_prismarine", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 581, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 } }, "output": [ { - "id": 135, - "count": 4 + "legacyId": 168, + "id": "minecraft:prismarine" } ], - "priority": 50, "shape": [ - "A ", - "AA ", + "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dark_prismarine_from_ink_sac", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 581, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 } }, "output": [ { - "id": 158, - "damage": 2, - "count": 6 + "legacyId": 168, + "id": "minecraft:prismarine" } ], - "priority": 0, "shape": [ + "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:daylight_detector_from_crimson_slab", + "type": 1, "input": { "A": { - "id": 5, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -264, + "auxValue": 32767 } }, "output": [ { - "id": 428, - "count": 3 + "legacyId": 151, + "id": "minecraft:daylight_detector" } ], - "priority": 0, "shape": [ - "AA", - "AA", - "AA" - ] + "AAA", + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:daylight_detector_from_mangrove_slab", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 269, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -489, + "auxValue": 32767 } }, "output": [ { - "id": 333, - "damage": 3 + "legacyId": 151, + "id": "minecraft:daylight_detector" } ], - "priority": 0, "shape": [ - "ABA", - "AAA" - ] + "AAA", + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:daylight_detector_from_warped_slab", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -265, + "auxValue": 32767 } }, "output": [ { - "id": 474, - "count": 3 + "legacyId": 151, + "id": "minecraft:daylight_detector" } ], - "priority": 0, "shape": [ "AAA", - "AAA", - " B " - ] + "BBB", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:deepslate_brick_slab", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 32767 } }, "output": [ { - "id": 85, - "damage": 3, - "count": 3 + "legacyId": -392, + "id": "minecraft:deepslate_brick_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:deepslate_brick_stairs", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 32767 } }, "output": [ { - "id": -143 + "legacyId": -393, + "id": "minecraft:deepslate_brick_stairs", + "count": 4 } ], - "priority": 50, "shape": [ - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:deepslate_brick_wall", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 32767 } }, "output": [ { - "id": -148, - "count": 2 + "legacyId": -394, + "id": "minecraft:deepslate_brick_wall", + "count": 6 } ], - "priority": 50, "shape": [ "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:deepslate_bricks", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 32767 } }, "output": [ { - "id": -153 + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "count": 4 } ], - "priority": 50, "shape": [ + "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:deepslate_tile_slab", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -387, + "auxValue": 32767 } }, "output": [ { - "id": 136, - "count": 4 + "legacyId": -388, + "id": "minecraft:deepslate_tile_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "A ", - "AA ", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:deepslate_tile_stairs", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -387, + "auxValue": 32767 } }, "output": [ { - "id": 136, + "legacyId": -389, + "id": "minecraft:deepslate_tile_stairs", "count": 4 } ], - "priority": 50, "shape": [ "A ", "AA ", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:deepslate_tile_wall", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -387, + "auxValue": 32767 } }, "output": [ { - "id": 158, - "damage": 3, + "legacyId": -390, + "id": "minecraft:deepslate_tile_wall", "count": 6 } ], - "priority": 0, "shape": [ + "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:deepslate_tiles", + "type": 1, "input": { "A": { - "id": 5, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -391, + "auxValue": 32767 } }, "output": [ { - "id": 429, - "count": 3 + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "count": 4 } ], - "priority": 0, "shape": [ - "AA", "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:detector_rail", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 269, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 70, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } }, "output": [ { - "id": 333, - "damage": 4 + "legacyId": 28, + "id": "minecraft:detector_rail", + "count": 6 } ], - "priority": 0, "shape": [ + "A A", "ABA", - "AAA" - ] + "ACA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 - }, - "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 57, + "auxValue": 32767 } }, "output": [ { - "id": 475, - "count": 3 + "legacyId": 310, + "id": "minecraft:diamond", + "count": 9 } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_axe", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 85, - "damage": 4, - "count": 3 + "legacyId": 325, + "id": "minecraft:diamond_axe" } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_block", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": -140 + "legacyId": 57, + "id": "minecraft:diamond_block" } ], - "priority": 50, "shape": [ - "A" - ] + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_boots", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": -145, - "count": 2 + "legacyId": 357, + "id": "minecraft:diamond_boots" } ], - "priority": 50, "shape": [ - "AAA", - "AAA" - ] + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_chestplate", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": -150 + "legacyId": 355, + "id": "minecraft:diamond_chestplate" } ], - "priority": 50, "shape": [ - "AA" - ] + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_helmet", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": 158, - "damage": 4, - "count": 6 + "legacyId": 354, + "id": "minecraft:diamond_helmet" } ], - "priority": 0, "shape": [ - "AAA" - ] + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_hoe", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 163, - "count": 4 + "legacyId": 339, + "id": "minecraft:diamond_hoe" } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_leggings", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": 163, - "count": 4 + "legacyId": 356, + "id": "minecraft:diamond_leggings" } ], - "priority": 50, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_pickaxe", + "type": 1, "input": { "A": { - "id": 5, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 430, - "count": 3 + "legacyId": 324, + "id": "minecraft:diamond_pickaxe" } ], - "priority": 0, "shape": [ - "AA", - "AA", - "AA" - ] + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_shovel", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, "B": { - "id": 269, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 333, - "damage": 5 + "legacyId": 323, + "id": "minecraft:diamond_shovel" } ], - "priority": 0, "shape": [ - "ABA", - "AAA" - ] + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diamond_sword", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 476, - "count": 3 + "legacyId": 322, + "id": "minecraft:diamond_sword" } ], - "priority": 0, "shape": [ - "AAA", - "AAA", - " B " - ] + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diorite", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 } }, "output": [ { - "id": 85, - "damage": 5, - "count": 3 + "legacyId": -592, + "id": "minecraft:diorite", + "count": 2 } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diorite_stairs", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 } }, "output": [ { - "id": -142 + "legacyId": -170, + "id": "minecraft:diorite_stairs", + "count": 4 } ], - "priority": 50, "shape": [ - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:diorite_wall", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 } }, "output": [ { - "id": -147, - "count": 2 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 50, "shape": [ "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dispenser", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 306, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } }, "output": [ { - "id": -152 + "legacyId": 23, + "id": "minecraft:dispenser" } ], - "priority": 50, "shape": [ - "AA" - ] + "AAA", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dried_kelp", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -139, + "auxValue": 32767 } }, "output": [ { - "id": 158, - "damage": 5, - "count": 6 + "legacyId": 274, + "id": "minecraft:dried_kelp", + "count": 9 } ], - "priority": 0, "shape": [ - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dried_kelp_block", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 274, + "auxValue": 32767 } }, "output": [ { - "id": 164, - "count": 4 + "legacyId": -139, + "id": "minecraft:dried_kelp_block" } ], - "priority": 0, "shape": [ - "A ", - "AA ", + "AAA", + "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dripstone_block", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -308, + "auxValue": 32767 } }, "output": [ { - "id": 164, - "count": 4 + "legacyId": -317, + "id": "minecraft:dripstone_block" } ], - "priority": 50, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:dripstone_block_from_pointed_dripstone", + "type": 1, "input": { "A": { - "id": 5, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -308, + "auxValue": 32767 } }, "output": [ { - "id": 431, - "count": 3 + "legacyId": -317, + "id": "minecraft:dripstone_block" } ], - "priority": 0, "shape": [ - "AA", "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { + "id": "minecraft:dropper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 + } + }, + "output": [ + { + "legacyId": 125, + "id": "minecraft:dropper" + } + ], + "shape": [ + "AAA", + "A A", + "ABA" + ], "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:dune_armor_trim_smithing_template_duplicate", + "type": 1, "input": { "A": { - "id": 54, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, "B": { - "id": 328, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 701, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 32767 } }, "output": [ { - "id": 342 + "legacyId": 701, + "id": "minecraft:dune_armor_trim_smithing_template", + "count": 2 } ], - "priority": 0, - "shape": [ - "A", - "B" - ] + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:emerald", + "type": 1, "input": { "A": { - "id": 57, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 133, + "auxValue": 32767 } }, "output": [ { - "id": 264, + "legacyId": 528, + "id": "minecraft:emerald", "count": 9 } ], - "priority": 0, "shape": [ "A" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:emerald_block", + "type": 1, "input": { "A": { - "id": 5 - }, - "B": { - "id": 269, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 528, + "auxValue": 32767 } }, "output": [ { - "id": 333 + "legacyId": 133, + "id": "minecraft:emerald_block" } ], - "priority": 0, "shape": [ - "ABA", + "AAA", + "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 5 + "id": "minecraft:empty_map_to_enhanced", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 531, + "auxValue": 0 }, - "B": { - "id": 280, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 399, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 323, - "count": 3 + "legacyId": 531, + "id": "minecraft:empty_map", + "damage": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA", - " B " - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:enchanting_table", + "type": 1, "input": { "A": { - "id": 5 + "type": "default", + "count": 1, + "itemId": 395, + "auxValue": 32767 }, "B": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 49, + "auxValue": 32767 } }, "output": [ { - "id": 85, - "count": 3 + "legacyId": 116, + "id": "minecraft:enchanting_table" } ], - "priority": 0, "shape": [ - "ABA", - "ABA" - ] + " A ", + "BCB", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:end_brick_stairs", + "type": 1, "input": { "A": { - "id": 5 + "type": "default", + "count": 1, + "itemId": 206, + "auxValue": 32767 } }, "output": [ { - "id": 143 + "legacyId": -178, + "id": "minecraft:end_brick_stairs", + "count": 4 } ], - "priority": 50, "shape": [ - "A" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:end_brick_wall", + "type": 1, "input": { "A": { - "id": 5 + "type": "default", + "count": 1, + "itemId": 206, + "auxValue": 32767 } }, "output": [ { - "id": 158, + "legacyId": 139, + "id": "minecraft:cobblestone_wall", "count": 6 } ], - "priority": 0, "shape": [ + "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:end_bricks", + "type": 1, "input": { "A": { - "id": 5 + "type": "default", + "count": 1, + "itemId": 121, + "auxValue": 32767 } }, "output": [ { - "id": 324, - "count": 3 + "legacyId": 206, + "id": "minecraft:end_bricks", + "count": 4 } ], - "priority": 0, "shape": [ - "AA", "AA", "AA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:end_crystal", + "type": 1, "input": { "A": { - "id": 5 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 442, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 433, + "auxValue": 32767 } }, "output": [ { - "id": 53, - "count": 4 + "legacyId": 758, + "id": "minecraft:end_crystal" } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AAA", + "ABA", + "ACA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:end_rod", + "type": 1, "input": { "A": { - "id": 5 + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 575, + "auxValue": 32767 } }, "output": [ { - "id": 53, + "legacyId": 208, + "id": "minecraft:end_rod", "count": 4 } ], - "priority": 50, "shape": [ - "A ", - "AA ", - "AAA" - ] + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:ender_chest", + "type": 1, "input": { "A": { - "id": 5 + "type": "default", + "count": 1, + "itemId": 49, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 442, + "auxValue": 32767 } }, "output": [ { - "id": 72 + "legacyId": 130, + "id": "minecraft:ender_chest" } ], - "priority": 50, "shape": [ - "AA" - ] + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 5 + "id": "minecraft:ender_eye", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 430, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 438, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 96, - "count": 2 + "legacyId": 442, + "id": "minecraft:ender_eye" } ], - "priority": 50, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:exposed_chiseled_copper", + "type": 1, "input": { "A": { - "id": 736, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -362, + "auxValue": 32767 } }, "output": [ { - "id": -221 + "legacyId": -761, + "id": "minecraft:exposed_chiseled_copper" } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:exposed_copper_bulb", + "type": 1, "input": { "A": { - "id": 737, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } }, "output": [ { - "id": -220 - }, - { - "id": 374, + "legacyId": -777, + "id": "minecraft:exposed_copper_bulb", "count": 4 } ], - "priority": 0, "shape": [ - "AA", - "AA" - ] + " A ", + "ABA", + " C " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:exposed_copper_grate", + "type": 1, "input": { "A": { - "id": 737, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 } }, "output": [ { - "id": 353, - "count": 3 - }, - { - "id": 374 + "legacyId": -769, + "id": "minecraft:exposed_copper_grate", + "count": 4 } ], - "priority": 0, "shape": [ - "A" - ] + " A ", + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:eye_armor_trim_smithing_template_duplicate", + "type": 1, "input": { "A": { - "id": 742, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 705, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 121, + "auxValue": 32767 } }, "output": [ { - "id": -270 + "legacyId": 705, + "id": "minecraft:eye_armor_trim_smithing_template", + "count": 2 } ], - "priority": 0, "shape": [ - "AAA", - "AAA", + "ABA", + "ACA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:fence", + "type": 1, "input": { "A": { - "id": 76, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 }, "B": { - "id": 331, - "damage": -1 - }, - "C": { - "id": 1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 356 + "legacyId": 85, + "id": "minecraft:oak_fence", + "count": 3 } ], - "priority": 0, "shape": [ "ABA", - "CCC" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:fence_gate", + "type": 1, "input": { "A": { - "id": 76, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 406, - "damage": -1 - }, - "C": { - "id": 1 + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 } }, "output": [ { - "id": 404 + "legacyId": 107, + "id": "minecraft:fence_gate" } ], - "priority": 0, "shape": [ - " A ", "ABA", - "CCC" - ] + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 79, - "damage": -1 + "id": "minecraft:fermented_spider_eye", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 282, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 424, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 174 + "legacyId": 437, + "id": "minecraft:fermented_spider_eye" } ], - "priority": 0, - "shape": [ - "AAA", - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:fishing_rod", + "type": 1, "input": { "A": { - "id": 80, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 } }, "output": [ { - "id": 78, - "count": 6 + "legacyId": 400, + "id": "minecraft:fishing_rod" } ], - "priority": 0, "shape": [ - "AAA" - ] + " A", + " AB", + "A B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:fletching_table", + "type": 1, "input": { "A": { - "id": 86, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 363, + "auxValue": 32767 + }, + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 361, - "count": 4 + "legacyId": -201, + "id": "minecraft:fletching_table" } ], - "priority": 0, "shape": [ - "A" - ] + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:fletching_table_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 98, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 363, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": -166, - "count": 6 + "legacyId": -201, + "id": "minecraft:fletching_table" } ], - "priority": 50, "shape": [ - "AAA" - ] + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:fletching_table_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 98, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 363, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } }, "output": [ { - "id": -175, - "count": 4 + "legacyId": -201, + "id": "minecraft:fletching_table" } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:fletching_table_from_warped_planks", + "type": 1, "input": { "A": { - "id": 98, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 363, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } }, "output": [ { - "id": 139, - "damage": 8, - "count": 6 + "legacyId": -201, + "id": "minecraft:fletching_table" } ], - "priority": 0, "shape": [ - "AAA", - "AAA" - ] + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { + "id": "minecraft:flint_and_steel", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 363, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": 305, + "id": "minecraft:flint_and_steel" + } + ], "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:flow_armor_trim_smithing_template_duplicate", + "type": 1, "input": { "A": { - "id": 98, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, "B": { - "id": 742, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 716, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 432, + "auxValue": 32767 } }, "output": [ { - "id": -222 + "legacyId": 716, + "id": "minecraft:flow_armor_trim_smithing_template", + "count": 2 } ], - "priority": 0, "shape": [ - "AAA", "ABA", + "ACA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:flower_pot", + "type": 1, "input": { "A": { - "id": 98 + "type": "default", + "count": 1, + "itemId": 391, + "auxValue": 32767 } }, "output": [ { - "id": 109, - "count": 4 + "legacyId": 530, + "id": "minecraft:flower_pot" } ], - "priority": 0, "shape": [ - "A ", - "AA ", - "AAA" - ] + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:furnace", + "type": 1, "input": { "A": { - "id": 98 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:stone_crafting_materials" } }, "output": [ { - "id": 139, - "damage": 7, - "count": 6 + "legacyId": 61, + "id": "minecraft:furnace" } ], - "priority": 0, "shape": [ "AAA", + "A A", "AAA" - ] + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:furnace_from_blackstone", + "type": 1, "input": { "A": { - "id": 98 + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 } }, "output": [ { - "id": 44, - "damage": 5, - "count": 6 + "legacyId": 61, + "id": "minecraft:furnace" } ], - "priority": 50, "shape": [ + "AAA", + "A A", "AAA" - ] - } - ], - "shaped_chemistry": [ - { + ], "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:furnace_from_cobbled_deepslate", + "type": 1, "input": { "A": { - "id": -22 - }, - "B": { - "id": 46 + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 } }, "output": [ { - "id": 46, - "damage": 2 + "legacyId": 61, + "id": "minecraft:furnace" } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "AAA", + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:glass_bottle", + "type": 1, "input": { "A": { - "id": -23 - }, - "B": { - "id": 50 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 } }, "output": [ { - "id": 239 + "legacyId": 436, + "id": "minecraft:glass_bottle", + "count": 3 } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:glass_pane", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 5, - "count": 8 + "legacyId": 102, + "id": "minecraft:glass_pane", + "count": 16 } ], - "priority": 0, "shape": [ "AAA", - "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 253 + "id": "minecraft:glow_frame", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 529, + "auxValue": 32767 }, - "B": { - "id": 351, - "damage": 11 + { + "type": "default", + "count": 1, + "itemId": 519, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 254, - "damage": 4, - "count": 8 + "legacyId": 642, + "id": "minecraft:glow_frame" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:glowstone", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 402, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 3, - "count": 8 + "legacyId": 89, + "id": "minecraft:glowstone" } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gold_block", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 2, - "count": 8 + "legacyId": 41, + "id": "minecraft:gold_block" } ], - "priority": 0, "shape": [ "AAA", - "ABA", + "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gold_ingot_from_block", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 41, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 1, - "count": 8 + "legacyId": 312, + "id": "minecraft:gold_ingot", + "count": 9 } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gold_ingot_from_nuggets", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 434, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "count": 8 + "legacyId": 312, + "id": "minecraft:gold_ingot" } ], - "priority": 0, "shape": [ "AAA", - "ABA", + "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gold_nugget", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 15, - "count": 8 + "legacyId": 434, + "id": "minecraft:gold_nugget", + "count": 9 } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_apple", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 257, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 12, - "count": 8 + "legacyId": 262, + "id": "minecraft:golden_apple" } ], - "priority": 0, "shape": [ "AAA", "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_axe", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 11, - "count": 8 + "legacyId": 332, + "id": "minecraft:golden_axe" } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_boots", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "count": 8 + "legacyId": 361, + "id": "minecraft:golden_boots" } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_carrot", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": 434, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 283, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 14, - "count": 8 + "legacyId": 287, + "id": "minecraft:golden_carrot" } ], - "priority": 0, "shape": [ "AAA", "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_chestplate", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 13, - "count": 8 + "legacyId": 359, + "id": "minecraft:golden_chestplate" } ], - "priority": 0, "shape": [ + "A A", "AAA", - "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_helmet", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 12, - "count": 8 + "legacyId": 358, + "id": "minecraft:golden_helmet" } ], - "priority": 0, "shape": [ "AAA", - "ABA", - "AAA" - ] + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_hoe", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 11, - "count": 8 + "legacyId": 340, + "id": "minecraft:golden_hoe" } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_leggings", + "type": 1, "input": { "A": { - "id": 253 - }, - "B": { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 10, - "count": 8 + "legacyId": 360, + "id": "minecraft:golden_leggings" } ], - "priority": 0, "shape": [ "AAA", - "ABA", - "AAA" - ] + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_pickaxe", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 9, - "count": 8 + "legacyId": 331, + "id": "minecraft:golden_pickaxe" } ], - "priority": 0, "shape": [ "AAA", - "ABA", - "AAA" - ] + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_rail", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 8, - "count": 8 + "legacyId": 27, + "id": "minecraft:golden_rail", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", + "A A", "ABA", - "AAA" - ] + "ACA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_shovel", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 7, - "count": 8 + "legacyId": 330, + "id": "minecraft:golden_shovel" } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:golden_sword", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 6, - "count": 8 + "legacyId": 329, + "id": "minecraft:golden_sword" } ], - "priority": 0, "shape": [ - "AAA", - "ABA", - "AAA" - ] + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 253 + "id": "minecraft:granite", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 }, - "B": { - "id": 351 + { + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 254, - "damage": 15, - "count": 8 + "legacyId": -590, + "id": "minecraft:granite" } ], - "priority": 0, - "shape": [ - "AAA", - "ABA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:granite_stairs", + "type": 1, "input": { "A": { - "id": 253 + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 } }, "output": [ { - "id": 190, - "count": 16 + "legacyId": -169, + "id": "minecraft:granite_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", + "A ", + "AA ", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:granite_wall", + "type": 1, "input": { "A": { - "id": 254, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 10, - "count": 16 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 0, "shape": [ "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gray_banner", + "type": 1, "input": { "A": { - "id": 254, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 11, - "count": 16 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 8, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 0, "shape": [ "AAA", - "AAA" - ] + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 254, - "damage": 11 + "id": "minecraft:gray_candle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 0 } - }, + ], "output": [ { - "id": 191, - "damage": 11, - "count": 16 + "legacyId": -420, + "id": "minecraft:gray_candle" } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gray_carpet", + "type": 1, "input": { "A": { - "id": 254, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 12, - "count": 16 + "legacyId": -603, + "id": "minecraft:gray_carpet", + "count": 3 } ], - "priority": 0, "shape": [ - "AAA", - "AAA" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gray_carpet_from_white", + "type": 1, "input": { "A": { - "id": 254, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 12, - "count": 16 + "legacyId": -603, + "id": "minecraft:gray_carpet", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 254, - "damage": 13 + "id": "minecraft:gray_concrete_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 191, - "damage": 13, - "count": 16 + "legacyId": -715, + "id": "minecraft:gray_concrete_powder", + "count": 8 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 254, - "damage": 14 + "id": "minecraft:gray_dye", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } - }, + ], "output": [ { - "id": 191, - "damage": 14, - "count": 16 + "legacyId": 411, + "id": "minecraft:gray_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 254, - "damage": 15 + "id": "minecraft:gray_dye_from_black_bonemeal", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } - }, + ], "output": [ { - "id": 191, - "damage": 15, - "count": 16 + "legacyId": 411, + "id": "minecraft:gray_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 254, - "damage": 15 + "id": "minecraft:gray_dye_from_ink_bonemeal", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } - }, + ], "output": [ { - "id": 191, - "damage": 15, - "count": 16 + "legacyId": 411, + "id": "minecraft:gray_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 3 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 254, - "damage": 1 + "id": "minecraft:gray_dye_from_ink_white", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } - }, + ], "output": [ { - "id": 191, - "damage": 1, - "count": 16 + "legacyId": 411, + "id": "minecraft:gray_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "AAA", - "AAA" - ] + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:gray_stained_glass", + "type": 1, "input": { "A": { - "id": 254, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 2, - "count": 16 + "legacyId": -679, + "id": "minecraft:gray_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gray_stained_glass_pane", + "type": 1, "input": { "A": { - "id": 254, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -679, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 3, + "legacyId": -649, + "id": "minecraft:gray_stained_glass_pane", "count": 16 } ], - "priority": 0, "shape": [ "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gray_stained_glass_pane_from_pane", + "type": 1, "input": { "A": { - "id": 254, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 4, - "count": 16 + "legacyId": -649, + "id": "minecraft:gray_stained_glass_pane", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:gray_stained_hardened_clay", + "type": 1, "input": { "A": { - "id": 254, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 5, - "count": 16 + "legacyId": -730, + "id": "minecraft:gray_terracotta", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:green_banner", + "type": 1, "input": { "A": { - "id": 254, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 6, - "count": 16 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 2, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 0, "shape": [ "AAA", - "AAA" - ] + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { + "id": "minecraft:green_candle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 + } + ], + "output": [ + { + "legacyId": -426, + "id": "minecraft:green_candle" + } + ], "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_carpet", + "type": 1, "input": { "A": { - "id": 254, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 7, - "count": 16 + "legacyId": -609, + "id": "minecraft:green_carpet", + "count": 3 } ], - "priority": 0, "shape": [ - "AAA", - "AAA" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:green_carpet_from_white", + "type": 1, "input": { "A": { - "id": 254, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 8, - "count": 16 + "legacyId": -609, + "id": "minecraft:green_carpet", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { + "id": "minecraft:green_concrete_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + } + ], + "output": [ + { + "legacyId": -721, + "id": "minecraft:green_concrete_powder", + "count": 8 + } + ], "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:green_stained_glass", + "type": 1, "input": { "A": { - "id": 254, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 } }, "output": [ { - "id": 191, - "damage": 9, - "count": 16 + "legacyId": -685, + "id": "minecraft:green_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:green_stained_glass_pane", + "type": 1, "input": { "A": { - "id": 254 + "type": "default", + "count": 1, + "itemId": -685, + "auxValue": 32767 } }, "output": [ { - "id": 191, + "legacyId": -655, + "id": "minecraft:green_stained_glass_pane", "count": 16 } ], - "priority": 0, "shape": [ "AAA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:green_stained_glass_pane_from_pane", + "type": 1, "input": { "A": { - "id": 254 + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 } }, "output": [ { - "id": 191, - "count": 16 + "legacyId": -655, + "id": "minecraft:green_stained_glass_pane", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", + "ABA", "AAA" - ] + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:green_stained_hardened_clay", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, "B": { - "id": 102 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 } }, "output": [ { - "id": 190, - "count": 3 + "legacyId": -736, + "id": "minecraft:green_terracotta", + "count": 8 } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:grindstone", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 160, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -166, + "auxValue": 2 }, "C": { - "id": 499, - "damage": 14 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } }, "output": [ { - "id": 191, - "damage": 10, - "count": 3 + "legacyId": -195, + "id": "minecraft:grindstone" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:grindstone_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 160, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -166, + "auxValue": 2 }, "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 11, - "count": 3 + "legacyId": -195, + "id": "minecraft:grindstone" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:grindstone_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 160, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -166, + "auxValue": 2 }, "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 11, - "count": 3 + "legacyId": -195, + "id": "minecraft:grindstone" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:grindstone_from_warped_planks", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 160, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -166, + "auxValue": 2 }, "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 12, - "count": 3 + "legacyId": -195, + "id": "minecraft:grindstone" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "ABA", + "C C" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:hay_block", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 12 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 341, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 12, - "count": 3 + "legacyId": 170, + "id": "minecraft:hay_block" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:heavy_weighted_pressure_plate", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 13 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 13, - "count": 3 + "legacyId": 148, + "id": "minecraft:heavy_weighted_pressure_plate" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:honey_block", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 14 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 610, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 14, - "count": 3 + "legacyId": -220, + "id": "minecraft:honey_block" + }, + { + "legacyId": 436, + "id": "minecraft:glass_bottle", + "count": 4 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 13 + "id": "minecraft:honey_bottle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -220, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 436, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 436, + "auxValue": 32767 }, - "B": { - "id": 160, - "damage": 15 + { + "type": "default", + "count": 1, + "itemId": 436, + "auxValue": 32767 }, - "C": { - "id": 499, - "damage": 14 + { + "type": "default", + "count": 1, + "itemId": 436, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 191, - "damage": 15, - "count": 3 + "legacyId": 610, + "id": "minecraft:honey_bottle", + "count": 4 } ], - "priority": 0, - "shape": [ - "AAA", - "BBB", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:honey_bottle_to_sugar", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 15 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 610, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 15, + "legacyId": 424, + "id": "minecraft:sugar", "count": 3 + }, + { + "legacyId": 436, + "id": "minecraft:glass_bottle" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:honeycomb_block", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 1 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 1, - "count": 3 + "legacyId": -221, + "id": "minecraft:honeycomb_block" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:hopper", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 160, - "damage": 2 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 2, - "count": 3 + "legacyId": 543, + "id": "minecraft:hopper" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A A", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 3 + "id": "minecraft:hopper_minecart", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 543, + "auxValue": 32767 }, - "C": { - "id": 499, - "damage": 14 + { + "type": "default", + "count": 1, + "itemId": 377, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 191, - "damage": 3, - "count": 3 + "legacyId": 542, + "id": "minecraft:hopper_minecart" } ], - "priority": 0, - "shape": [ - "AAA", - "BBB", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:host_armor_trim_smithing_template_duplicate", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, "B": { - "id": 160, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 715, + "auxValue": 32767 }, "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 4, - "count": 3 + "legacyId": 715, + "id": "minecraft:host_armor_trim_smithing_template", + "count": 2 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:ingots_from_copper", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 5 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 5, - "count": 3 + "legacyId": 520, + "id": "minecraft:copper_ingot", + "count": 9 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:ingots_from_waxed_copper", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 6 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 6, - "count": 3 + "legacyId": 520, + "id": "minecraft:copper_ingot", + "count": 9 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:iron_axe", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 160, - "damage": 7 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 7, - "count": 3 + "legacyId": 304, + "id": "minecraft:iron_axe" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_bars", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 8 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 8, - "count": 3 + "legacyId": 101, + "id": "minecraft:iron_bars", + "count": 16 } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_block", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160, - "damage": 9 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "damage": 9, - "count": 3 + "legacyId": 42, + "id": "minecraft:iron_block" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_boots", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "count": 3 + "legacyId": 353, + "id": "minecraft:iron_boots" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_chestplate", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 160 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 191, - "count": 3 + "legacyId": 351, + "id": "minecraft:iron_chestplate" } ], - "priority": 0, "shape": [ + "A A", "AAA", - "BBB", - "CCC" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_door", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 20 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 253, + "legacyId": 379, + "id": "minecraft:iron_door", "count": 3 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_helmet", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 10 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 10, - "count": 3 + "legacyId": 350, + "id": "minecraft:iron_helmet" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_hoe", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 241, - "damage": 11 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 11, - "count": 3 + "legacyId": 338, + "id": "minecraft:iron_hoe" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_ingot_from_block", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 11 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 42, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 11, - "count": 3 + "legacyId": 311, + "id": "minecraft:iron_ingot", + "count": 9 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_ingot_from_nuggets", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 12 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 585, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 12, - "count": 3 + "legacyId": 311, + "id": "minecraft:iron_ingot" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_leggings", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 12 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 12, - "count": 3 + "legacyId": 352, + "id": "minecraft:iron_leggings" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_nugget", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 13 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 13, - "count": 3 + "legacyId": 585, + "id": "minecraft:iron_nugget", + "count": 9 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_pickaxe", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 241, - "damage": 14 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 14, - "count": 3 + "legacyId": 303, + "id": "minecraft:iron_pickaxe" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_shovel", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 241, - "damage": 15 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 15, - "count": 3 + "legacyId": 302, + "id": "minecraft:iron_shovel" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_sword", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, "B": { - "id": 241, - "damage": 15 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 15, - "count": 3 + "legacyId": 313, + "id": "minecraft:iron_sword" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:iron_trapdoor", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 1 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 1, - "count": 3 + "legacyId": 167, + "id": "minecraft:iron_trapdoor" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:item_frame", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 241, - "damage": 2 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 389, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 2, - "count": 3 + "legacyId": 529, + "id": "minecraft:frame" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jukebox_from_crimson_planks", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, "B": { - "id": 241, - "damage": 3 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 3, - "count": 3 + "legacyId": 84, + "id": "minecraft:jukebox" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:jukebox_from_mangrove_planks", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, "B": { - "id": 241, - "damage": 4 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 4, - "count": 3 + "legacyId": 84, + "id": "minecraft:jukebox" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:jukebox_from_warped_planks", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, "B": { - "id": 241, - "damage": 5 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 5, - "count": 3 + "legacyId": 84, + "id": "minecraft:jukebox" } ], - "priority": 0, "shape": [ "AAA", - "BBB", - "CCC" - ] + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:jungle_boat", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 6 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": 254, - "damage": 6, - "count": 3 + "legacyId": 385, + "id": "minecraft:jungle_boat" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 7 + "id": "minecraft:jungle_chest_boat", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 }, - "C": { - "id": 499, - "damage": 14 + { + "type": "default", + "count": 1, + "itemId": 385, + "auxValue": 0 } - }, + ], "output": [ { - "id": 254, - "damage": 7, - "count": 3 + "legacyId": 659, + "id": "minecraft:jungle_chest_boat" } ], - "priority": 0, - "shape": [ - "AAA", - "BBB", - "CCC" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_door", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 - }, - "B": { - "id": 241, - "damage": 8 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": 254, - "damage": 8, + "legacyId": 571, + "id": "minecraft:jungle_door", "count": 3 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_fence", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 }, "B": { - "id": 241, - "damage": 9 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "damage": 9, + "legacyId": -578, + "id": "minecraft:jungle_fence", "count": 3 } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_fence_gate", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 241 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": 254, - "count": 3 + "legacyId": 185, + "id": "minecraft:jungle_fence_gate" } ], - "priority": 0, "shape": [ - "AAA", - "BBB", - "CCC" - ] + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_hanging_sign", + "type": 1, "input": { "A": { - "id": 499, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, "B": { - "id": 241 - }, - "C": { - "id": 499, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -7, + "auxValue": 32767 } }, "output": [ { - "id": 254, - "count": 3 + "legacyId": -503, + "id": "minecraft:jungle_hanging_sign", + "count": 6 } ], - "priority": 0, "shape": [ - "AAA", + "A A", "BBB", - "CCC" - ] + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_planks", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 10 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -571, + "auxValue": 0 } }, "output": [ { - "id": 166, - "damage": 10 + "legacyId": -741, + "id": "minecraft:jungle_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_planks_from_stripped", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 11 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -7, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 11 + "legacyId": -741, + "id": "minecraft:jungle_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_planks_from_stripped_wood", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 12 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -822, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 12 + "legacyId": -741, + "id": "minecraft:jungle_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_planks_from_wood", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 13 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -816, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 13 + "legacyId": -741, + "id": "minecraft:jungle_planks", + "count": 4 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_stairs", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 14 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": 166, - "damage": 14 + "legacyId": 136, + "id": "minecraft:jungle_stairs", + "count": 4 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_wood", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 17 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -571, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 3 + "legacyId": -816, + "id": "minecraft:jungle_wood", + "count": 3 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_wood_stripped", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 18 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -7, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 4 + "legacyId": -822, + "id": "minecraft:stripped_jungle_wood", + "count": 3 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:jungle_wooden_slab", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 19 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 } }, "output": [ { - "id": 166, - "damage": 15 + "legacyId": -806, + "id": "minecraft:jungle_slab", + "count": 6 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:ladder", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 1 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 1 + "legacyId": 65, + "id": "minecraft:ladder", + "count": 3 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "A A", + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:lantern", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 585, + "auxValue": 32767 }, "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 2 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 50, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 2 + "legacyId": -208, + "id": "minecraft:lantern" } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ACA", - "ADA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:lapis_block", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 5 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 } }, "output": [ { - "id": 166, - "damage": 5 + "legacyId": 22, + "id": "minecraft:lapis_block" } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:lapis_lazuli", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 6 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 22, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 6 + "legacyId": 422, + "id": "minecraft:lapis_lazuli", + "count": 9 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:lead", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 }, "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 8 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 396, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 8 + "legacyId": 563, + "id": "minecraft:lead", + "count": 2 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AA ", + "AB ", + " A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:leather", + "type": 1, "input": { "A": { - "id": 499, - "damage": 16 - }, - "B": { - "id": 499, - "damage": 35 - }, - "C": { - "id": 351, - "damage": 9 - }, - "D": { - "id": 499, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 545, + "auxValue": 32767 } }, "output": [ { - "id": 166, - "damage": 9 + "legacyId": 389, + "id": "minecraft:leather" } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:leather_boots", + "type": 1, "input": { "A": { - "id": 499, - "damage": 21 - }, - "B": { - "id": -23 - }, - "C": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 389, + "auxValue": 32767 } }, "output": [ { - "id": 442, - "damage": 5 + "legacyId": 345, + "id": "minecraft:leather_boots" } ], - "priority": 0, "shape": [ - "A", - "B", - "C" - ] + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:leather_chestplate", + "type": 1, "input": { "A": { - "id": 499, - "damage": 21 - }, - "B": { - "id": 50 + "type": "default", + "count": 1, + "itemId": 389, + "auxValue": 32767 } }, "output": [ { - "id": 204, - "damage": 8 + "legacyId": 343, + "id": "minecraft:leather_chestplate" } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "A A", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:leather_helmet", + "type": 1, "input": { "A": { - "id": 499, - "damage": 22 - }, - "B": { - "id": -23 - }, - "C": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 389, + "auxValue": 32767 } }, "output": [ { - "id": 442, - "damage": 1 + "legacyId": 342, + "id": "minecraft:leather_helmet" } ], - "priority": 0, "shape": [ - "A", - "B", - "C" - ] + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:leather_horse_armor", + "type": 1, "input": { "A": { - "id": 499, - "damage": 22 - }, - "B": { - "id": 50 + "type": "default", + "count": 1, + "itemId": 389, + "auxValue": 32767 } }, "output": [ { - "id": 202 + "legacyId": 546, + "id": "minecraft:leather_horse_armor" } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "A A", + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:leather_leggings", + "type": 1, "input": { "A": { - "id": 499, - "damage": 23 - }, - "B": { - "id": -23 - }, - "C": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 389, + "auxValue": 32767 } }, "output": [ { - "id": 442, - "damage": 4 + "legacyId": 344, + "id": "minecraft:leather_leggings" } ], - "priority": 0, "shape": [ - "A", - "B", - "C" - ] + "AAA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:lectern", + "type": 1, "input": { "A": { - "id": 499, - "damage": 23 + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:wooden_slabs" }, "B": { - "id": 50 + "type": "default", + "count": 1, + "itemId": 47, + "auxValue": 32767 } }, "output": [ { - "id": 204 + "legacyId": -194, + "id": "minecraft:lectern" } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:lectern_from_crimson_slab", + "type": 1, "input": { "A": { - "id": 499, - "damage": 24 + "type": "default", + "count": 1, + "itemId": -264, + "auxValue": 32767 }, "B": { - "id": -23 - }, - "C": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 47, + "auxValue": 32767 } }, "output": [ { - "id": 442, - "damage": 2 + "legacyId": -194, + "id": "minecraft:lectern" } ], - "priority": 0, "shape": [ - "A", - "B", - "C" - ] + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:lectern_from_mangrove_slab", + "type": 1, "input": { "A": { - "id": 499, - "damage": 24 + "type": "default", + "count": 1, + "itemId": -489, + "auxValue": 32767 }, "B": { - "id": 50 + "type": "default", + "count": 1, + "itemId": 47, + "auxValue": 32767 } }, "output": [ { - "id": 202, - "damage": 8 + "legacyId": -194, + "id": "minecraft:lectern" } ], - "priority": 0, "shape": [ - "A", - "B" - ] + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:lectern_from_warped_slab", + "type": 1, "input": { "A": { - "id": 499, - "damage": 25 + "type": "default", + "count": 1, + "itemId": -265, + "auxValue": 32767 }, "B": { - "id": -23 - }, - "C": { - "id": 280, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 47, + "auxValue": 32767 } }, "output": [ { - "id": 442, - "damage": 14 + "legacyId": -194, + "id": "minecraft:lectern" } ], - "priority": 0, "shape": [ - "A", - "B", - "C" - ] + "AAA", + " B ", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:lever", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 10 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 } }, "output": [ { - "id": 448, - "damage": 5 + "legacyId": 69, + "id": "minecraft:lever" } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_blue_banner", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 }, "B": { - "id": 351, - "damage": 11 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 448, - "damage": 4 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 12, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 12 - }, - "C": { - "id": -13 + "id": "minecraft:light_blue_candle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "D": { - "id": 420, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 0 } - }, + ], "output": [ { - "id": 448, - "damage": 3 + "legacyId": -416, + "id": "minecraft:light_blue_candle" } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_blue_carpet", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 13 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } }, "output": [ { - "id": 448, - "damage": 2 + "legacyId": -599, + "id": "minecraft:light_blue_carpet", + "count": 3 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_blue_carpet_from_white", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, "B": { - "id": 351, - "damage": 14 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 0 } }, "output": [ { - "id": 448, - "damage": 1 + "legacyId": -599, + "id": "minecraft:light_blue_carpet", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ACA", - "ADA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 + "id": "minecraft:light_blue_concrete_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 0 }, - "B": { - "id": 351, - "damage": 15 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, - "C": { - "id": -13 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, - "D": { - "id": 420, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 448 + "legacyId": -711, + "id": "minecraft:light_blue_concrete_powder", + "count": 8 } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 16 - }, - "C": { - "id": -13 + "id": "minecraft:light_blue_dye", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 }, - "D": { - "id": 420, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } - }, + ], "output": [ { - "id": 448, - "damage": 15 + "legacyId": 415, + "id": "minecraft:light_blue_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 17 - }, - "C": { - "id": -13 + "id": "minecraft:light_blue_dye_from_blue_bonemeal", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 }, - "D": { - "id": 420, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } - }, + ], "output": [ { - "id": 448, - "damage": 12 + "legacyId": 415, + "id": "minecraft:light_blue_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 18 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "id": "minecraft:light_blue_dye_from_blue_orchid", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -830, + "auxValue": 32767 } - }, + ], "output": [ { - "id": 448, - "damage": 11 + "legacyId": 415, + "id": "minecraft:light_blue_dye" } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 19 - }, - "C": { - "id": -13 + "id": "minecraft:light_blue_dye_from_lapis_bonemeal", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 }, - "D": { - "id": 420, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } - }, + ], "output": [ { - "id": 448 + "legacyId": 415, + "id": "minecraft:light_blue_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] + "block": "crafting_table", + "priority": 4 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 1 - }, - "C": { - "id": -13 + "id": "minecraft:light_blue_dye_from_lapis_white", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 }, - "D": { - "id": 420, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } - }, + ], "output": [ { - "id": 448, - "damage": 14 + "legacyId": 415, + "id": "minecraft:light_blue_dye", + "count": 2 } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] + "block": "crafting_table", + "priority": 3 }, { - "block": "crafting_table", + "id": "minecraft:light_blue_stained_glass", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 2 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 0 } }, "output": [ { - "id": 448, - "damage": 13 + "legacyId": -675, + "id": "minecraft:light_blue_stained_glass", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ACA", - "ADA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_blue_stained_glass_pane", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 3 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -675, + "auxValue": 32767 } }, "output": [ { - "id": 448, - "damage": 12 + "legacyId": -645, + "id": "minecraft:light_blue_stained_glass_pane", + "count": 16 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_blue_stained_glass_pane_from_pane", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 4 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 0 } }, "output": [ { - "id": 448, - "damage": 11 + "legacyId": -645, + "id": "minecraft:light_blue_stained_glass_pane", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ACA", - "ADA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_blue_stained_hardened_clay", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, "B": { - "id": 351, - "damage": 5 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 0 } }, "output": [ { - "id": 448, - "damage": 10 + "legacyId": -726, + "id": "minecraft:light_blue_terracotta", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ACA", - "ADA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_gray__carpet_from_white", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, "B": { - "id": 351, - "damage": 6 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 0 } }, "output": [ { - "id": 448, - "damage": 9 + "legacyId": -604, + "id": "minecraft:light_gray_carpet", + "count": 8 } ], - "priority": 0, "shape": [ + "AAA", "ABA", - "ACA", - "ADA" - ] + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_banner", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 }, "B": { - "id": 351, - "damage": 7 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } }, "output": [ { - "id": 448, - "damage": 8 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 7, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 8 - }, - "C": { - "id": -13 + "id": "minecraft:light_gray_candle", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, - "D": { - "id": 420, - "damage": -1 + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 0 } - }, + ], "output": [ { - "id": 448, - "damage": 7 + "legacyId": -421, + "id": "minecraft:light_gray_candle" } ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_carpet", + "type": 1, "input": { "A": { - "id": 499, - "damage": 30 - }, - "B": { - "id": 351, - "damage": 9 - }, - "C": { - "id": -13 - }, - "D": { - "id": 420, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } }, "output": [ { - "id": 448, - "damage": 6 + "legacyId": -604, + "id": "minecraft:light_gray_carpet", + "count": 3 } ], - "priority": 0, "shape": [ - "ABA", - "ACA", - "ADA" - ] + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": { - "A": { - "id": 499, - "damage": 30 + "id": "minecraft:light_gray_concrete_powder", + "type": 0, + "input": [ + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 0 }, - "B": { - "id": 351 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, - "C": { - "id": -13 + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, - "D": { - "id": 420, - "damage": -1 - } - }, - "output": [ { - "id": 448, - "damage": 15 - } - ], - "priority": 0, - "shape": [ - "ABA", - "ACA", - "ADA" - ] - } - ], - "shapeless": [ - { - "block": "cartography_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 345, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 395, - "damage": 2 + "legacyId": -716, + "id": "minecraft:light_gray_concrete_powder", + "count": 8 } ], + "block": "crafting_table", "priority": 0 }, { - "block": "cartography_table", + "id": "minecraft:light_gray_dye", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } ], "output": [ { - "id": 395 + "legacyId": 410, + "id": "minecraft:light_gray_dye", + "count": 3 } ], - "priority": 0 + "block": "crafting_table", + "priority": 3 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_dye_from_azure_bluet", + "type": 0, "input": [ { - "id": -216, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -832, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 16 + "legacyId": 410, + "id": "minecraft:light_gray_dye" } ], - "priority": 0 + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_dye_from_black_bonemeal", + "type": 0, "input": [ { - "id": -220, - "damage": -1 - }, - { - "id": 374, - "damage": -1 - }, - { - "id": 374, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 0 }, { - "id": 374, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 }, { - "id": 374, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 737, - "count": 4 + "legacyId": 410, + "id": "minecraft:light_gray_dye", + "count": 3 } ], - "priority": 0 + "block": "crafting_table", + "priority": 7 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_dye_from_gray_bonemeal", + "type": 0, "input": [ { - "id": 1, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 0 }, { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 1, - "damage": 5, + "legacyId": 410, + "id": "minecraft:light_gray_dye", "count": 2 } ], - "priority": 0 + "block": "crafting_table", + "priority": 6 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_dye_from_gray_white", + "type": 0, "input": [ { - "id": 1, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 0 }, { - "id": 406, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } ], "output": [ { - "id": 1, - "damage": 1 + "legacyId": 410, + "id": "minecraft:light_gray_dye", + "count": 2 } ], - "priority": 0 + "block": "crafting_table", + "priority": 4 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_dye_from_ink_bonemeal", + "type": 0, "input": [ { - "id": 175, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 351, - "damage": 13, - "count": 2 + "legacyId": 410, + "id": "minecraft:light_gray_dye", + "count": 3 } ], - "priority": 0 + "block": "crafting_table", + "priority": 8 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_dye_from_ink_white", + "type": 0, "input": [ { - "id": 175, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } ], "output": [ { - "id": 351, - "damage": 1, - "count": 2 + "legacyId": 410, + "id": "minecraft:light_gray_dye", + "count": 3 } ], - "priority": 0 + "block": "crafting_table", + "priority": 5 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_dye_from_oxeye_daisy", + "type": 0, "input": [ { - "id": 175, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -837, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 9, - "count": 2 + "legacyId": 410, + "id": "minecraft:light_gray_dye" } ], - "priority": 0 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:light_gray_dye_from_white_tulip", + "type": 0, "input": [ { - "id": 175 + "type": "default", + "count": 1, + "itemId": -835, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 11, - "count": 2 + "legacyId": 410, + "id": "minecraft:light_gray_dye" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 216, - "damage": -1 + "id": "minecraft:light_gray_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 0 } - ], + }, "output": [ { - "id": 351, - "damage": 15, - "count": 9 + "legacyId": -680, + "id": "minecraft:light_gray_stained_glass", + "count": 8 } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 265, - "damage": -1 - }, - { - "id": 318, - "damage": -1 + "id": "minecraft:light_gray_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -680, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 259 + "legacyId": -650, + "id": "minecraft:light_gray_stained_glass_pane", + "count": 16 } ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 281, - "damage": -1 - }, - { - "id": 393, - "damage": -1 - }, - { - "id": 391, - "damage": -1 - }, - { - "id": 39, - "damage": -1 + "id": "minecraft:light_gray_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, - { - "id": 412, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 0 } - ], + }, "output": [ { - "id": 413 + "legacyId": -650, + "id": "minecraft:light_gray_stained_glass_pane", + "count": 8 } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 281, - "damage": -1 - }, - { - "id": 393, - "damage": -1 - }, - { - "id": 391, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "id": "minecraft:light_gray_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, + "B": { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 0 + } + }, + "output": [ { - "id": 412, - "damage": -1 + "legacyId": -731, + "id": "minecraft:light_gray_terracotta", + "count": 8 } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:light_weighted_pressure_plate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 + } + }, "output": [ { - "id": 413 + "legacyId": 147, + "id": "minecraft:light_weighted_pressure_plate" } ], + "shape": [ + "AA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 281, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, + "id": "minecraft:lightning_rod", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 520, + "auxValue": 32767 + } + }, + "output": [ { - "id": 457, - "damage": -1 + "legacyId": -312, + "id": "minecraft:lightning_rod" } ], + "shape": [ + "A", + "A", + "A" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:lime__carpet_from_white", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 0 + } + }, "output": [ { - "id": 459 + "legacyId": -601, + "id": "minecraft:lime_carpet", + "count": 8 } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:lime_banner", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 }, - { - "id": 351, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, + "legacyId": 583, + "id": "minecraft:banner", "damage": 10, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA\/wA=" + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:lime_candle", + "type": 0, "input": [ { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 0 } ], "output": [ { - "id": 402, - "damage": 11, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+\/wA=" + "legacyId": -418, + "id": "minecraft:lime_candle" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { + "id": "minecraft:lime_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 + } + }, + "output": [ + { + "legacyId": -601, + "id": "minecraft:lime_carpet", + "count": 3 + } + ], + "shape": [ + "AA" + ], "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:lime_concrete_powder", + "type": 0, "input": [ { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 351, - "damage": 12 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 402, - "damage": 12, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6\/wA=" - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 402, - "damage": 13, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H\/wA=" + "legacyId": -713, + "id": "minecraft:lime_concrete_powder", + "count": 8 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:lime_dye", + "type": 0, "input": [ { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } ], "output": [ { - "id": 402, - "damage": 14, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5\/wA=" + "legacyId": 413, + "id": "minecraft:lime_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:lime_dye_from_bonemeal", + "type": 0, "input": [ { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 402, - "damage": 15, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw\/wA=" + "legacyId": 413, + "id": "minecraft:lime_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:lime_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, - { - "id": 351, - "damage": 16 + "B": { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 0 } - ], + }, "output": [ { - "id": 402, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d\/wA=" + "legacyId": -677, + "id": "minecraft:lime_stained_glass", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 17 + "id": "minecraft:lime_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -677, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 3, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD\/wA=" + "legacyId": -647, + "id": "minecraft:lime_stained_glass_pane", + "count": 16 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:lime_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, - { - "id": 351, - "damage": 18 + "B": { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 0 } - ], + }, "output": [ { - "id": 402, - "damage": 4, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8\/wA=" + "legacyId": -647, + "id": "minecraft:lime_stained_glass_pane", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:lime_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, - { - "id": 351, - "damage": 19 + "B": { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 0 } - ], + }, "output": [ { - "id": 402, - "damage": 15, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw\/wA=" + "legacyId": -728, + "id": "minecraft:lime_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:lit_pumpkin", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -155, + "auxValue": 32767 }, - { - "id": 351, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 50, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 1, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w\/wA=" + "legacyId": 91, + "id": "minecraft:lit_pumpkin" } ], - "priority": 50 + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:locator_map", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, - { - "id": 351, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 399, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 2, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe\/wA=" + "legacyId": 531, + "id": "minecraft:empty_map", + "damage": 2 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:lodestone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 3 }, - { - "id": 351, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 627, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 3, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD\/wA=" + "legacyId": -222, + "id": "minecraft:lodestone" } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:loom", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 }, - { - "id": 351, - "damage": 4 + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } - ], + }, "output": [ { - "id": 402, - "damage": 4, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8\/wA=" + "legacyId": -204, + "id": "minecraft:loom" } ], - "priority": 50 + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:loom_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 }, - { - "id": 351, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 5, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ\/wA=" + "legacyId": -204, + "id": "minecraft:loom" } ], - "priority": 50 + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:loom_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 }, - { - "id": 351, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 6, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW\/wA=" + "legacyId": -204, + "id": "minecraft:loom" } ], - "priority": 50 + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:loom_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 }, - { - "id": 351, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 7, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d\/wA=" + "legacyId": -204, + "id": "minecraft:loom" } ], - "priority": 50 + "shape": [ + "AA", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:mace", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -316, + "auxValue": 32767 }, - { - "id": 351, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 432, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 8, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H\/wA=" + "legacyId": 326, + "id": "minecraft:mace" } ], - "priority": 50 + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 289, - "damage": -1 + "id": "minecraft:magenta_banner", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 }, - { - "id": 351, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 402, - "damage": 9, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz\/wA=" + "legacyId": 583, + "id": "minecraft:banner", + "damage": 13, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:magenta_candle", + "type": 0, "input": [ { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 0 } ], "output": [ { - "id": 402, - "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d\/wA=" + "legacyId": -415, + "id": "minecraft:magenta_candle" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 30, - "damage": -1 + "id": "minecraft:magenta_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } - ], + }, "output": [ { - "id": 287, - "count": 9 + "legacyId": -598, + "id": "minecraft:magenta_carpet", + "count": 3 } ], + "shape": [ + "AA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 + "id": "minecraft:magenta_carpet_from_white", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, - { - "id": 106, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 0 } - ], + }, "output": [ { - "id": 434, - "damage": 5 + "legacyId": -598, + "id": "minecraft:magenta_carpet", + "count": 8 } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:magenta_concrete_powder", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 402, - "damage": -1 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 402, - "damage": -1 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": -710, + "id": "minecraft:magenta_concrete_powder", + "count": 8 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye", + "count": 3 } ], - "priority": 50 + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye_from_allium", + "type": 0, "input": [ { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -831, + "auxValue": 32767 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye_from_blue_ink_bonemeal", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye", + "count": 4 } ], - "priority": 50 + "block": "crafting_table", + "priority": 6 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye_from_blue_ink_white", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye", + "count": 4 } ], - "priority": 50 + "block": "crafting_table", + "priority": 4 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye_from_lapis_ink_bonemeal", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye", + "count": 4 } ], - "priority": 50 + "block": "crafting_table", + "priority": 8 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye_from_lapis_ink_white", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye", + "count": 4 } ], - "priority": 50 + "block": "crafting_table", + "priority": 7 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye_from_lapis_red_pink", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye", + "count": 3 } ], - "priority": 50 + "block": "crafting_table", + "priority": 5 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye_from_lilac", + "type": 0, "input": [ { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -863, + "auxValue": 32767 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:magenta_dye_from_purple_and_pink", + "type": 0, "input": [ { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 0 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 416, + "id": "minecraft:magenta_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 3 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 + "id": "minecraft:magenta_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, - { - "id": 402, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 0 } - ], + }, "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": -674, + "id": "minecraft:magenta_stained_glass", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": -1 + "id": "minecraft:magenta_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -674, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": -644, + "id": "minecraft:magenta_stained_glass_pane", + "count": 16 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 + "id": "minecraft:magenta_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, - { - "id": 402, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 0 } - ], + }, "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": -644, + "id": "minecraft:magenta_stained_glass_pane", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 + "id": "minecraft:magenta_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, - { - "id": 402, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 0 } - ], + }, "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": -725, + "id": "minecraft:magenta_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": -1 + "id": "minecraft:magma", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 439, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 213, + "id": "minecraft:magma" } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:magma_cream", + "type": 0, "input": [ { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 438, + "auxValue": 32767 }, { - "id": 402, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 396, + "auxValue": 32767 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 439, + "id": "minecraft:magma_cream" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": -1 + "id": "minecraft:mangrove_boat", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 0 } - ], + }, "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": 654, + "id": "minecraft:mangrove_boat" } ], - "priority": 50 + "shape": [ + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": -1 + "id": "minecraft:mangrove_button", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + "legacyId": -487, + "id": "minecraft:mangrove_button" } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:mangrove_chest_boat", + "type": 0, "input": [ { - "id": 339, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 654, + "auxValue": 0 } ], "output": [ { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + "legacyId": 663, + "id": "minecraft:mangrove_chest_boat" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 38, - "damage": 8 + "id": "minecraft:mangrove_door", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 434, - "damage": 2 + "legacyId": 652, + "id": "minecraft:mangrove_door", + "count": 3 } ], + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 + "id": "minecraft:mangrove_fence", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 397, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 434, - "damage": 1 + "legacyId": -491, + "id": "minecraft:mangrove_fence", + "count": 3 } ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 + "id": "minecraft:mangrove_fence_gate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 397, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 434 + "legacyId": -492, + "id": "minecraft:mangrove_fence_gate" } ], + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 + "id": "minecraft:mangrove_hanging_sign", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, - { - "id": 45, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 434, - "damage": 4 + "legacyId": -508, + "id": "minecraft:mangrove_hanging_sign", + "count": 6 } ], + "shape": [ + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 466, - "damage": -1 + "id": "minecraft:mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -484, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 434, - "damage": 3 + "legacyId": -486, + "id": "minecraft:mangrove_planks", + "count": 4 } ], + "shape": [ + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 339 - }, - { - "id": 339 - }, - { - "id": 339 - }, - { - "id": 334 + "id": "minecraft:mangrove_planks_from_stripped_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 340 + "legacyId": -486, + "id": "minecraft:mangrove_planks", + "count": 4 } ], + "shape": [ + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 340, - "damage": -1 - }, - { - "id": 351 - }, - { - "id": 288, - "damage": -1 + "id": "minecraft:mangrove_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -498, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 386 + "legacyId": -486, + "id": "minecraft:mangrove_planks", + "count": 4 } ], + "shape": [ + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:mangrove_planks_from_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -497, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 5, - "count": 8 + "legacyId": -486, + "id": "minecraft:mangrove_planks", + "count": 4 } ], + "shape": [ + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:mangrove_pressure_plate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": -490, + "id": "minecraft:mangrove_pressure_plate" } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 + "id": "minecraft:mangrove_sign", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 35, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": 653, + "id": "minecraft:mangrove_sign", + "count": 3 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 12 + "id": "minecraft:mangrove_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": -489, + "id": "minecraft:mangrove_slab", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 13 + "id": "minecraft:mangrove_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": -488, + "id": "minecraft:mangrove_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:mangrove_trapdoor", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": -496, + "id": "minecraft:mangrove_trapdoor", + "count": 2 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 15 + "id": "minecraft:mangrove_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -484, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": -497, + "id": "minecraft:mangrove_wood", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 1 + "id": "minecraft:mangrove_wood_stripped", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": -498, + "id": "minecraft:stripped_mangrove_wood", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 2 + "id": "minecraft:map", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": 531, + "id": "minecraft:empty_map" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 3 + "id": "minecraft:melon_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 276, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": 103, + "id": "minecraft:melon_block" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 4 + "id": "minecraft:melon_seeds", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 276, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": 297, + "id": "minecraft:melon_seeds" } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 6 + "id": "minecraft:minecart", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": 377, + "id": "minecraft:minecart" } ], - "priority": 50 + "shape": [ + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 7 + "id": "minecraft:moss_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -320, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": -335, + "id": "minecraft:moss_carpet", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:mossy_cobblestone", + "type": 0, "input": [ { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 }, { - "id": 35, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 106, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 5 + "legacyId": 48, + "id": "minecraft:mossy_cobblestone" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:mossy_cobblestone_from_moss", + "type": 0, "input": [ { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 }, { - "id": 35, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -320, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 5 + "legacyId": 48, + "id": "minecraft:mossy_cobblestone" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35 + "id": "minecraft:mossy_cobblestone_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 48, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 5 + "legacyId": -179, + "id": "minecraft:mossy_cobblestone_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, + "id": "minecraft:mossy_cobblestone_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 48, + "auxValue": 32767 + } + }, + "output": [ { - "id": 13, - "damage": -1 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:mossy_stone_brick_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 1 + } + }, "output": [ { - "id": 237, - "damage": 4, - "count": 8 + "legacyId": -175, + "id": "minecraft:mossy_stone_brick_stairs", + "count": 4 } ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:mossy_stone_brick_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 1 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:mossy_stonebrick", + "type": 0, "input": [ { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 0 }, { - "id": 35, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 106, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 4 + "legacyId": 98, + "id": "minecraft:stonebrick" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:mossy_stonebrick_from_moss", + "type": 0, "input": [ { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 0 }, { - "id": 35, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -320, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 4 + "legacyId": 98, + "id": "minecraft:stonebrick" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 13 + "id": "minecraft:mud_brick_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -475, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": -478, + "id": "minecraft:mud_brick_slab", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:mud_brick_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -475, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": -480, + "id": "minecraft:mud_brick_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 15 + "id": "minecraft:mud_brick_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -475, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": -481, + "id": "minecraft:mud_brick_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 1 + "id": "minecraft:mud_bricks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -477, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": -475, + "id": "minecraft:mud_bricks", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:muddy_mangrove_roots", + "type": 0, "input": [ { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -482, + "auxValue": 32767 }, { - "id": 35, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -473, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 4 + "legacyId": -483, + "id": "minecraft:muddy_mangrove_roots" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:mushroom_stew", + "type": 0, "input": [ { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 4 + "legacyId": 264, + "id": "minecraft:mushroom_stew" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 5 + "id": "minecraft:nether_brick", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 539, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": 112, + "id": "minecraft:nether_brick" } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 + "id": "minecraft:nether_brick_fence", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 112, + "auxValue": 32767 }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 539, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": 113, + "id": "minecraft:nether_brick_fence", + "count": 6 } ], - "priority": 50 + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 7 + "id": "minecraft:nether_brick_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 112, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": 114, + "id": "minecraft:nether_brick_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 8 + "id": "minecraft:nether_brick_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 112, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 9 + "id": "minecraft:nether_wart_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 298, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": 214, + "id": "minecraft:nether_wart_block" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35 + "id": "minecraft:netherite_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 627, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 4 + "legacyId": -270, + "id": "minecraft:netherite_block" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:netherite_ingot", + "type": 0, "input": [ { - "id": 351, - "damage": 12 - }, - { - "id": 12 + "type": "default", + "count": 1, + "itemId": 632, + "auxValue": 32767 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 632, + "auxValue": 32767 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 632, + "auxValue": 32767 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 632, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 312, + "auxValue": 32767 } ], "output": [ { - "id": 237, - "damage": 3, - "count": 8 + "legacyId": 627, + "id": "minecraft:netherite_ingot" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:netherite_ingot_from_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -270, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 627, + "id": "minecraft:netherite_ingot", + "count": 9 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 + "id": "minecraft:netherite_upgrade_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 699, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 87, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 699, + "id": "minecraft:netherite_upgrade_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 + "id": "minecraft:noteblock", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 25, + "id": "minecraft:noteblock" } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 + "id": "minecraft:noteblock_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, + "B": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 13 + "legacyId": 25, + "id": "minecraft:noteblock" } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:noteblock_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 + } + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 25, + "id": "minecraft:noteblock" } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 + "id": "minecraft:noteblock_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, + "B": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 14 + "legacyId": 25, + "id": "minecraft:noteblock" } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 2 + }, + { + "id": "minecraft:oak_fence", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + } + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 85, + "id": "minecraft:oak_fence", + "count": 3 } ], - "priority": 50 + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 + "id": "minecraft:oak_hanging_sign", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, + "B": { + "type": "default", + "count": 1, + "itemId": -10, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 15 + "legacyId": -500, + "id": "minecraft:oak_hanging_sign", + "count": 6 } ], + "shape": [ + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 17, + "auxValue": 0 + } + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 5, + "id": "minecraft:oak_planks", + "count": 4 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 - }, + "id": "minecraft:oak_planks_from_stripped", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -10, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 1 + "legacyId": 5, + "id": "minecraft:oak_planks", + "count": 4 } ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -819, + "auxValue": 32767 + } + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 5, + "id": "minecraft:oak_planks", + "count": 4 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ + "id": "minecraft:oak_planks_from_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -212, + "auxValue": 32767 + } + }, + "output": [ { - "id": 351, - "damage": 12 - }, + "legacyId": 5, + "id": "minecraft:oak_planks", + "count": 4 + } + ], + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 + } + }, + "output": [ { - "id": 35, - "damage": 2 + "legacyId": 53, + "id": "minecraft:oak_stairs", + "count": 4 } ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:oak_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 17, + "auxValue": 32767 + } + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": -212, + "id": "minecraft:oak_wood", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 4 + "id": "minecraft:oak_wood_stripped", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -10, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": -819, + "id": "minecraft:stripped_oak_wood", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 5 + "id": "minecraft:oak_wooden_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 158, + "id": "minecraft:oak_slab", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 + "id": "minecraft:observer", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 251, + "id": "minecraft:observer" } ], - "priority": 50 + "shape": [ + "AAA", + "BBC", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 + "id": "minecraft:orange_banner", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 14, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:orange_candle", + "type": 0, "input": [ { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 35, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 3 + "legacyId": -414, + "id": "minecraft:orange_candle" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 9 + "id": "minecraft:orange_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": -597, + "id": "minecraft:orange_carpet", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 12 + "id": "minecraft:orange_carpet_from_white", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, - { - "id": 35 + "B": { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 3 + "legacyId": -597, + "id": "minecraft:orange_carpet", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:orange_concrete_powder", + "type": 0, "input": [ { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 0 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 237, - "damage": 2, + "legacyId": -709, + "id": "minecraft:orange_concrete_powder", "count": 8 } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:orange_dye_from_orange_tulip", + "type": 0, "input": [ { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -834, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 2 + "legacyId": 417, + "id": "minecraft:orange_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:orange_dye_from_red_yellow", + "type": 0, "input": [ { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 35, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 2 + "legacyId": 417, + "id": "minecraft:orange_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:orange_dye_from_torchflower", + "type": 0, "input": [ { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -568, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 2 + "legacyId": 417, + "id": "minecraft:orange_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 + "id": "minecraft:orange_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, - { - "id": 35, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": -673, + "id": "minecraft:orange_stained_glass", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:orange_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -673, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": -643, + "id": "minecraft:orange_stained_glass_pane", + "count": 16 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 + "id": "minecraft:orange_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": -643, + "id": "minecraft:orange_stained_glass_pane", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 + "id": "minecraft:orange_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": -724, + "id": "minecraft:orange_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 3 + "id": "minecraft:oxidized_chiseled_copper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -364, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": -763, + "id": "minecraft:oxidized_chiseled_copper" } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 + "id": "minecraft:oxidized_copper_bulb", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": -779, + "id": "minecraft:oxidized_copper_bulb", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " C " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 5 + "id": "minecraft:oxidized_copper_grate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": -771, + "id": "minecraft:oxidized_copper_grate", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 6 + "id": "minecraft:packed_ice", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 79, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": 174, + "id": "minecraft:packed_ice" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:packed_mud", + "type": 0, "input": [ { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -473, + "auxValue": 32767 }, { - "id": 35, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 341, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 2 + "legacyId": -477, + "id": "minecraft:packed_mud" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 + "id": "minecraft:painting", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 8 + "B": { + "type": "complex_alias", + "count": 1 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": 364, + "id": "minecraft:painting" } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 9 + "id": "minecraft:paper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 393, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": 394, + "id": "minecraft:paper", + "count": 3 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35 + "id": "minecraft:pillar_quartz_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 2 + "legacyId": 155, + "id": "minecraft:quartz_block", + "count": 2 } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:pink_banner", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 }, - { - "id": 13, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 1, - "count": 8 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 9, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:pink_candle", + "type": 0, "input": [ { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 35, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 1 + "legacyId": -419, + "id": "minecraft:pink_candle" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 11 + "id": "minecraft:pink_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 1 + "legacyId": -602, + "id": "minecraft:pink_carpet", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 14 + "id": "minecraft:pink_carpet_from_white", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 1 + "legacyId": -602, + "id": "minecraft:pink_carpet", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:pink_concrete_powder", + "type": 0, "input": [ { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 }, { - "id": 35, - "damage": 13 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 35, - "damage": 1 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 35, - "damage": 14 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 35, - "damage": 1 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 35, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 1 + "legacyId": -714, + "id": "minecraft:pink_concrete_powder", + "count": 8 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:pink_dye", + "type": 0, "input": [ { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 35, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 1 + "legacyId": 412, + "id": "minecraft:pink_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:pink_dye_from_peony", + "type": 0, "input": [ { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -867, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 1 + "legacyId": 412, + "id": "minecraft:pink_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:pink_dye_from_pink_petals", + "type": 0, "input": [ { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -549, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 1 + "legacyId": 412, + "id": "minecraft:pink_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:pink_dye_from_pink_tulip", + "type": 0, "input": [ { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -836, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 1 + "legacyId": 412, + "id": "minecraft:pink_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:pink_dye_from_red_bonemeal", + "type": 0, "input": [ { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 35, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 1 + "legacyId": 412, + "id": "minecraft:pink_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 14 + "id": "minecraft:pink_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 1 + "legacyId": -678, + "id": "minecraft:pink_stained_glass", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 8 + "id": "minecraft:pink_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -678, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 1 + "legacyId": -648, + "id": "minecraft:pink_stained_glass_pane", + "count": 16 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 14 + "id": "minecraft:pink_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 1 + "legacyId": -648, + "id": "minecraft:pink_stained_glass_pane", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 14 + "id": "minecraft:pink_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, - { - "id": 35 + "B": { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 1 + "legacyId": -729, + "id": "minecraft:pink_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 12 - }, - { - "id": 12 + "id": "minecraft:piston", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, - { - "id": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 }, - { - "id": 12 + "C": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, + "D": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 + } + }, + "output": [ { - "id": 13, - "damage": -1 + "legacyId": 33, + "id": "minecraft:piston" + } + ], + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": -1 + }, + { + "id": "minecraft:piston_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "C": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "D": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "count": 8 + "legacyId": 33, + "id": "minecraft:piston" } ], - "priority": 1 + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 + "id": "minecraft:piston_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 35, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 + }, + "D": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": 33, + "id": "minecraft:piston" } ], - "priority": 50 + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 + "id": "minecraft:piston_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 35, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 + }, + "D": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": 33, + "id": "minecraft:piston" } ], - "priority": 50 + "shape": [ + "AAA", + "BCB", + "BDB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 12 + "id": "minecraft:polished_andesite", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": -595, + "id": "minecraft:polished_andesite", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 13 + "id": "minecraft:polished_andesite_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -595, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": -174, + "id": "minecraft:polished_andesite_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:polished_basalt", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -234, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -235, + "id": "minecraft:polished_basalt", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 15 + "id": "minecraft:polished_blackstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -291, + "id": "minecraft:polished_blackstone", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 1 + "id": "minecraft:polished_blackstone_brick_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -274, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -284, + "id": "minecraft:polished_blackstone_brick_slab", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 2 + "id": "minecraft:polished_blackstone_brick_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -274, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -275, + "id": "minecraft:polished_blackstone_brick_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 3 + "id": "minecraft:polished_blackstone_brick_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -274, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -278, + "id": "minecraft:polished_blackstone_brick_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 4 + "id": "minecraft:polished_blackstone_bricks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 5 + "id": "minecraft:polished_blackstone_button", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -296, + "id": "minecraft:polished_blackstone_button" } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 6 + "id": "minecraft:polished_blackstone_pressure_plate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -295, + "id": "minecraft:polished_blackstone_pressure_plate" } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, + "id": "minecraft:polished_blackstone_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 7 + "legacyId": -293, + "id": "minecraft:polished_blackstone_slab", + "count": 6 } ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_blackstone_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + }, "output": [ { - "id": 35 + "legacyId": -292, + "id": "minecraft:polished_blackstone_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, + "id": "minecraft:polished_blackstone_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -291, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 8 + "legacyId": -297, + "id": "minecraft:polished_blackstone_wall", + "count": 6 } ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:polished_deepslate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 + } + }, "output": [ { - "id": 35 + "legacyId": -383, + "id": "minecraft:polished_deepslate", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 - }, + "id": "minecraft:polished_deepslate_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 9 + "legacyId": -384, + "id": "minecraft:polished_deepslate_slab", + "count": 6 } ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:polished_deepslate_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 32767 + } + }, "output": [ { - "id": 35 + "legacyId": -385, + "id": "minecraft:polished_deepslate_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 15 + "id": "minecraft:polished_deepslate_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -383, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 19 + "legacyId": -386, + "id": "minecraft:polished_deepslate_wall", + "count": 6 } ], - "priority": 0 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:polished_diorite", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 } - ], + }, "output": [ { - "id": 237, - "damage": 15, - "count": 8 + "legacyId": -593, + "id": "minecraft:polished_diorite", + "count": 4 } ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:polished_diorite_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -593, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -173, + "id": "minecraft:polished_diorite_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 11 + "id": "minecraft:polished_granite", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -591, + "id": "minecraft:polished_granite", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 12 + "id": "minecraft:polished_granite_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -591, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -172, + "id": "minecraft:polished_granite_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 13 + "id": "minecraft:polished_tuff", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -748, + "id": "minecraft:polished_tuff", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:polished_tuff_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -749, + "id": "minecraft:polished_tuff_slab", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 1 + "id": "minecraft:polished_tuff_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -751, + "id": "minecraft:polished_tuff_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 2 + "id": "minecraft:polished_tuff_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -752, + "id": "minecraft:polished_tuff_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 3 + "id": "minecraft:prismarine", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 581, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": 168, + "id": "minecraft:prismarine" } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 4 + "id": "minecraft:prismarine_bricks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 581, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": 168, + "id": "minecraft:prismarine" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 5 + "id": "minecraft:prismarine_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -2, + "id": "minecraft:prismarine_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 6 + "id": "minecraft:prismarine_stairs_bricks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 2 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -4, + "id": "minecraft:prismarine_bricks_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 7 + "id": "minecraft:prismarine_stairs_dark", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 1 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -3, + "id": "minecraft:dark_prismarine_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 8 + "id": "minecraft:prismarine_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:pumpkin_pie", + "type": 0, "input": [ { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 86, + "auxValue": 32767 }, { - "id": 35, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 424, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 398, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 15 + "legacyId": 288, + "id": "minecraft:pumpkin_pie" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 351, - "damage": 15 - }, - { - "id": 351, - "damage": 15 + "id": "minecraft:pumpkin_seeds", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 86, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 7, - "count": 3 + "legacyId": 296, + "id": "minecraft:pumpkin_seeds", + "count": 4 } ], - "priority": 7 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 + "id": "minecraft:purple_banner", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 }, - { - "id": 351, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 8, - "count": 2 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 5, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 1 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:purple_candle", + "type": 0, "input": [ { - "id": 351, - "damage": 16 - }, - { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 0 } ], "output": [ { - "id": 351, - "damage": 7, - "count": 3 + "legacyId": -423, + "id": "minecraft:purple_candle" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 351, - "damage": 19 + "id": "minecraft:purple_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } - ], + }, "output": [ { - "id": 351, - "damage": 8, - "count": 2 + "legacyId": -606, + "id": "minecraft:purple_carpet", + "count": 3 } ], + "shape": [ + "AA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 16 + "id": "minecraft:purple_carpet_from_white", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, - { - "id": 35 + "B": { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -606, + "id": "minecraft:purple_carpet", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:purple_concrete_powder", + "type": 0, "input": [ { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 0 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 12 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 237, - "damage": 12, + "legacyId": -718, + "id": "minecraft:purple_concrete_powder", "count": 8 } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:purple_dye", + "type": 0, "input": [ { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 0 }, { - "id": 35, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 12 + "legacyId": 408, + "id": "minecraft:purple_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:purple_dye_from_lapis_lazuli", + "type": 0, "input": [ { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 0 }, { - "id": 35, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 12 + "legacyId": 408, + "id": "minecraft:purple_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 17 + "id": "minecraft:purple_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, + "B": { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 0 + } + }, + "output": [ { - "id": 35, - "damage": 13 + "legacyId": -682, + "id": "minecraft:purple_stained_glass", + "count": 8 } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -682, + "auxValue": 32767 + } + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": -652, + "id": "minecraft:purple_stained_glass_pane", + "count": 16 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 17 + "id": "minecraft:purple_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, + "B": { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 0 + } + }, + "output": [ { - "id": 35, - "damage": 14 + "legacyId": -652, + "id": "minecraft:purple_stained_glass_pane", + "count": 8 } ], + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purple_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 0 + } + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": -733, + "id": "minecraft:purple_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ + "id": "minecraft:purpur_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 575, + "auxValue": 32767 + } + }, + "output": [ { - "id": 351, - "damage": 17 - }, + "legacyId": 201, + "id": "minecraft:purpur_block", + "count": 4 + } + ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:purpur_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 201, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 15 + "legacyId": 203, + "id": "minecraft:purpur_stairs", + "count": 4 + } + ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 + }, + { + "id": "minecraft:quartz_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 540, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 155, + "id": "minecraft:quartz_block" } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 1 + "id": "minecraft:quartz_bricks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": -304, + "id": "minecraft:quartz_bricks" } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 2 + "id": "minecraft:quartz_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 156, + "id": "minecraft:quartz_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:rabbit_stew_from_brown_mushroom", + "type": 0, "input": [ { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 }, { - "id": 35, - "damage": 3 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 285, + "auxValue": 32767 + }, { - "id": 35, - "damage": 12 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 283, + "auxValue": 32767 + }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 293, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 12 + "legacyId": 294, + "id": "minecraft:rabbit_stew" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:rabbit_stew_from_red_mushroom", + "type": 0, "input": [ { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 }, { - "id": 35, - "damage": 5 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 285, + "auxValue": 32767 + }, { - "id": 35, - "damage": 12 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 283, + "auxValue": 32767 + }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 }, { - "id": 35, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 293, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 12 + "legacyId": 294, + "id": "minecraft:rabbit_stew" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 17 + "id": "minecraft:rail", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 66, + "id": "minecraft:rail", + "count": 16 } ], - "priority": 50 + "shape": [ + "A A", + "ABA", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 17 + "id": "minecraft:raiser_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 713, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 713, + "id": "minecraft:raiser_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 9 + "id": "minecraft:raw_copper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -452, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 523, + "id": "minecraft:raw_copper", + "count": 9 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35 + "id": "minecraft:raw_copper_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 523, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": -452, + "id": "minecraft:raw_copper_block" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:raw_gold", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -453, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 11, - "count": 8 + "legacyId": 522, + "id": "minecraft:raw_gold", + "count": 9 } ], + "shape": [ + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:raw_gold_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 522, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": -453, + "id": "minecraft:raw_gold_block" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 12 + "id": "minecraft:raw_iron", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -451, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 521, + "id": "minecraft:raw_iron", + "count": 9 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 13 + "id": "minecraft:raw_iron_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 521, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": -451, + "id": "minecraft:raw_iron_block" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:record_5", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 656, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 655, + "id": "minecraft:music_disc_5" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 + "id": "minecraft:recovery_compass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 666, + "auxValue": 32767 }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 399, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 665, + "id": "minecraft:recovery_compass" } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 + "id": "minecraft:recovery_compass_from_lodestone_compass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 666, + "auxValue": 32767 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 621, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 665, + "id": "minecraft:recovery_compass" } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 + "id": "minecraft:red_banner", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 1, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:red_candle", + "type": 0, "input": [ { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 11 + "legacyId": -427, + "id": "minecraft:red_candle" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 4 + "id": "minecraft:red_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": -610, + "id": "minecraft:red_carpet", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 + "id": "minecraft:red_carpet_from_white", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": -610, + "id": "minecraft:red_carpet", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:red_concrete_powder", + "type": 0, "input": [ { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 }, { - "id": 35, - "damage": 6 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 35, - "damage": 11 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 35, - "damage": 7 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 35, - "damage": 11 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 35, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 11 + "legacyId": -722, + "id": "minecraft:red_concrete_powder", + "count": 8 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:red_dye_from_beetroot", + "type": 0, "input": [ { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 289, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 11 + "legacyId": 404, + "id": "minecraft:red_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:red_dye_from_poppy", + "type": 0, "input": [ { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 38, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 12, - "count": 2 + "legacyId": 404, + "id": "minecraft:red_dye" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:red_dye_from_rose_bush", + "type": 0, "input": [ { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -866, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 12, + "legacyId": 404, + "id": "minecraft:red_dye", "count": 2 } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:red_dye_from_tulip", + "type": 0, "input": [ { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -833, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 13, - "count": 4 + "legacyId": 404, + "id": "minecraft:red_dye" } ], - "priority": 6 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 1 + "id": "minecraft:red_nether_brick", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 539, + "auxValue": 32767 }, - { - "id": 351, - "damage": 19 + "B": { + "type": "default", + "count": 1, + "itemId": 298, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 13, - "count": 4 + "legacyId": 215, + "id": "minecraft:red_nether_brick" } ], - "priority": 4 + "shape": [ + "AB", + "BA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 9 + "id": "minecraft:red_nether_brick_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 215, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 13, - "count": 3 + "legacyId": -184, + "id": "minecraft:red_nether_brick_stairs", + "count": 4 } ], - "priority": 2 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 1 + "id": "minecraft:red_nether_brick_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 215, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 5, - "count": 2 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 2 + "id": "minecraft:red_sandstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 1 } - ], + }, "output": [ { - "id": 351, - "damage": 6, - "count": 2 + "legacyId": 179, + "id": "minecraft:red_sandstone" } ], + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35 + "id": "minecraft:red_sandstone_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 180, + "id": "minecraft:red_sandstone_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:red_sandstone_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 } - ], + }, "output": [ { - "id": 237, - "count": 8 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:red_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, - { - "id": 35, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": -686, + "id": "minecraft:red_stained_glass", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 11 + "id": "minecraft:red_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -686, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -656, + "id": "minecraft:red_stained_glass_pane", + "count": 16 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:red_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": -656, + "id": "minecraft:red_stained_glass_pane", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:red_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, - { - "id": 35, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": -737, + "id": "minecraft:red_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:redstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 152, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": 380, + "id": "minecraft:redstone", + "count": 9 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 15 + "id": "minecraft:redstone_block", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": 152, + "id": "minecraft:redstone_block" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:redstone_lamp", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 89, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": 123, + "id": "minecraft:redstone_lamp" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:redstone_torch", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": 76, + "id": "minecraft:redstone_torch" } ], - "priority": 50 + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:repeater", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 76, + "auxValue": 32767 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": 427, + "id": "minecraft:repeater" } ], - "priority": 50 + "shape": [ + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:respawn_anchor", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -289, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 89, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -272, + "id": "minecraft:respawn_anchor" } ], - "priority": 50 + "shape": [ + "AAA", + "BBB", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:rib_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 709, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 87, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": 709, + "id": "minecraft:rib_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 6 + "id": "minecraft:sandstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": 24, + "id": "minecraft:sandstone" } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 7 + "id": "minecraft:sandstone_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": 128, + "id": "minecraft:sandstone_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 8 + "id": "minecraft:sandstone_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 19 + "id": "minecraft:scaffolding", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -163, + "auxValue": 32767 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35 + "legacyId": -165, + "id": "minecraft:scaffolding", + "count": 6 } ], - "priority": 50 + "shape": [ + "ABA", + "A A", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:sealantern", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 581, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 565, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 14, - "count": 8 + "legacyId": 169, + "id": "minecraft:sea_lantern" } ], + "shape": [ + "ABA", + "BBB", + "ABA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:sentry_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 700, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 700, + "id": "minecraft:sentry_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:shaper_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 714, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 714, + "id": "minecraft:shaper_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 12 + "id": "minecraft:shears", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 429, + "id": "minecraft:shears" } ], - "priority": 50 + "shape": [ + " A", + "A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:shield", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, - { - "id": 35, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 362, + "id": "minecraft:shield" } ], - "priority": 50 + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:shield_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 362, + "id": "minecraft:shield" } ], - "priority": 50 + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:shield_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 362, + "id": "minecraft:shield" } ], - "priority": 50 + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:shield_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 362, + "id": "minecraft:shield" } ], - "priority": 50 + "shape": [ + "ABA", + "AAA", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:shulker_box", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 582, + "auxValue": 32767 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 205, + "id": "minecraft:undyed_shulker_box" } ], - "priority": 50 + "shape": [ + "A", + "B", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:sign_acacia", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -742, + "auxValue": 0 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 595, + "id": "minecraft:acacia_sign", + "count": 3 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:sign_birch", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -740, + "auxValue": 0 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 593, + "id": "minecraft:birch_sign", + "count": 3 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:sign_darkoak", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -743, + "auxValue": 0 }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 596, + "id": "minecraft:dark_oak_sign", + "count": 3 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:sign_jungle", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -741, + "auxValue": 0 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 594, + "id": "minecraft:jungle_sign", + "count": 3 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:sign_oak", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 }, - { - "id": 35, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 365, + "id": "minecraft:oak_sign", + "count": 3 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:sign_spruce", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": 592, + "id": "minecraft:spruce_sign", + "count": 3 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:silence_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 351, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 711, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 14, + "legacyId": 711, + "id": "minecraft:silence_armor_trim_smithing_template", "count": 2 } ], + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 15 + "id": "minecraft:slime", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 396, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 9, - "count": 2 + "legacyId": 165, + "id": "minecraft:slime" } ], + "shape": [ + "AAA", + "AAA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 19 + "id": "minecraft:slime_ball", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 165, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 9, - "count": 2 + "legacyId": 396, + "id": "minecraft:slime_ball", + "count": 9 } ], + "shape": [ + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 1 + "id": "minecraft:smithing_table", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 35 + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } - ], + }, "output": [ { - "id": 35, - "damage": 14 + "legacyId": -202, + "id": "minecraft:smithing_table" } ], - "priority": 50 + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:smithing_table_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 13, - "count": 8 + "legacyId": -202, + "id": "minecraft:smithing_table" } ], - "priority": 0 + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smithing_table_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 35, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -202, + "id": "minecraft:smithing_table" } ], - "priority": 50 + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smithing_table_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 35, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -202, + "id": "minecraft:smithing_table" } ], - "priority": 50 + "shape": [ + "AA", + "BB", + "BB" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:logs" }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_crimson_stem", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -225, + "auxValue": 32767 }, - { - "id": 35, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_log2", + "type": 1, + "input": { + "A": { + "type": "complex_alias", + "count": 1 }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_mangrove_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -484, + "auxValue": 32767 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_mangrove_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -497, + "auxValue": 32767 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_acacia", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -8, + "auxValue": 32767 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_birch", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -6, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_crimson_stem", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -240, + "auxValue": 32767 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_dark_oak", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -9, + "auxValue": 32767 }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_jungle", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -7, + "auxValue": 32767 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_mangrove_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 }, - { - "id": 35, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_mangrove_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -498, + "auxValue": 32767 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_oak", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -10, + "auxValue": 32767 }, - { - "id": 351, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 10, - "count": 2 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 1 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_spruce", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -5, + "auxValue": 32767 }, - { - "id": 351, - "damage": 19 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 10, - "count": 2 + "legacyId": -198, + "id": "minecraft:smoker" } ], + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 2 + "id": "minecraft:smoker_from_stripped_warped_stem", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -241, + "auxValue": 32767 }, - { - "id": 35 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 13 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:smoker_from_warped_stem", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -226, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 61, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 12, - "count": 8 + "legacyId": -198, + "id": "minecraft:smoker" } ], - "priority": 1 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:smooth_quartz_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 3 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": -185, + "id": "minecraft:smooth_quartz_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 11 + "id": "minecraft:smooth_red_sandstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 179, + "id": "minecraft:red_sandstone", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 13 + "id": "minecraft:smooth_red_sandstone_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 3 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": -176, + "id": "minecraft:smooth_red_sandstone_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:smooth_sandstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 24, + "id": "minecraft:sandstone", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 15 + "id": "minecraft:smooth_sandstone_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 3 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": -177, + "id": "minecraft:smooth_sandstone_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:snout_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 708, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 708, + "id": "minecraft:snout_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 2 + "id": "minecraft:snow", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 381, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 80, + "id": "minecraft:snow" } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 3 + "id": "minecraft:snow_layer", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 80, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 78, + "id": "minecraft:snow_layer", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:soul_campfire", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:soul_fire_base_blocks" + }, + "C": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:logs" } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:soul_campfire_from_crimson_stem", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -225, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:soul_campfire_from_crimson_stem2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -225, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:soul_campfire_from_mangrove_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -484, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:soul_campfire_from_mangrove_log2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -484, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:soul_campfire_from_mangrove_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -497, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:soul_campfire_from_mangrove_wood2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -497, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 12 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 3 + "id": "minecraft:soul_campfire_from_soul_sand", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "complex_alias", + "count": 1 } - ], + }, "output": [ { - "id": 351, - "damage": 17 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 0 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:soul_campfire_from_soul_sand_and_log2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "C": { + "type": "complex_alias", + "count": 1 } - ], + }, "output": [ { - "id": 237, - "damage": 11, - "count": 8 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 1 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -8, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_birch_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -6, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -9, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -7, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_oak_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -10, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_sand_and_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -5, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_sand_and_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "complex_alias", + "count": 1 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "complex_alias", + "count": 1 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil_and_log2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "complex_alias", + "count": 1 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_acacia_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -8, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_birch_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -6, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_dark_oak_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -9, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_jungle_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -7, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_oak_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -10, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil_and_stripped_spruce_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 351, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -5, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 12, - "count": 2 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 4 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_soul_soil_and_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 351, - "damage": 19 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "complex_alias", + "count": 1 } - ], + }, "output": [ { - "id": 351, - "damage": 12, - "count": 2 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 3 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 1 + "id": "minecraft:soul_campfire_from_stripped_crimson_stem", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 351, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 }, - { - "id": 351, - "damage": 15 + "C": { + "type": "default", + "count": 1, + "itemId": -240, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 13, - "count": 4 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 8 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 1 + "id": "minecraft:soul_campfire_from_stripped_crimson_stem2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 351, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 }, - { - "id": 351, - "damage": 19 + "C": { + "type": "default", + "count": 1, + "itemId": -240, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 13, - "count": 4 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 7 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_stripped_mangrove_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 351, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 }, - { - "id": 351, - "damage": 9 + "C": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 13, - "count": 3 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 5 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_stripped_mangrove_log2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 351, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -485, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 5, - "count": 2 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 1 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_stripped_mangrove_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 351, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -498, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 6, - "count": 2 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 1 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_stripped_mangrove_wood2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -498, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 11 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 4 + "id": "minecraft:soul_campfire_from_stripped_warped_stem", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -241, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 18 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 0 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:soul_campfire_from_stripped_warped_stem2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "C": { + "type": "default", + "count": 1, + "itemId": -241, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 10, - "count": 8 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 0 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:soul_campfire_from_warped_stem", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -226, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:soul_campfire_from_warped_stem2", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -226, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": 641, + "id": "minecraft:soul_campfire" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + "CCC" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:soul_lantern", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 585, + "auxValue": 32767 }, - { - "id": 35, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": -268, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": -269, + "id": "minecraft:soul_lantern" } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:soul_torch", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:coals" }, - { - "id": 35, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:soul_fire_base_blocks" } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": -268, + "id": "minecraft:soul_torch", + "count": 4 } ], - "priority": 50 + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:soul_torch_from_soul_sand", + "type": 1, + "input": { + "A": { + "type": "complex_alias", + "count": 1 }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 88, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": -268, + "id": "minecraft:soul_torch", + "count": 4 } ], - "priority": 50 + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:soul_torch_from_soul_soil", + "type": 1, + "input": { + "A": { + "type": "complex_alias", + "count": 1 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -236, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": -268, + "id": "minecraft:soul_torch", + "count": 4 } ], - "priority": 50 + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:speckled_melon", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 434, + "auxValue": 32767 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 276, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": 443, + "id": "minecraft:glistering_melon_slice" } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:spire_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 710, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 201, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": 710, + "id": "minecraft:spire_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 4 + "id": "minecraft:spruce_boat", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": 386, + "id": "minecraft:spruce_boat" } ], - "priority": 50 + "shape": [ + "A A", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:spruce_chest_boat", + "type": 0, "input": [ { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 }, { - "id": 35, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 386, + "auxValue": 0 } ], "output": [ { - "id": 35, - "damage": 10 + "legacyId": 660, + "id": "minecraft:spruce_chest_boat" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 6 + "id": "minecraft:spruce_door", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": 569, + "id": "minecraft:spruce_door", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:spruce_fence", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": -579, + "id": "minecraft:spruce_fence", + "count": 3 } ], - "priority": 50 + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:spruce_fence_gate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": 183, + "id": "minecraft:spruce_fence_gate" } ], - "priority": 50 + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 + "id": "minecraft:spruce_hanging_sign", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": -5, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": -501, + "id": "minecraft:spruce_hanging_sign", + "count": 6 } ], - "priority": 50 + "shape": [ + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 351, - "damage": 9 + "id": "minecraft:spruce_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -569, + "auxValue": 0 } - ], + }, "output": [ { - "id": 351, - "damage": 13, - "count": 2 + "legacyId": -739, + "id": "minecraft:spruce_planks", + "count": 4 } ], - "priority": 3 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35 + "id": "minecraft:spruce_planks_from_stripped", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -5, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 10 + "legacyId": -739, + "id": "minecraft:spruce_planks", + "count": 4 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:spruce_planks_from_stripped_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -820, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 9, - "count": 8 + "legacyId": -739, + "id": "minecraft:spruce_planks", + "count": 4 } ], + "shape": [ + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:spruce_planks_from_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -814, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": -739, + "id": "minecraft:spruce_planks", + "count": 4 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 11 + "id": "minecraft:spruce_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 134, + "id": "minecraft:spruce_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 12 + "id": "minecraft:spruce_wood", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -569, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": -814, + "id": "minecraft:spruce_wood", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 13 + "id": "minecraft:spruce_wood_stripped", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -5, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": -820, + "id": "minecraft:stripped_spruce_wood", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:spruce_wooden_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": -804, + "id": "minecraft:spruce_slab", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 + "id": "minecraft:spyglass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 643, + "auxValue": 32767 }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 520, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 644, + "id": "minecraft:spyglass" } ], - "priority": 50 + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, + "id": "minecraft:stick", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" + } + }, + "output": [ { - "id": 35, - "damage": 1 + "legacyId": 327, + "id": "minecraft:stick", + "count": 4 } ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": -1 + }, + { + "id": "minecraft:stick_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 + } + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 327, + "id": "minecraft:stick", + "count": 4 } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 2 + "id": "minecraft:stick_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 327, + "id": "minecraft:stick", + "count": 4 } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 3 + "id": "minecraft:stick_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 327, + "id": "minecraft:stick", + "count": 4 } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 + "id": "minecraft:sticky_piston", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 396, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 33, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 29, + "id": "minecraft:sticky_piston" } ], - "priority": 50 + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 + "id": "minecraft:stone_axe", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:stone_tool_materials" }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 321, + "id": "minecraft:stone_axe" } ], - "priority": 50 + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 + "id": "minecraft:stone_axe_from_blackstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 321, + "id": "minecraft:stone_axe" } ], - "priority": 50 + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 + "id": "minecraft:stone_axe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 321, + "id": "minecraft:stone_axe" } ], - "priority": 50 + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 8 + "id": "minecraft:stone_brick_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 109, + "id": "minecraft:stone_brick_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35 + "id": "minecraft:stone_brick_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 98, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 9 + "legacyId": 139, + "id": "minecraft:cobblestone_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:stone_button", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 } - ], + }, "output": [ { - "id": 237, - "damage": 8, - "count": 8 + "legacyId": 77, + "id": "minecraft:stone_button" } ], + "shape": [ + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_hoe", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:stone_tool_materials" }, - { - "id": 35, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 337, + "id": "minecraft:stone_hoe" } ], - "priority": 50 + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_hoe_from_blackstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 }, - { - "id": 35, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 337, + "id": "minecraft:stone_hoe" } ], - "priority": 50 + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_hoe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 337, + "id": "minecraft:stone_hoe" } ], - "priority": 50 + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_pickaxe", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:stone_tool_materials" }, - { - "id": 35, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 320, + "id": "minecraft:stone_pickaxe" } ], - "priority": 50 + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_pickaxe_from_blackstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 }, - { - "id": 35, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 320, + "id": "minecraft:stone_pickaxe" } ], - "priority": 50 + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_pickaxe_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 320, + "id": "minecraft:stone_pickaxe" } ], - "priority": 50 + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 1 + "id": "minecraft:stone_pressure_plate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 70, + "id": "minecraft:stone_pressure_plate" } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_shovel", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:stone_tool_materials" }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 319, + "id": "minecraft:stone_shovel" } ], - "priority": 50 + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_shovel_from_blackstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 319, + "id": "minecraft:stone_shovel" } ], - "priority": 50 + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_shovel_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 319, + "id": "minecraft:stone_shovel" } ], - "priority": 50 + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 5 + "id": "minecraft:stone_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": -180, + "id": "minecraft:normal_stone_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_sword", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:stone_tool_materials" }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 318, + "id": "minecraft:stone_sword" } ], - "priority": 50 + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_sword_from_blackstone", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -273, + "auxValue": 32767 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 318, + "id": "minecraft:stone_sword" } ], - "priority": 50 + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 + "id": "minecraft:stone_sword_from_cobbled_deepslate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 318, + "id": "minecraft:stone_sword" } ], - "priority": 50 + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35 + "id": "minecraft:stonebrick", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 1, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35, - "damage": 8 + "legacyId": 98, + "id": "minecraft:stonebrick", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:stonecutter", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 13, - "damage": -1 + "B": { + "type": "complex_alias", + "count": 1 } - ], + }, "output": [ { - "id": 237, - "damage": 7, - "count": 8 + "legacyId": -197, + "id": "minecraft:stonecutter_block" } ], + "shape": [ + " A ", + "BBB" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:string_to_wool", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 333, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 7 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 11 + "id": "minecraft:stripped_crimson_hyphae", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -240, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 7 + "legacyId": -300, + "id": "minecraft:stripped_crimson_hyphae", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 12 + "id": "minecraft:stripped_warped_hyphae", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -241, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 7 + "legacyId": -301, + "id": "minecraft:stripped_warped_hyphae", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 13 + "id": "minecraft:sugar", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 393, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 7 + "legacyId": 424, + "id": "minecraft:sugar" } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_allium", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -831, + "auxValue": 32767 } ], "output": [ { - "id": 35, + "legacyId": 608, + "id": "minecraft:suspicious_stew", "damage": 7 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_azure_bluet", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -832, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 3 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_blue_orchid", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -830, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 6 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_cornflower", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -838, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 1 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_dandelion", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 37, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 5 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_lily_of_the_valley", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -839, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 4 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_oxeye_daisy", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -837, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 8 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_poppy", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 38, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_torchflower", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -568, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 10 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_tulip_orange", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 35, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -834, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_tulip_pink", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -836, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 7, - "count": 2 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 2 } ], - "priority": 6 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_tulip_red", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -833, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 7, - "count": 2 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 2 } ], - "priority": 4 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_tulip_white", + "type": 0, "input": [ { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 }, { - "id": 35 + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": -835, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 7 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:suspicious_stew_from_wither_rose", + "type": 0, "input": [ { - "id": 351, - "damage": 9 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 39, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 40, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 328, + "auxValue": 32767 }, { - "id": 13, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -216, + "auxValue": 32767 } ], "output": [ { - "id": 237, - "damage": 6, - "count": 8 + "legacyId": 608, + "id": "minecraft:suspicious_stew", + "damage": 9 } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:target", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 }, - { - "id": 35, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 170, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": -239, + "id": "minecraft:target" } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:tide_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 707, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": 707, + "id": "minecraft:tide_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:tinted_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 643, + "auxValue": 32767 }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": -334, + "id": "minecraft:tinted_glass", + "count": 2 } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " A " + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:tnt", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, - { - "id": 35, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": 46, + "id": "minecraft:tnt" } ], - "priority": 50 + "shape": [ + "ABA", + "BAB", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:tnt_minecart", + "type": 0, "input": [ { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 46, + "auxValue": 0 }, { - "id": 35, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 377, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 6 + "legacyId": 541, + "id": "minecraft:tnt_minecart" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:torch", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:coals" }, - { - "id": 35, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": 50, + "id": "minecraft:torch", + "count": 4 } ], - "priority": 50 + "shape": [ + "A", + "B" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", + "id": "minecraft:trapped_chest", + "type": 0, "input": [ { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 54, + "auxValue": 32767 }, { - "id": 35, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 131, + "auxValue": 32767 } ], "output": [ { - "id": 35, - "damage": 6 + "legacyId": 146, + "id": "minecraft:trapped_chest" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:tripwire_hook", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": 131, + "id": "minecraft:tripwire_hook", + "count": 2 } ], - "priority": 50 + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": -1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:tripwire_hook_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": 131, + "id": "minecraft:tripwire_hook" } ], - "priority": 50 + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:tripwire_hook_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": 131, + "id": "minecraft:tripwire_hook" } ], - "priority": 50 + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 + "id": "minecraft:tripwire_hook_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 311, + "auxValue": 32767 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": 131, + "id": "minecraft:tripwire_hook" } ], - "priority": 50 + "shape": [ + "A", + "B", + "C" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 7 + "id": "minecraft:tuff_brick_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -754, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": -755, + "id": "minecraft:tuff_brick_slab", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 - }, + "id": "minecraft:tuff_brick_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -754, + "auxValue": 32767 + } + }, + "output": [ { - "id": 35, - "damage": 8 + "legacyId": -757, + "id": "minecraft:tuff_brick_stairs", + "count": 4 } ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 1 + }, + { + "id": "minecraft:tuff_brick_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -754, + "auxValue": 32767 + } + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": -758, + "id": "minecraft:tuff_brick_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 9 + "id": "minecraft:tuff_bricks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -748, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": -754, + "id": "minecraft:tuff_bricks", + "count": 4 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35 + "id": "minecraft:tuff_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 6 + "legacyId": -744, + "id": "minecraft:tuff_slab", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 + "id": "minecraft:tuff_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 237, - "damage": 15, - "count": 8 + "legacyId": -746, + "id": "minecraft:tuff_stairs", + "count": 4 } ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 10 + "id": "minecraft:tuff_wall", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -333, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -747, + "id": "minecraft:tuff_wall", + "count": 6 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 11 + "id": "minecraft:turtle_helmet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 588, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": 589, + "id": "minecraft:turtle_helmet" } ], - "priority": 50 + "shape": [ + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 + "id": "minecraft:vex_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 706, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 4, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": 706, + "id": "minecraft:vex_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 + "id": "minecraft:ward_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 35, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 704, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": -379, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": 704, + "id": "minecraft:ward_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 14 + "id": "minecraft:warped_button", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -261, + "id": "minecraft:warped_button" } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 1 + "id": "minecraft:warped_door", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": 636, + "id": "minecraft:warped_door", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 + "id": "minecraft:warped_fence", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -257, + "id": "minecraft:warped_fence", + "count": 3 } ], - "priority": 50 + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 + "id": "minecraft:warped_fence_gate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -259, + "id": "minecraft:warped_fence_gate" } ], - "priority": 50 + "shape": [ + "ABA", + "ABA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 + "id": "minecraft:warped_fungus_on_a_stick", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 400, + "auxValue": 32767 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": -229, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": 637, + "id": "minecraft:warped_fungus_on_a_stick" } ], - "priority": 50 + "shape": [ + "A ", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 + "id": "minecraft:warped_hanging_sign", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 638, + "auxValue": 32767 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": -241, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -507, + "id": "minecraft:warped_hanging_sign", + "count": 6 } ], - "priority": 50 + "shape": [ + "A A", + "BBB", + "BBB" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 6 + "id": "minecraft:warped_hyphae", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -226, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -298, + "id": "minecraft:warped_hyphae", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 7 + "id": "minecraft:warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -226, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -243, + "id": "minecraft:warped_planks", + "count": 4 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 8 + "id": "minecraft:warped_planks_from_stripped_log", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -241, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -243, + "id": "minecraft:warped_planks", + "count": 4 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 9 + "id": "minecraft:warped_planks_from_stripped_warped_hyphae", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -301, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -243, + "id": "minecraft:warped_planks", + "count": 4 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 351, - "damage": 15 - }, - { - "id": 351, - "damage": 15 + "id": "minecraft:warped_planks_from_warped_hyphae", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -298, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 7, - "count": 3 + "legacyId": -243, + "id": "minecraft:warped_planks", + "count": 4 } ], - "priority": 8 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 351, - "damage": 15 + "id": "minecraft:warped_pressure_plate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 8, - "count": 2 + "legacyId": -263, + "id": "minecraft:warped_pressure_plate" } ], - "priority": 3 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 351, - "damage": 19 + "id": "minecraft:warped_sign", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 351, - "damage": 19 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 7, + "legacyId": 634, + "id": "minecraft:warped_sign", "count": 3 } ], - "priority": 5 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 351, - "damage": 19 + "id": "minecraft:warped_slab", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 8, - "count": 2 + "legacyId": -265, + "id": "minecraft:warped_slab", + "count": 6 } ], - "priority": 2 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 - }, - { - "id": 35 + "id": "minecraft:warped_stairs", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 35, - "damage": 15 + "legacyId": -255, + "id": "minecraft:warped_stairs", + "count": 4 } ], - "priority": 50 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 351 + "id": "minecraft:warped_trapdoor", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 16 + "legacyId": -247, + "id": "minecraft:warped_trapdoor", + "count": 2 } ], + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 352, - "damage": -1 + "id": "minecraft:waxed_chiseled_copper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -365, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 351, - "damage": 15, - "count": 3 + "legacyId": -764, + "id": "minecraft:waxed_chiseled_copper" } ], + "shape": [ + "A", + "A" + ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 + "id": "minecraft:waxed_copper_bulb", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 }, - { - "id": 351, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 5 + "legacyId": -780, + "id": "minecraft:waxed_copper_bulb", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " C " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 11 + "id": "minecraft:waxed_copper_grate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -344, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 4 + "legacyId": -772, + "id": "minecraft:waxed_copper_grate", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 12 + "id": "minecraft:waxed_exposed_chiseled_copper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -366, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 3 + "legacyId": -765, + "id": "minecraft:waxed_exposed_chiseled_copper" } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:waxed_exposed_chiseled_copper_from_honeycomb", + "type": 0, "input": [ { - "id": 355, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -761, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -765, + "id": "minecraft:waxed_exposed_chiseled_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 + "id": "minecraft:waxed_exposed_copper_bulb", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -345, + "auxValue": 32767 }, - { - "id": 351, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 1 + "legacyId": -781, + "id": "minecraft:waxed_exposed_copper_bulb", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " C " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 15 + "id": "minecraft:waxed_exposed_copper_grate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -345, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355 + "legacyId": -773, + "id": "minecraft:waxed_exposed_copper_grate", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 16 + "id": "minecraft:waxed_oxidized_chiseled_copper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -449, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 15 + "legacyId": -766, + "id": "minecraft:waxed_oxidized_chiseled_copper" } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb", + "type": 0, "input": [ { - "id": 355, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -763, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -766, + "id": "minecraft:waxed_oxidized_chiseled_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 + "id": "minecraft:waxed_oxidized_copper_bulb", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -446, + "auxValue": 32767 }, - { - "id": 351, - "damage": 18 + "B": { + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": -783, + "id": "minecraft:waxed_oxidized_copper_bulb", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " C " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 19 + "id": "minecraft:waxed_oxidized_copper_grate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -446, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355 + "legacyId": -775, + "id": "minecraft:waxed_oxidized_copper_grate", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 1 + "id": "minecraft:waxed_weathered_chiseled_copper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -367, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 14 + "legacyId": -767, + "id": "minecraft:waxed_weathered_chiseled_copper" } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:waxed_weathered_chiseled_copper_from_honeycomb", + "type": 0, "input": [ { - "id": 355, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -762, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -767, + "id": "minecraft:waxed_weathered_chiseled_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 + "id": "minecraft:waxed_weathered_copper_bulb", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -346, + "auxValue": 32767 }, - { - "id": 351, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 12 + "legacyId": -782, + "id": "minecraft:waxed_weathered_copper_bulb", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " C " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 4 + "id": "minecraft:waxed_weathered_copper_grate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -346, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": -774, + "id": "minecraft:waxed_weathered_copper_grate", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:waxing_chiseled_copper", + "type": 0, "input": [ { - "id": 355, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -760, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": -764, + "id": "minecraft:waxed_chiseled_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_copper_block", + "type": 0, "input": [ { - "id": 355, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -340, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": -344, + "id": "minecraft:waxed_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_copper_bulb", + "type": 0, "input": [ { - "id": 355, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -776, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -780, + "id": "minecraft:waxed_copper_bulb" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_copper_door", + "type": 0, "input": [ { - "id": 355, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -784, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -788, + "id": "minecraft:waxed_copper_door" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_copper_grate", + "type": 0, "input": [ { - "id": 355, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -768, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -772, + "id": "minecraft:waxed_copper_grate" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_copper_trapdoor", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -792, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": -796, + "id": "minecraft:waxed_copper_trapdoor" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_cut_copper", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -347, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": -351, + "id": "minecraft:waxed_cut_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_cut_copper_slab", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -361, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -365, + "id": "minecraft:waxed_cut_copper_slab" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_cut_copper_stairs", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -354, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -358, + "id": "minecraft:waxed_cut_copper_stairs" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_exposed_copper", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -341, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -345, + "id": "minecraft:waxed_exposed_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_exposed_copper_bulb", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -777, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -781, + "id": "minecraft:waxed_exposed_copper_bulb" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_exposed_copper_door", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -785, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -789, + "id": "minecraft:waxed_exposed_copper_door" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_exposed_copper_grate", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -769, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -773, + "id": "minecraft:waxed_exposed_copper_grate" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_exposed_copper_trapdoor", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -793, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -797, + "id": "minecraft:waxed_exposed_copper_trapdoor" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_exposed_cut_copper", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -348, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -352, + "id": "minecraft:waxed_exposed_cut_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_exposed_cut_copper_slab", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -362, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -366, + "id": "minecraft:waxed_exposed_cut_copper_slab" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_exposed_cut_copper_stairs", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -355, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -359, + "id": "minecraft:waxed_exposed_cut_copper_stairs" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_oxidized_copper", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -343, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": -446, + "id": "minecraft:waxed_oxidized_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_oxidized_copper_bulb", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -779, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": -783, + "id": "minecraft:waxed_oxidized_copper_bulb" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_oxidized_copper_door", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -787, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": -791, + "id": "minecraft:waxed_oxidized_copper_door" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_oxidized_copper_grate", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -771, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -775, + "id": "minecraft:waxed_oxidized_copper_grate" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_oxidized_copper_trapdoor", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -795, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -799, + "id": "minecraft:waxed_oxidized_copper_trapdoor" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_oxidized_cut_copper", + "type": 0, "input": [ { - "id": 355, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -350, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -447, + "id": "minecraft:waxed_oxidized_cut_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_oxidized_cut_copper_slab", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -364, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": -449, + "id": "minecraft:waxed_oxidized_cut_copper_slab" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_oxidized_cut_copper_stairs", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -357, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": -448, + "id": "minecraft:waxed_oxidized_cut_copper_stairs" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_weathered_copper", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -346, + "id": "minecraft:waxed_weathered_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_weathered_copper_bulb", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -778, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -782, + "id": "minecraft:waxed_weathered_copper_bulb" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_weathered_copper_door", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -786, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -790, + "id": "minecraft:waxed_weathered_copper_door" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_weathered_copper_grate", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -770, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -774, + "id": "minecraft:waxed_weathered_copper_grate" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_weathered_copper_trapdoor", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -794, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -798, + "id": "minecraft:waxed_weathered_copper_trapdoor" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_weathered_cut_copper", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -349, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -353, + "id": "minecraft:waxed_weathered_cut_copper" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_weathered_cut_copper_slab", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -363, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -367, + "id": "minecraft:waxed_weathered_cut_copper_slab" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:waxing_weathered_cut_copper_stairs", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -356, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 609, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -360, + "id": "minecraft:waxed_weathered_cut_copper_stairs" } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 12 + "id": "minecraft:wayfinder_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 351, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 712, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 13 + "legacyId": 712, + "id": "minecraft:wayfinder_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 4 + "id": "minecraft:weathered_chiseled_copper", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -363, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": -762, + "id": "minecraft:weathered_chiseled_copper" } ], - "priority": 50 + "shape": [ + "A", + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 12 + "id": "minecraft:weathered_copper_bulb", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 }, - { - "id": 351, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 431, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 380, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 10 + "legacyId": -778, + "id": "minecraft:weathered_copper_bulb", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "ABA", + " C " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 6 + "id": "minecraft:weathered_copper_grate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -342, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 9 + "legacyId": -770, + "id": "minecraft:weathered_copper_grate", + "count": 4 } ], - "priority": 50 + "shape": [ + " A ", + "A A", + " A " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 7 + "id": "minecraft:wheat", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 170, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 8 + "legacyId": 341, + "id": "minecraft:wheat", + "count": 9 } ], - "priority": 50 + "shape": [ + "A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 12 + "id": "minecraft:white_banner", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 }, - { - "id": 351, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 7 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 15, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:white_candle", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -413, + "id": "minecraft:white_candle" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:white_candle_from_bonemeal", + "type": 0, "input": [ { - "id": 355, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -413, + "id": "minecraft:white_candle" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 10 + "id": "minecraft:white_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 5 + "legacyId": 171, + "id": "minecraft:white_carpet", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:white_concrete_powder", + "type": 0, "input": [ { - "id": 355, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 }, { - "id": 351, - "damage": 11 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 355, - "damage": 4 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 355, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 351, - "damage": 12 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 355, - "damage": 3 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, { - "id": 355, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": 237, + "id": "minecraft:white_concrete_powder", + "count": 8 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:white_concrete_powder_from_bonemeal", + "type": 0, "input": [ { - "id": 355, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 }, { - "id": 351, - "damage": 14 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 355, - "damage": 1 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 355, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": 237, + "id": "minecraft:white_concrete_powder", + "count": 8 } ], - "priority": 50 + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", + "id": "minecraft:white_dye_from_bone_meal", + "type": 0, "input": [ { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": 418, + "id": "minecraft:white_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:white_dye_from_lily_of_the_valley", + "type": 0, "input": [ { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -839, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": 418, + "id": "minecraft:white_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 + "id": "minecraft:white_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, - { - "id": 351, - "damage": 18 + "B": { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": 241, + "id": "minecraft:white_stained_glass", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 + "id": "minecraft:white_stained_glass_from_bonemeal", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, - { - "id": 351, - "damage": 19 + "B": { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355 + "legacyId": 241, + "id": "minecraft:white_stained_glass", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 1 + "id": "minecraft:white_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 241, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 14 + "legacyId": 160, + "id": "minecraft:white_stained_glass_pane", + "count": 16 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 + "id": "minecraft:white_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, - { - "id": 351, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 12 + "legacyId": 160, + "id": "minecraft:white_stained_glass_pane", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 + "id": "minecraft:white_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, - { - "id": 351, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": 159, + "id": "minecraft:white_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 + "id": "minecraft:white_stained_hardened_clay_from_bonemeal", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, - { - "id": 351, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 10 + "legacyId": 159, + "id": "minecraft:white_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 1 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 + "id": "minecraft:wild_armor_trim_smithing_template_duplicate", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 310, + "auxValue": 32767 }, - { - "id": 351, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 703, + "auxValue": 32767 + }, + "C": { + "type": "default", + "count": 1, + "itemId": 48, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 9 + "legacyId": 703, + "id": "minecraft:wild_armor_trim_smithing_template", + "count": 2 } ], - "priority": 50 + "shape": [ + "ABA", + "ACA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:wind_charge", + "type": 0, "input": [ { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 432, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": 260, + "id": "minecraft:wind_charge", + "count": 4 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 8 + "id": "minecraft:wolf_armor", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 721, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 7 + "legacyId": 722, + "id": "minecraft:wolf_armor" } ], - "priority": 50 + "shape": [ + "A ", + "AAA", + "A A" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 + "id": "minecraft:wooden_axe", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, - { - "id": 351, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 6 + "legacyId": 317, + "id": "minecraft:wooden_axe" } ], - "priority": 50 + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 13 + "id": "minecraft:wooden_axe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, - { - "id": 351 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 15 + "legacyId": 317, + "id": "minecraft:wooden_axe" } ], - "priority": 50 + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_axe_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 351, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 5 + "legacyId": 317, + "id": "minecraft:wooden_axe" } ], - "priority": 50 + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_axe_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 351, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 4 + "legacyId": 317, + "id": "minecraft:wooden_axe" } ], - "priority": 50 + "shape": [ + "AA", + "AB", + " B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 12 + "id": "minecraft:wooden_door", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 3 + "legacyId": 366, + "id": "minecraft:wooden_door", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA", + "AA", + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_hoe", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, - { - "id": 351, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 2 + "legacyId": 336, + "id": "minecraft:wooden_hoe" } ], - "priority": 50 + "shape": [ + "AA", + " B", + " B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_hoe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, - { - "id": 351, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 1 + "legacyId": 336, + "id": "minecraft:wooden_hoe" } ], - "priority": 50 + "shape": [ + "AA ", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_hoe_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 351, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355 + "legacyId": 336, + "id": "minecraft:wooden_hoe" } ], - "priority": 50 + "shape": [ + "AA ", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_hoe_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 351, - "damage": 16 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 15 + "legacyId": 336, + "id": "minecraft:wooden_hoe" } ], - "priority": 50 + "shape": [ + "AA ", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_pickaxe", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, - { - "id": 351, - "damage": 17 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 12 + "legacyId": 316, + "id": "minecraft:wooden_pickaxe" } ], - "priority": 50 + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_pickaxe_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, - { - "id": 351, - "damage": 18 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": 316, + "id": "minecraft:wooden_pickaxe" } ], - "priority": 50 + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_pickaxe_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 351, - "damage": 19 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355 + "legacyId": 316, + "id": "minecraft:wooden_pickaxe" } ], - "priority": 50 + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_pickaxe_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 351, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 13 + "legacyId": 316, + "id": "minecraft:wooden_pickaxe" } ], - "priority": 50 + "shape": [ + "AAA", + " B ", + " B " + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_shovel", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, - { - "id": 351, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 12 + "legacyId": 315, + "id": "minecraft:wooden_shovel" } ], - "priority": 50 + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_shovel_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, - { - "id": 351, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": 315, + "id": "minecraft:wooden_shovel" } ], - "priority": 50 + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_shovel_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 351, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 10 + "legacyId": 315, + "id": "minecraft:wooden_shovel" } ], - "priority": 50 + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_shovel_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 351, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 9 + "legacyId": 315, + "id": "minecraft:wooden_shovel" } ], - "priority": 50 + "shape": [ + "A", + "B", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_sword", + "type": 1, + "input": { + "A": { + "type": "item_tag", + "count": 1, + "itemTag": "minecraft:planks" }, - { - "id": 351, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 8 + "legacyId": 314, + "id": "minecraft:wooden_sword" } ], - "priority": 50 + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_sword_from_crimson_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -242, + "auxValue": 32767 }, - { - "id": 351, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 7 + "legacyId": 314, + "id": "minecraft:wooden_sword" } ], - "priority": 50 + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_sword_from_mangrove_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -486, + "auxValue": 32767 }, - { - "id": 351, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 6 + "legacyId": 314, + "id": "minecraft:wooden_sword" } ], - "priority": 50 + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 14 + "id": "minecraft:wooden_sword_from_warped_planks", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -243, + "auxValue": 32767 }, - { - "id": 351 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 15 + "legacyId": 314, + "id": "minecraft:wooden_sword" } ], - "priority": 50 + "shape": [ + "A", + "A", + "B" + ], + "block": "crafting_table", + "priority": 2 }, { - "block": "crafting_table", + "id": "minecraft:writable_book", + "type": 0, "input": [ { - "id": 355, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 395, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 334, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": 526, + "id": "minecraft:writable_book" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 15 + "id": "minecraft:yellow_banner", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 }, - { - "id": 351, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 327, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 4 + "legacyId": 583, + "id": "minecraft:banner", + "damage": 11, + "nbt_b64": "CgAAAwQAVHlwZQAAAAAA" } ], - "priority": 50 + "shape": [ + "AAA", + "AAA", + " B " + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:yellow_candle", + "type": 0, "input": [ { - "id": 355, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -412, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 0 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -417, + "id": "minecraft:yellow_candle" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 13 + "id": "minecraft:yellow_carpet", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 2 + "legacyId": -600, + "id": "minecraft:yellow_carpet", + "count": 3 } ], - "priority": 50 + "shape": [ + "AA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 15 + "id": "minecraft:yellow_carpet_from_white", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 171, + "auxValue": 0 }, - { - "id": 351, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 1 + "legacyId": -600, + "id": "minecraft:yellow_carpet", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:yellow_concrete_powder", + "type": 0, "input": [ { - "id": 355, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 0 }, { - "id": 351, - "damage": 15 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 355 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 355, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 }, { - "id": 351, - "damage": 17 - } - ], - "output": [ + "type": "default", + "count": 1, + "itemId": 12, + "auxValue": 0 + }, { - "id": 355, - "damage": 12 - } - ], - "priority": 50 - }, - { - "block": "crafting_table", - "input": [ + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, { - "id": 355, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 13, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -712, + "id": "minecraft:yellow_concrete_powder", + "count": 8 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:yellow_dye_from_dandelion", + "type": 0, "input": [ { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 37, + "auxValue": 0 } ], "output": [ { - "id": 355 + "legacyId": 414, + "id": "minecraft:yellow_dye" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "minecraft:yellow_dye_from_sunflower", + "type": 0, "input": [ { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 175, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": 414, + "id": "minecraft:yellow_dye", + "count": 2 } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 15 + "id": "minecraft:yellow_stained_glass", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 20, + "auxValue": 32767 }, - { - "id": 351, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 13 + "legacyId": -676, + "id": "minecraft:yellow_stained_glass", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 3 + "id": "minecraft:yellow_stained_glass_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -676, + "auxValue": 32767 } - ], + }, "output": [ { - "id": 355, - "damage": 12 + "legacyId": -646, + "id": "minecraft:yellow_stained_glass_pane", + "count": 16 } ], - "priority": 50 + "shape": [ + "AAA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 15 + "id": "minecraft:yellow_stained_glass_pane_from_pane", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 102, + "auxValue": 32767 }, - { - "id": 351, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 11 + "legacyId": -646, + "id": "minecraft:yellow_stained_glass_pane", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 15 + "id": "minecraft:yellow_stained_hardened_clay", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 172, + "auxValue": 32767 }, - { - "id": 351, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 10 + "legacyId": -727, + "id": "minecraft:yellow_terracotta", + "count": 8 } ], - "priority": 50 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 6 + "id": "oak_stairs_oak_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 5, + "auxValue": 0 } - ], + }, "output": [ { - "id": 355, - "damage": 9 + "legacyId": 53, + "id": "minecraft:oak_stairs", + "count": 4 } ], + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_0_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 0 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_10_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 10 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_11_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 11 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_12_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 12 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_13_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 13 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_14_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 14 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_15_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 15 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_16_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 0 } ], "output": [ { - "id": 355 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_17_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 3 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_18_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 4 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_19_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 15 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_1_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 1 } ], "output": [ { - "id": 355 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_2_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 2 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_3_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 3 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_4_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 4 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_5_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 5 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_6_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 6 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_7_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 7 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_8_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 8 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_charge_9_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 + }, + { + "type": "default", + "count": 1, + "itemId": 536, + "auxValue": 9 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_0_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": 536, + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_10_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 10, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_11_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 11, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_12_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 12, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_13_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 13, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_14_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 14, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_15_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 15, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_16_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": 536, + "id": "minecraft:firework_star", + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_17_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 3, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_18_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 4, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_19_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 15, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_1_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 1, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_2_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 2, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_3_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 3, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_4_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 4, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_5_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 5, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_6_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 6, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_7_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 7, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_8_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 8, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_dye_9_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": 536, + "id": "minecraft:firework_star", + "damage": 9, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA=" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "id": "paper_sulphur_recipeId", + "type": 0, "input": [ { - "id": 355, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 394, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 335, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": 535, + "id": "minecraft:firework_rocket", + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" } ], + "block": "crafting_table", "priority": 50 }, { - "block": "crafting_table", + "type": 4, + "uuid": "00000000-0000-0000-0000-000000000001" + }, + { + "type": 4, + "uuid": "00000000-0000-0000-0000-0000000000c8" + }, + { + "id": "shulkerBox_shulker_box_color_block_0_10_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_11_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_12_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_13_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_14_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_15_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_3_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_8_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_0_9_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_0_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_11_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_12_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_13_0", + "type": 5, "input": [ { - "id": 355, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_14_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_15_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_3_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_8_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_10_9_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_0_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_10_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_12_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_13_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_14_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_15_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_3_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_8_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_11_9_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_0_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_10_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_11_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_13_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_14_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_15_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_3_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_8_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_12_9_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_0_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_10_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_11_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_12_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_14_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_15_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_3_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_8_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_13_9_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_0_0", + "type": 5, "input": [ { - "id": 355, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_10_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_11_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_12_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_13_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_15_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_3_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_8_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_14_9_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_0_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_10_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_11_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_12_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_13_0", + "type": 5, "input": [ { - "id": 355, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_14_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_3_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_8_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_15_9_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_10_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_11_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_12_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_13_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_14_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_15_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_3_0", + "type": 5, "input": [ { - "id": 355, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_8_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_16_9_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_0_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_10_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_11_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_12_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_13_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_14_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_15_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_1_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_2_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_4_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_5_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_6_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_7_0", + "type": 5, "input": [ { - "id": 355, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_8_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 5 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_17_9_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 4 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_0_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 3 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_10_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_11_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 1 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_12_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_13_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_14_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_15_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 14 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_1_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 13 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_2_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 12 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_3_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 11 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_5_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 10 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_6_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 9 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_7_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 8 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_8_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 7 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_18_9_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 6 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_0_0", + "type": 5, "input": [ { - "id": 355 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 355, - "damage": 15 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_10_0", + "type": 5, "input": [ { - "id": 368, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 377, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 381 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_11_0", + "type": 5, "input": [ { - "id": 369, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 377, - "count": 2 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_12_0", + "type": 5, "input": [ { - "id": 375, - "damage": -1 - }, - { - "id": 39, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 353, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 376 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_13_0", + "type": 5, "input": [ { - "id": 377, - "damage": -1 - }, - { - "id": 263, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 385, - "count": 3 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_14_0", + "type": 5, "input": [ { - "id": 377, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 263, - "damage": 1 - }, - { - "id": 289, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 385, - "count": 3 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 50 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_1_0", + "type": 5, "input": [ { - "id": 377, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 341, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 378 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_2_0", + "type": 5, "input": [ { - "id": 37 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 11 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_3_0", + "type": 5, "input": [ { - "id": 38, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 19 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_4_0", + "type": 5, "input": [ { - "id": 38, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 12 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_5_0", + "type": 5, "input": [ { - "id": 38, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 13 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_6_0", + "type": 5, "input": [ { - "id": 38, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 7 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_7_0", + "type": 5, "input": [ { - "id": 38, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 1 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_8_0", + "type": 5, "input": [ { - "id": 38, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 14 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_19_9_0", + "type": 5, "input": [ { - "id": 38, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 7 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_0_0", + "type": 5, "input": [ { - "id": 38, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 9 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_10_0", + "type": 5, "input": [ { - "id": 38, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 7 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_11_0", + "type": 5, "input": [ { - "id": 38, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 18 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_12_0", + "type": 5, "input": [ { - "id": 38 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 1 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_13_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": -216, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 9 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_14_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 37, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 5 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_15_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 4 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_2_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 6 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_3_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 7 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_4_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 3 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_5_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 2 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_6_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 2 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_7_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 2 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_8_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 2 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_1_9_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 8 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_0_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 734, - "damage": 1 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_10_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 }, { - "id": 281, - "damage": -1 - }, - { - "id": 38 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 734 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_11_0", + "type": 5, "input": [ { - "id": 39, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 }, { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 282 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_12_0", + "type": 5, "input": [ { - "id": 395, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 }, { - "id": 345, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 395, - "damage": 2 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_13_0", + "type": 5, "input": [ { - "id": 395 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 }, { - "id": 345, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 395, - "damage": 2 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_14_0", + "type": 5, "input": [ { - "id": 4, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 }, { - "id": 106, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 48 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_15_0", + "type": 5, "input": [ { - "id": 457, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 351, - "damage": 1 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_1_0", + "type": 5, "input": [ { - "id": 54, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 }, { - "id": 131, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 146 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_3_0", + "type": 5, "input": [ { - "id": 752, - "damage": -1 - }, - { - "id": 752, - "damage": -1 - }, - { - "id": 752, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 }, { - "id": 752, - "damage": -1 - }, - { - "id": 266, - "damage": -1 - }, - { - "id": 266, - "damage": -1 - }, - { - "id": 266, - "damage": -1 - }, - { - "id": 266, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 742 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_4_0", + "type": 5, "input": [ { - "id": 86, - "damage": -1 - }, - { - "id": 353, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 }, { - "id": 344, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 400 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_block_2_5_0", + "type": 5, "input": [ { - "id": 98 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 }, { - "id": 106, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 98, - "damage": 1 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_2_6_0", + "type": 5, "input": [ { - "id": -183 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 44, - "count": 2 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_2_7_0", + "type": 5, "input": [ { - "id": -234, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": -235 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_2_8_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": -274 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_2_9_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": -275 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_0_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -276 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_10_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -277 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_11_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -278 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_12_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -279 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_13_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -282, - "count": 2 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_14_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -284, - "count": 2 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_15_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -291 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_1_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -292 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_2_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -293, - "count": 2 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_4_0", + "type": 5, "input": [ { - "id": -273, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -297 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_5_0", + "type": 5, "input": [ { - "id": -274, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -275 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_6_0", + "type": 5, "input": [ { - "id": -274, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -278 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_7_0", + "type": 5, "input": [ { - "id": -274, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -284, - "count": 2 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_8_0", + "type": 5, "input": [ { - "id": -291, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -274 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_3_9_0", + "type": 5, "input": [ { - "id": -291, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": -275 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_0_0", + "type": 5, "input": [ { - "id": -291, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -278 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_10_0", + "type": 5, "input": [ { - "id": -291, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -279 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_11_0", + "type": 5, "input": [ { - "id": -291, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -284, - "count": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_12_0", + "type": 5, "input": [ { - "id": -291, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -292 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_13_0", + "type": 5, "input": [ { - "id": -291, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -293, - "count": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_14_0", + "type": 5, "input": [ { - "id": -291, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -297 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_15_0", + "type": 5, "input": [ { - "id": 1, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 6, - "count": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_1_0", + "type": 5, "input": [ { - "id": 1, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 7, - "count": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 4 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_2_0", + "type": 5, "input": [ { - "id": 1, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -169 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_3_0", + "type": 5, "input": [ { - "id": 1, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -172 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 5 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_5_0", + "type": 5, "input": [ { - "id": 1, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": 1, - "damage": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_6_0", + "type": 5, "input": [ { - "id": 1, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_7_0", + "type": 5, "input": [ { - "id": 1, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 7, - "count": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_8_0", + "type": 5, "input": [ { - "id": 1, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -172 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_4_9_0", + "type": 5, "input": [ { - "id": 1, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 4, - "count": 2 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_0_0", + "type": 5, "input": [ { - "id": 1, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 5, - "count": 2 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 4 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_10_0", + "type": 5, "input": [ { - "id": 1, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -170 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_11_0", + "type": 5, "input": [ { - "id": 1, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -173 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 5 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_12_0", + "type": 5, "input": [ { - "id": 1, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": 1, - "damage": 4 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_13_0", + "type": 5, "input": [ { - "id": 1, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 3 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_14_0", + "type": 5, "input": [ { - "id": 1, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 5, - "count": 2 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_15_0", + "type": 5, "input": [ { - "id": 1, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -173 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_1_0", + "type": 5, "input": [ { - "id": 1, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 2, - "count": 2 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 4 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_2_0", + "type": 5, "input": [ { - "id": 1, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 3, - "count": 2 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_3_0", + "type": 5, "input": [ { - "id": 1, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -171 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_4_0", + "type": 5, "input": [ { - "id": 1, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -174 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 5 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_6_0", + "type": 5, "input": [ { - "id": 1, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": 1, - "damage": 6 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_7_0", + "type": 5, "input": [ { - "id": 1, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 4 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_8_0", + "type": 5, "input": [ { - "id": 1, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 2, - "count": 2 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_5_9_0", + "type": 5, "input": [ { - "id": 1, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": -174 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_0_0", + "type": 5, "input": [ { - "id": 112, - "damage": -1 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": -302 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_10_0", + "type": 5, "input": [ { - "id": 112 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 114 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_11_0", + "type": 5, "input": [ { - "id": 112 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 9 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_12_0", + "type": 5, "input": [ { - "id": 112 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 44, - "damage": 7, - "count": 2 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_13_0", + "type": 5, "input": [ { - "id": 121 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "count": 2 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_14_0", + "type": 5, "input": [ { - "id": 121 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": -178 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_15_0", + "type": 5, "input": [ { - "id": 121 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 10 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_1_0", + "type": 5, "input": [ { - "id": 121 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 206 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_2_0", + "type": 5, "input": [ { - "id": 155, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": -166, - "damage": 1, - "count": 2 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_3_0", + "type": 5, "input": [ { - "id": 155, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": -185 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_4_0", + "type": 5, "input": [ { - "id": 155 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": -304 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_5_0", + "type": 5, "input": [ { - "id": 155 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 155, - "damage": 1 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_7_0", + "type": 5, "input": [ { - "id": 155 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 155, - "damage": 2 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_8_0", + "type": 5, "input": [ { - "id": 155 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 156 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_6_9_0", + "type": 5, "input": [ { - "id": 155 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 44, - "damage": 6, - "count": 2 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_0_0", + "type": 5, "input": [ { - "id": 168, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": -3 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_10_0", + "type": 5, "input": [ { - "id": 168, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 182, - "damage": 3, - "count": 2 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_11_0", + "type": 5, "input": [ { - "id": 168, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": -4 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_12_0", + "type": 5, "input": [ { - "id": 168, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 182, - "damage": 4, - "count": 2 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_13_0", + "type": 5, "input": [ { - "id": 168 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": -2 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_14_0", + "type": 5, "input": [ { - "id": 168 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 11 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_15_0", + "type": 5, "input": [ { - "id": 168 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 182, - "damage": 2, - "count": 2 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_1_0", + "type": 5, "input": [ { - "id": 179, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "damage": 1, - "count": 2 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_2_0", + "type": 5, "input": [ { - "id": 179, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": -176 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_3_0", + "type": 5, "input": [ { - "id": 179 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 12 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 4 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_4_0", + "type": 5, "input": [ { - "id": 179 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 179, - "damage": 1 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_5_0", + "type": 5, "input": [ { - "id": 179 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 179, - "damage": 2 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_6_0", + "type": 5, "input": [ { - "id": 179 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 180 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_8_0", + "type": 5, "input": [ { - "id": 179 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 182, - "count": 2 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_7_9_0", + "type": 5, "input": [ { - "id": 1 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": -166, - "damage": 2, - "count": 2 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], - "priority": 5 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_0_0", + "type": 5, "input": [ { - "id": 1 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": -180 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 6 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_10_0", + "type": 5, "input": [ { - "id": 1 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 109 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_11_0", + "type": 5, "input": [ { - "id": 1 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 7 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_12_0", + "type": 5, "input": [ { - "id": 1 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 44, - "damage": 5, - "count": 2 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_13_0", + "type": 5, "input": [ { - "id": 1 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 98, - "damage": 3 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_14_0", + "type": 5, "input": [ { - "id": 1 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 98 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 4 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_15_0", + "type": 5, "input": [ { - "id": 201 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 182, - "damage": 1, - "count": 2 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_1_0", + "type": 5, "input": [ { - "id": 201 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 201, - "damage": 2 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_2_0", + "type": 5, "input": [ { - "id": 201 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 203 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_3_0", + "type": 5, "input": [ { - "id": 206 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": -162, - "count": 2 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_4_0", + "type": 5, "input": [ { - "id": 206 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": -178 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_5_0", + "type": 5, "input": [ { - "id": 206 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 10 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_6_0", + "type": 5, "input": [ { - "id": 215 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": -184 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_7_0", + "type": 5, "input": [ { - "id": 215 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 13 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_8_9_0", + "type": 5, "input": [ { - "id": 215 + "type": "default", + "count": 1, + "itemId": -618, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 182, - "damage": 7, - "count": 2 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_0_0", + "type": 5, "input": [ { - "id": 24, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -627, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": -177 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_10_0", + "type": 5, "input": [ { - "id": 24, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -617, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 182, - "damage": 6, - "count": 2 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_11_0", + "type": 5, "input": [ { - "id": 24 + "type": "default", + "count": 1, + "itemId": -616, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 128 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 3 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_12_0", + "type": 5, "input": [ { - "id": 24 + "type": "default", + "count": 1, + "itemId": -615, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 5 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 4 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_13_0", + "type": 5, "input": [ { - "id": 24 + "type": "default", + "count": 1, + "itemId": -614, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 24, - "damage": 1 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_14_0", + "type": 5, "input": [ { - "id": 24 + "type": "default", + "count": 1, + "itemId": -613, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 24, - "damage": 2 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_15_0", + "type": 5, "input": [ { - "id": 24 + "type": "default", + "count": 1, + "itemId": 218, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 44, - "damage": 1, - "count": 2 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_1_0", + "type": 5, "input": [ { - "id": 45 + "type": "default", + "count": 1, + "itemId": -626, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 108 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_2_0", + "type": 5, "input": [ { - "id": 45 + "type": "default", + "count": 1, + "itemId": -625, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 6 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_3_0", + "type": 5, "input": [ { - "id": 45 + "type": "default", + "count": 1, + "itemId": -624, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 44, - "damage": 4, - "count": 2 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_4_0", + "type": 5, "input": [ { - "id": 48 + "type": "default", + "count": 1, + "itemId": -623, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": -179 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_5_0", + "type": 5, "input": [ { - "id": 48 + "type": "default", + "count": 1, + "itemId": -622, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 1 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_6_0", + "type": 5, "input": [ { - "id": 48 + "type": "default", + "count": 1, + "itemId": -621, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 182, - "damage": 5, - "count": 2 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_7_0", + "type": 5, "input": [ { - "id": 4 + "type": "default", + "count": 1, + "itemId": -620, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 139 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_block_9_8_0", + "type": 5, "input": [ { - "id": 4 + "type": "default", + "count": 1, + "itemId": -619, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 44, - "damage": 3, - "count": 2 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_dye_0_0", + "type": 5, "input": [ { - "id": 4 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 } ], "output": [ { - "id": 67 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_dye_10_0", + "type": 5, "input": [ { - "id": 98, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 } ], "output": [ { - "id": -166, - "count": 2 + "legacyId": -617, + "id": "minecraft:lime_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_dye_11_0", + "type": 5, "input": [ { - "id": 98, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 } ], "output": [ { - "id": -175 + "legacyId": -616, + "id": "minecraft:yellow_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_dye_12_0", + "type": 5, "input": [ { - "id": 98, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 8 + "legacyId": -615, + "id": "minecraft:light_blue_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_dye_13_0", + "type": 5, "input": [ { - "id": 98 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 } ], "output": [ { - "id": 109 + "legacyId": -614, + "id": "minecraft:magenta_shulker_box" } ], - "priority": 1 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_dye_14_0", + "type": 5, "input": [ { - "id": 98 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 } ], "output": [ { - "id": 139, - "damage": 7 + "legacyId": -613, + "id": "minecraft:orange_shulker_box" } ], - "priority": 2 + "block": "crafting_table", + "priority": 0 }, { - "block": "stonecutter", + "id": "shulkerBox_shulker_box_color_dye_15_0", + "type": 5, "input": [ { - "id": 98 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 + }, + { + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 } ], "output": [ { - "id": 44, - "damage": 5, - "count": 2 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 - } - ], - "shapeless_chemistry": [ + }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_16_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -627, + "id": "minecraft:black_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_17_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_18_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_19_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": 218, + "id": "minecraft:white_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_1_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -626, + "id": "minecraft:red_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_2_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -625, + "id": "minecraft:green_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_3_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -624, + "id": "minecraft:brown_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_4_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -623, + "id": "minecraft:blue_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_5_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -622, + "id": "minecraft:purple_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_6_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -621, + "id": "minecraft:cyan_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_7_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -620, + "id": "minecraft:light_gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_8_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -619, + "id": "minecraft:gray_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", + "id": "shulkerBox_shulker_box_color_dye_9_0", + "type": 5, "input": [ { - "id": 451, - "damage": -1 + "type": "default", + "count": 1, + "itemId": 205, + "auxValue": 0 }, { - "id": 171, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 } ], "output": [ { - "id": 171 + "legacyId": -618, + "id": "minecraft:pink_shulker_box" } ], + "block": "crafting_table", "priority": 0 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 - }, + "id": "slab3_endstonebrick_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 206, + "auxValue": 0 + } + }, + "output": [ { - "id": 171, - "damage": 8 + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 6 } ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "spruce_stairs_spruce_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -739, + "auxValue": 0 + } + }, "output": [ { - "id": 171 + "legacyId": 134, + "id": "minecraft:spruce_stairs", + "count": 4 } ], - "priority": 0 + "shape": [ + "A ", + "AA ", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ + "id": "stoneslab2_RedSandstone_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 0 + } + }, + "output": [ { - "id": 451, - "damage": -1 - }, + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_prismarine_bricks_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 2 + } + }, + "output": [ { - "id": 171, - "damage": 9 + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 } ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_prismarine_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 1 + } + }, "output": [ { - "id": 171 + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 } ], - "priority": 0 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { + "id": "stoneslab2_purpur_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 201, + "auxValue": 0 + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 + } + ], + "shape": [ + "AAA" + ], "block": "crafting_table", - "input": [ + "priority": 50 + }, + { + "id": "stoneslab2_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 48, + "auxValue": 0 + } + }, + "output": [ { - "id": 451, - "damage": -1 - }, + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_rednetherbrick_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 215, + "auxValue": 0 + } + }, + "output": [ { - "id": 35, - "damage": 10 + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 } ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab2_redsandstone_heiroglyphs_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 1 + } + }, "output": [ { - "id": 35 + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 } ], - "priority": 0 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { + "id": "stoneslab2_smoothsandstone_smooth_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 3 + } + }, + "output": [ + { + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 + } + ], + "shape": [ + "AAA" + ], "block": "crafting_table", - "input": [ + "priority": 50 + }, + { + "id": "stoneslab3_andesite_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -594, + "auxValue": 0 + } + }, + "output": [ { - "id": 451, - "damage": -1 - }, + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 6 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_diorite_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -592, + "auxValue": 0 + } + }, + "output": [ { - "id": 35, - "damage": 11 + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 6 } ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_granite", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -590, + "auxValue": 0 + } + }, "output": [ { - "id": 35 + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 6 } ], - "priority": 0 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { + "id": "stoneslab3_polishedGranite_GraniteSmooth_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -591, + "auxValue": 0 + } + }, + "output": [ + { + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 6 + } + ], + "shape": [ + "AAA" + ], "block": "crafting_table", - "input": [ + "priority": 50 + }, + { + "id": "stoneslab3_polished_andesite_andesitesmooth_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -595, + "auxValue": 0 + } + }, + "output": [ { - "id": 451, - "damage": -1 - }, + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 6 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_polished_diorite_dioritesmooth_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": -593, + "auxValue": 0 + } + }, + "output": [ { - "id": 35, - "damage": 12 + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 6 } ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab3_smooth_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 3 + } + }, "output": [ { - "id": 35 + "legacyId": -162, + "id": "minecraft:stone_block_slab3", + "count": 6 } ], - "priority": 0 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { + "id": "stoneslab4_cut_redsandstone_cut_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 179, + "auxValue": 2 + } + }, + "output": [ + { + "legacyId": -166, + "id": "minecraft:stone_block_slab4", + "count": 6 + } + ], + "shape": [ + "AAA" + ], "block": "crafting_table", - "input": [ + "priority": 50 + }, + { + "id": "stoneslab4_cut_sandstone_cut_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 2 + } + }, + "output": [ { - "id": 451, - "damage": -1 - }, + "legacyId": -166, + "id": "minecraft:stone_block_slab4", + "count": 6 + } + ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab4_smoothquartz_smooth_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 3 + } + }, + "output": [ { - "id": 35, - "damage": 13 + "legacyId": -166, + "id": "minecraft:stone_block_slab4", + "count": 6 } ], + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 + }, + { + "id": "stoneslab_quartz_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 155, + "auxValue": 0 + } + }, "output": [ { - "id": 35 + "legacyId": -876, + "id": "minecraft:quartz_slab", + "count": 6 } ], - "priority": 0 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 - }, - { - "id": 35, - "damage": 14 + "id": "stoneslab_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 168, + "auxValue": 0 } - ], + }, "output": [ { - "id": 35 + "legacyId": 182, + "id": "minecraft:stone_block_slab2", + "count": 6 } ], - "priority": 0 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 - }, - { - "id": 35, - "damage": 15 + "id": "stoneslab_sandstone_heiroglyphs_recipeId", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 24, + "auxValue": 1 } - ], + }, "output": [ { - "id": 35 + "legacyId": -872, + "id": "minecraft:sandstone_slab", + "count": 6 } ], - "priority": 0 + "shape": [ + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "type": 4, + "uuid": "aecd2294-4b94-434b-8667-4499bb2c9327" + }, + { + "id": "weapon_arrow_recipe_10", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 10 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 11, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_11", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 11 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 12, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_12", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 12 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 13, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_13", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 13 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 14, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_14", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 14 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 15, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_15", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 15 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 16, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_16", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 16 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 17, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_17", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 17 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 18, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_18", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 35, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 18 } - ], + }, "output": [ { - "id": 35 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 19, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_19", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 19 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 20, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_20", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 20 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 21, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_21", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 21 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 22, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_22", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 22 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 23, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_23", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 23 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 24, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_24", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 15 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 24 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 25, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_25", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 25 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 26, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_26", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 26 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 27, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_27", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 27 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 28, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_28", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 28 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 29, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_29", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 29 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 30, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_30", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 30 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 31, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_31", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 31 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 32, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_32", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 355, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 32 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 33, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 - }, - { - "id": 355, - "damage": 9 + "id": "weapon_arrow_recipe_33", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 + }, + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 33 } - ], + }, "output": [ { - "id": 355 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 34, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_34", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 34 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 35, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_35", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 35 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 36, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_36", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 36 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 37, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_37", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 13 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 37 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 38, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_38", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 14 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 38 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 39, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_39", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 1 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 39 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 40, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_40", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 2 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 40 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 41, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_41", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 3 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 41 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 42, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_42", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 4 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 42 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 43, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_43", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 5 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 43 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 44, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_44", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 6 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 44 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 45, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_45", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 7 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 45 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 46, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_46", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 8 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 46 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 47, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_5", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446, - "damage": 9 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 5 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 6, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 451, - "damage": -1 + "id": "weapon_arrow_recipe_6", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 446 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 6 } - ], + }, "output": [ { - "id": 446, - "damage": 15 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 7, + "count": 8 } ], - "priority": 0 - } - ], - "shapeless_shulker_box": [ - { + "shape": [ + "AAA", + "ABA", + "AAA" + ], "block": "crafting_table", - "input": [ - { - "id": 205 + "priority": 50 + }, + { + "id": "weapon_arrow_recipe_7", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 351, - "damage": 10 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 7 } - ], + }, "output": [ { - "id": 218, - "damage": 5 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 8, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 205 + "id": "weapon_arrow_recipe_8", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 351, - "damage": 11 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 8 } - ], + }, "output": [ { - "id": 218, - "damage": 4 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 9, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", - "input": [ - { - "id": 205 + "id": "weapon_arrow_recipe_9", + "type": 1, + "input": { + "A": { + "type": "default", + "count": 1, + "itemId": 307, + "auxValue": 0 }, - { - "id": 351, - "damage": 12 + "B": { + "type": "default", + "count": 1, + "itemId": 578, + "auxValue": 9 } - ], + }, "output": [ { - "id": 218, - "damage": 3 + "legacyId": 307, + "id": "minecraft:arrow", + "damage": 10, + "count": 8 } ], - "priority": 0 + "shape": [ + "AAA", + "ABA", + "AAA" + ], + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_1", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_10", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_11", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_12", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_13", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_14", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_15", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_2", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_3", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_4", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_5", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_6", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_7", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_8", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_0_9", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 421, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_0", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_1", + "type": 0, "input": [ { - "id": 205 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_11", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_12", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_13", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_14", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_15", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_2", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_3", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_4", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_5", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_6", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_7", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_8", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_10_9", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 413, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -559, + "id": "minecraft:lime_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_0", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_1", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_10", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_12", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_13", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_14", + "type": 0, "input": [ { - "id": 218, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_15", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_2", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_3", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_4", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_5", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_6", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_7", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_8", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_11_9", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 414, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -558, + "id": "minecraft:yellow_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_0", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_1", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_10", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_11", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_13", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_14", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_15", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_2", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_3", + "type": 0, "input": [ { - "id": 218, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_4", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_5", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_6", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_7", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_8", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_12_9", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 415, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -562, + "id": "minecraft:light_blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_0", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_1", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_10", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_11", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_12", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_14", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_15", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_2", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_3", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_4", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_5", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_6", + "type": 0, "input": [ { - "id": 218, - "damage": 12 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_7", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_8", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_13_9", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 416, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -565, + "id": "minecraft:magenta_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_0", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_1", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_10", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_11", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_12", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_13", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_15", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_2", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_3", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_4", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_5", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_6", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_7", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_8", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_14_9", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 417, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -557, + "id": "minecraft:orange_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_0", + "type": 0, "input": [ { - "id": 218, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_1", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_10", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_11", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_12", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_13", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_14", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_2", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_3", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_4", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_5", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_6", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_7", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_8", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_15_9", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 419, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_1", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_10", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_11", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_12", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_13", + "type": 0, "input": [ { - "id": 218, - "damage": 14 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_14", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_15", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_2", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_3", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_4", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_5", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_6", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_7", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_8", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_16_9", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 403, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -554, + "id": "minecraft:black_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_0", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_1", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_10", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_11", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_12", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_13", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_14", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_15", + "type": 0, "input": [ { - "id": 218, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_2", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_4", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_5", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_6", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_7", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_8", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_17_9", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 406, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_0", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_1", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_10", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_11", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_12", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_13", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_14", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_15", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_2", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_3", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_5", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_6", + "type": 0, "input": [ { - "id": 218, - "damage": 1 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_7", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_8", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_18_9", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 407, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_0", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_1", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_10", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_11", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_12", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_13", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_14", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_2", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_3", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_4", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_5", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_6", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_7", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_8", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_19_9", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 418, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": 35, + "id": "minecraft:white_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_0", + "type": 0, "input": [ { - "id": 218, - "damage": 2 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_10", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_11", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_12", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_13", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_14", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_15", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_2", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_3", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_4", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_5", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_6", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_7", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_8", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_1_9", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 404, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -556, + "id": "minecraft:red_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_0", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_1", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_10", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_11", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_12", + "type": 0, "input": [ { - "id": 218, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_13", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_14", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_15", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_3", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_4", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_5", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_6", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_7", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_8", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_2_9", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 405, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -560, + "id": "minecraft:green_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_0", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_1", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_10", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_11", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_12", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_13", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_14", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_15", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_2", + "type": 0, "input": [ { - "id": 218, - "damage": 4 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_4", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_5", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_6", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_7", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_8", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_3_9", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 420, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -555, + "id": "minecraft:brown_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_0", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_1", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_10", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_11", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_12", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_13", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_14", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_15", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_2", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_3", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_5", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_6", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_7", + "type": 0, "input": [ { - "id": 218, - "damage": 5 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_8", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_4_9", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 422, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -563, + "id": "minecraft:blue_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_0", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_1", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_10", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_11", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_12", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_13", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_14", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_15", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_2", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_3", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_4", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_6", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_7", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_8", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_5_9", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 408, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -564, + "id": "minecraft:purple_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_0", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_1", + "type": 0, "input": [ { - "id": 218, - "damage": 6 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_10", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_11", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_12", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_13", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_14", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_15", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_2", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_3", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_4", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_5", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_7", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_8", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_6_9", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 409, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -561, + "id": "minecraft:cyan_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_0", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_1", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_10", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_11", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_12", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_13", + "type": 0, "input": [ { - "id": 218, - "damage": 7 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_14", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_15", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_2", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_3", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_4", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_5", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_6", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_8", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_7_9", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 410, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -552, + "id": "minecraft:light_gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_0", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_1", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_10", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_11", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_12", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_13", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_14", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 6 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 9 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_15", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_2", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_3", + "type": 0, "input": [ { - "id": 218, - "damage": 8 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_4", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_5", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 11 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 4 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_6", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 12 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 3 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_7", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 13 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 2 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_8_9", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 411, + "auxValue": 32767 }, { - "id": 351, - "damage": 14 + "type": "default", + "count": 1, + "itemId": -566, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 1 + "legacyId": -553, + "id": "minecraft:gray_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_0", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 15 + "type": "default", + "count": 1, + "itemId": -554, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_1", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 16 + "type": "default", + "count": 1, + "itemId": -556, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_10", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 17 + "type": "default", + "count": 1, + "itemId": -559, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_11", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 18 + "type": "default", + "count": 1, + "itemId": -558, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_12", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 19 + "type": "default", + "count": 1, + "itemId": -562, + "auxValue": 0 } ], "output": [ { - "id": 218 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_13", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 1 + "type": "default", + "count": 1, + "itemId": -565, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 14 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_14", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 2 + "type": "default", + "count": 1, + "itemId": -557, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 13 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_15", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 3 + "type": "default", + "count": 1, + "itemId": 35, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 12 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_2", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 4 + "type": "default", + "count": 1, + "itemId": -560, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 11 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_3", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 5 + "type": "default", + "count": 1, + "itemId": -555, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 10 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_4", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 7 + "type": "default", + "count": 1, + "itemId": -563, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 8 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_5", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 8 + "type": "default", + "count": 1, + "itemId": -564, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 7 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_6", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 9 + "type": "default", + "count": 1, + "itemId": -561, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 6 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_7", + "type": 0, "input": [ { - "id": 218, - "damage": 9 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351 + "type": "default", + "count": 1, + "itemId": -552, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 15 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 }, { - "block": "crafting_table", + "id": "wool_dye_wool_9_8", + "type": 0, "input": [ { - "id": 218 + "type": "default", + "count": 1, + "itemId": 412, + "auxValue": 32767 }, { - "id": 351, - "damage": 10 + "type": "default", + "count": 1, + "itemId": -553, + "auxValue": 0 } ], "output": [ { - "id": 218, - "damage": 5 + "legacyId": -566, + "id": "minecraft:pink_wool" } ], - "priority": 0 + "block": "crafting_table", + "priority": 50 + }, + { + "type": 3, + "input": { + "legacyId": -824, + "id": "minecraft:stripped_dark_oak_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -824, + "id": "minecraft:stripped_dark_oak_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -823, + "id": "minecraft:stripped_acacia_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -823, + "id": "minecraft:stripped_acacia_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -822, + "id": "minecraft:stripped_jungle_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -822, + "id": "minecraft:stripped_jungle_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -821, + "id": "minecraft:stripped_birch_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -821, + "id": "minecraft:stripped_birch_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -820, + "id": "minecraft:stripped_spruce_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -820, + "id": "minecraft:stripped_spruce_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -819, + "id": "minecraft:stripped_oak_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -819, + "id": "minecraft:stripped_oak_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -818, + "id": "minecraft:dark_oak_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -818, + "id": "minecraft:dark_oak_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -817, + "id": "minecraft:acacia_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -817, + "id": "minecraft:acacia_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -816, + "id": "minecraft:jungle_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -816, + "id": "minecraft:jungle_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -815, + "id": "minecraft:birch_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -815, + "id": "minecraft:birch_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -814, + "id": "minecraft:spruce_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -814, + "id": "minecraft:spruce_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -738, + "id": "minecraft:black_terracotta" + }, + "output": { + "legacyId": 235, + "id": "minecraft:black_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -737, + "id": "minecraft:red_terracotta" + }, + "output": { + "legacyId": 234, + "id": "minecraft:red_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -736, + "id": "minecraft:green_terracotta" + }, + "output": { + "legacyId": 233, + "id": "minecraft:green_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -735, + "id": "minecraft:brown_terracotta" + }, + "output": { + "legacyId": 232, + "id": "minecraft:brown_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -734, + "id": "minecraft:blue_terracotta" + }, + "output": { + "legacyId": 231, + "id": "minecraft:blue_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -733, + "id": "minecraft:purple_terracotta" + }, + "output": { + "legacyId": 219, + "id": "minecraft:purple_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -732, + "id": "minecraft:cyan_terracotta" + }, + "output": { + "legacyId": 229, + "id": "minecraft:cyan_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -731, + "id": "minecraft:light_gray_terracotta" + }, + "output": { + "legacyId": 228, + "id": "minecraft:silver_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -730, + "id": "minecraft:gray_terracotta" + }, + "output": { + "legacyId": 227, + "id": "minecraft:gray_glazed_terracotta" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -729, + "id": "minecraft:pink_terracotta" + }, + "output": { + "legacyId": 226, + "id": "minecraft:pink_glazed_terracotta" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -728, + "id": "minecraft:lime_terracotta" + }, + "output": { + "legacyId": 225, + "id": "minecraft:lime_glazed_terracotta" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -727, + "id": "minecraft:yellow_terracotta" + }, + "output": { + "legacyId": 224, + "id": "minecraft:yellow_glazed_terracotta" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -726, + "id": "minecraft:light_blue_terracotta" + }, + "output": { + "legacyId": 223, + "id": "minecraft:light_blue_glazed_terracotta" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -725, + "id": "minecraft:magenta_terracotta" + }, + "output": { + "legacyId": 222, + "id": "minecraft:magenta_glazed_terracotta" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -724, + "id": "minecraft:orange_terracotta" + }, + "output": { + "legacyId": 221, + "id": "minecraft:orange_glazed_terracotta" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -572, + "id": "minecraft:dark_oak_log" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -572, + "id": "minecraft:dark_oak_log", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -571, + "id": "minecraft:jungle_log" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -571, + "id": "minecraft:jungle_log", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -570, + "id": "minecraft:birch_log" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -570, + "id": "minecraft:birch_log", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -569, + "id": "minecraft:spruce_log" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -569, + "id": "minecraft:spruce_log", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -546, + "id": "minecraft:cherry_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "priority": 0 + "type": 3, + "input": { + "legacyId": -545, + "id": "minecraft:stripped_cherry_wood", + "damage": -1 + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "crafting_table", - "input": [ - { - "id": 218 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "priority": 0 - } - ], - "smelting": [ - { - "block": "blast_furnace", + "type": 3, "input": { - "id": -271, + "legacyId": -536, + "id": "minecraft:cherry_log", "damage": -1 }, "output": { - "id": 752 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": -288, + "legacyId": -535, + "id": "minecraft:stripped_cherry_log", "damage": -1 }, "output": { - "id": 266 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 129, + "legacyId": -498, + "id": "minecraft:stripped_mangrove_wood", "damage": -1 }, "output": { - "id": 388 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 14, + "legacyId": -497, + "id": "minecraft:mangrove_wood", "damage": -1 }, "output": { - "id": 266 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 15, + "legacyId": -485, + "id": "minecraft:stripped_mangrove_log", "damage": -1 }, "output": { - "id": 265 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 153, + "legacyId": -484, + "id": "minecraft:mangrove_log", "damage": -1 }, "output": { - "id": 406 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 16, + "legacyId": -408, + "id": "minecraft:deepslate_copper_ore", "damage": -1 }, "output": { - "id": 263 - } + "legacyId": 520, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 21, + "legacyId": -408, + "id": "minecraft:deepslate_copper_ore", "damage": -1 }, "output": { - "id": 351, - "damage": 4 - } + "legacyId": 520, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 256, + "legacyId": -407, + "id": "minecraft:deepslate_emerald_ore", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 528, + "id": "minecraft:emerald", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 257, + "legacyId": -407, + "id": "minecraft:deepslate_emerald_ore", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 528, + "id": "minecraft:emerald", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 258, + "legacyId": -406, + "id": "minecraft:deepslate_coal_ore", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 308, + "id": "minecraft:coal" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 267, + "legacyId": -406, + "id": "minecraft:deepslate_coal_ore", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 308, + "id": "minecraft:coal" + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 283, + "legacyId": -405, + "id": "minecraft:deepslate_diamond_ore", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 310, + "id": "minecraft:diamond", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 284, + "legacyId": -405, + "id": "minecraft:deepslate_diamond_ore", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 310, + "id": "minecraft:diamond", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 285, + "legacyId": -403, + "id": "minecraft:deepslate_redstone_ore", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 380, + "id": "minecraft:redstone", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 286, + "legacyId": -403, + "id": "minecraft:deepslate_redstone_ore", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 380, + "id": "minecraft:redstone", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 292, + "legacyId": -402, + "id": "minecraft:deepslate_gold_ore", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 312, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 294, + "legacyId": -402, + "id": "minecraft:deepslate_gold_ore", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 312, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 302 + "legacyId": -401, + "id": "minecraft:deepslate_iron_ore", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 311, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 303 + "legacyId": -401, + "id": "minecraft:deepslate_iron_ore", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 311, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 304 + "legacyId": -400, + "id": "minecraft:deepslate_lapis_ore", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 422, + "id": "minecraft:lapis_lazuli" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 305 + "legacyId": -400, + "id": "minecraft:deepslate_lapis_ore", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 422, + "id": "minecraft:lapis_lazuli" + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 306 + "legacyId": -391, + "id": "minecraft:deepslate_bricks", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": -410, + "id": "minecraft:cracked_deepslate_bricks" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 307 + "legacyId": -387, + "id": "minecraft:deepslate_tiles", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": -409, + "id": "minecraft:cracked_deepslate_tiles" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 308 + "legacyId": -379, + "id": "minecraft:cobbled_deepslate", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": -378, + "id": "minecraft:deepslate" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 309 + "legacyId": -311, + "id": "minecraft:copper_ore", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 520, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 314 + "legacyId": -311, + "id": "minecraft:copper_ore", + "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 520, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 315 + "legacyId": -288, + "id": "minecraft:nether_gold_ore", + "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 312, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 316 + "legacyId": -288, + "id": "minecraft:nether_gold_ore", + "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 312, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 317 + "legacyId": -274, + "id": "minecraft:polished_blackstone_bricks", + "damage": -1 }, "output": { - "id": 371 - } + "legacyId": -280, + "id": "minecraft:cracked_polished_blackstone_bricks" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 417, + "legacyId": -271, + "id": "minecraft:ancient_debris", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 632, + "id": "minecraft:netherite_scrap", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 418, + "legacyId": -271, + "id": "minecraft:ancient_debris", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 632, + "id": "minecraft:netherite_scrap", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 56, + "legacyId": -234, + "id": "minecraft:basalt", "damage": -1 }, "output": { - "id": 264 - } + "legacyId": -377, + "id": "minecraft:smooth_basalt" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": -212, + "id": "minecraft:oak_wood" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "blast_furnace", + "type": 3, "input": { - "id": 73, + "legacyId": -212, + "id": "minecraft:oak_wood", "damage": -1 }, "output": { - "id": 331 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 319, + "legacyId": -156, + "id": "minecraft:sea_pickle", "damage": -1 }, "output": { - "id": 320 - } + "legacyId": 413, + "id": "minecraft:lime_dye" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 335, + "legacyId": -10, + "id": "minecraft:stripped_oak_log", "damage": -1 }, "output": { - "id": 464 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 349, + "legacyId": -9, + "id": "minecraft:stripped_dark_oak_log", "damage": -1 }, "output": { - "id": 350 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 363, + "legacyId": -8, + "id": "minecraft:stripped_acacia_log", "damage": -1 }, "output": { - "id": 364 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 365, + "legacyId": -7, + "id": "minecraft:stripped_jungle_log", "damage": -1 }, "output": { - "id": 366 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 392, + "legacyId": -6, + "id": "minecraft:stripped_birch_log", "damage": -1 }, "output": { - "id": 393 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 411, + "legacyId": -5, + "id": "minecraft:stripped_spruce_log", "damage": -1 }, "output": { - "id": 412 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 1, + "id": "minecraft:stone" + }, + "output": { + "legacyId": -183, + "id": "minecraft:smooth_stone" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 423, + "legacyId": 4, + "id": "minecraft:cobblestone", "damage": -1 }, "output": { - "id": 424 - } + "legacyId": 1, + "id": "minecraft:stone" + }, + "block": "furnace" }, { - "block": "campfire", + "type": 3, "input": { - "id": 460, + "legacyId": 12, + "id": "minecraft:sand", "damage": -1 }, "output": { - "id": 463 - } + "legacyId": 20, + "id": "minecraft:glass" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -10, + "legacyId": 14, + "id": "minecraft:gold_ore", "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 312, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -156, + "legacyId": 14, + "id": "minecraft:gold_ore", "damage": -1 }, "output": { - "id": 351, - "damage": 10 - } + "legacyId": 312, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 10 + "legacyId": 15, + "id": "minecraft:iron_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 311, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 11 + "legacyId": 15, + "id": "minecraft:iron_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 311, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 12 + "legacyId": 16, + "id": "minecraft:coal_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 308, + "id": "minecraft:coal" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 13 + "legacyId": 16, + "id": "minecraft:coal_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 308, + "id": "minecraft:coal" + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 1 + "legacyId": 17, + "id": "minecraft:oak_log" }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 2 + "legacyId": 17, + "id": "minecraft:oak_log", + "damage": -1 }, "output": { - "id": 263, + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 19, + "id": "minecraft:sponge", "damage": 1 - } + }, + "output": { + "legacyId": 19, + "id": "minecraft:sponge" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 3 + "legacyId": 21, + "id": "minecraft:lapis_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 422, + "id": "minecraft:lapis_lazuli" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 4 + "legacyId": 21, + "id": "minecraft:lapis_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 422, + "id": "minecraft:lapis_lazuli" + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 5 + "legacyId": 24, + "id": "minecraft:sandstone", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 24, + "id": "minecraft:sandstone" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 8 + "legacyId": 56, + "id": "minecraft:diamond_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 310, + "id": "minecraft:diamond", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212, - "damage": 9 + "legacyId": 56, + "id": "minecraft:diamond_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 310, + "id": "minecraft:diamond", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -212 + "legacyId": 73, + "id": "minecraft:redstone_ore", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 380, + "id": "minecraft:redstone", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -271, + "legacyId": 73, + "id": "minecraft:redstone_ore", "damage": -1 }, "output": { - "id": 752 - } + "legacyId": 380, + "id": "minecraft:redstone", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -274, + "legacyId": 81, + "id": "minecraft:cactus", "damage": -1 }, "output": { - "id": -280 - } + "legacyId": 405, + "id": "minecraft:green_dye" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -288, + "legacyId": 82, + "id": "minecraft:clay", "damage": -1 }, "output": { - "id": 266 - } + "legacyId": 172, + "id": "minecraft:hardened_clay" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -5, + "legacyId": 87, + "id": "minecraft:netherrack", "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 539, + "id": "minecraft:netherbrick", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -6, + "legacyId": 98, + "id": "minecraft:stonebrick" + }, + "output": { + "legacyId": 98, + "id": "minecraft:stonebrick" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 112, + "id": "minecraft:nether_brick", "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": -303, + "id": "minecraft:cracked_nether_bricks" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -7, + "legacyId": 129, + "id": "minecraft:emerald_ore", "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 528, + "id": "minecraft:emerald", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -8, + "legacyId": 129, + "id": "minecraft:emerald_ore", "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 528, + "id": "minecraft:emerald", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": -9, + "legacyId": 153, + "id": "minecraft:quartz_ore", "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 540, + "id": "minecraft:quartz", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 112, + "legacyId": 153, + "id": "minecraft:quartz_ore", "damage": -1 }, "output": { - "id": -303 - } + "legacyId": 540, + "id": "minecraft:quartz", + "damage": 32767 + }, + "block": "blast_furnace" + }, + { + "type": 3, + "input": { + "legacyId": 155, + "id": "minecraft:quartz_block" + }, + "output": { + "legacyId": 155, + "id": "minecraft:quartz_block" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 159, + "id": "minecraft:white_terracotta" + }, + "output": { + "legacyId": 220, + "id": "minecraft:white_glazed_terracotta" + }, + "block": "furnace" + }, + { + "type": 3, + "input": { + "legacyId": 162, + "id": "minecraft:acacia_log" + }, + "output": { + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 12, + "legacyId": 162, + "id": "minecraft:acacia_log", "damage": -1 }, "output": { - "id": 20 - } + "legacyId": 309, + "id": "minecraft:charcoal" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 129, + "legacyId": 179, + "id": "minecraft:red_sandstone", "damage": -1 }, "output": { - "id": 388 - } + "legacyId": 179, + "id": "minecraft:red_sandstone" + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 14, + "legacyId": 266, + "id": "minecraft:porkchop", "damage": -1 }, "output": { - "id": 266 - } + "legacyId": 267, + "id": "minecraft:cooked_porkchop", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "furnace", + "type": 3, "input": { - "id": 15, + "legacyId": 266, + "id": "minecraft:porkchop", "damage": -1 }, "output": { - "id": 265 - } + "legacyId": 267, + "id": "minecraft:cooked_porkchop", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 153, + "legacyId": 266, + "id": "minecraft:porkchop", "damage": -1 }, "output": { - "id": 406 - } + "legacyId": 267, + "id": "minecraft:cooked_porkchop", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 155 + "legacyId": 266, + "id": "minecraft:porkchop", + "damage": -1 }, "output": { - "id": 155, - "damage": 3 - } + "legacyId": 267, + "id": "minecraft:cooked_porkchop", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 10 + "legacyId": 268, + "id": "minecraft:cod", + "damage": -1 }, "output": { - "id": 219 - } + "legacyId": 272, + "id": "minecraft:cooked_cod", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 11 + "legacyId": 268, + "id": "minecraft:cod", + "damage": -1 }, "output": { - "id": 231 - } + "legacyId": 272, + "id": "minecraft:cooked_cod", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 12 + "legacyId": 268, + "id": "minecraft:cod", + "damage": -1 }, "output": { - "id": 232 - } + "legacyId": 272, + "id": "minecraft:cooked_cod", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 13 + "legacyId": 268, + "id": "minecraft:cod", + "damage": -1 }, "output": { - "id": 233 - } + "legacyId": 272, + "id": "minecraft:cooked_cod", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 14 + "legacyId": 269, + "id": "minecraft:salmon", + "damage": -1 }, "output": { - "id": 234 - } + "legacyId": 273, + "id": "minecraft:cooked_salmon", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 15 + "legacyId": 269, + "id": "minecraft:salmon", + "damage": -1 }, "output": { - "id": 235 - } + "legacyId": 273, + "id": "minecraft:cooked_salmon", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 1 + "legacyId": 269, + "id": "minecraft:salmon", + "damage": -1 }, "output": { - "id": 221 - } + "legacyId": 273, + "id": "minecraft:cooked_salmon", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 2 + "legacyId": 269, + "id": "minecraft:salmon", + "damage": -1 }, "output": { - "id": 222 - } + "legacyId": 273, + "id": "minecraft:cooked_salmon", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 3 + "legacyId": 277, + "id": "minecraft:beef", + "damage": -1 }, "output": { - "id": 223 - } + "legacyId": 278, + "id": "minecraft:cooked_beef", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 4 + "legacyId": 277, + "id": "minecraft:beef", + "damage": -1 }, "output": { - "id": 224 - } + "legacyId": 278, + "id": "minecraft:cooked_beef", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 5 + "legacyId": 277, + "id": "minecraft:beef", + "damage": -1 }, "output": { - "id": 225 - } + "legacyId": 278, + "id": "minecraft:cooked_beef", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 6 + "legacyId": 277, + "id": "minecraft:beef", + "damage": -1 }, "output": { - "id": 226 - } + "legacyId": 278, + "id": "minecraft:cooked_beef", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 7 + "legacyId": 279, + "id": "minecraft:chicken", + "damage": -1 }, "output": { - "id": 227 - } + "legacyId": 280, + "id": "minecraft:cooked_chicken", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 8 + "legacyId": 279, + "id": "minecraft:chicken", + "damage": -1 }, "output": { - "id": 228 - } + "legacyId": 280, + "id": "minecraft:cooked_chicken", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159, - "damage": 9 + "legacyId": 279, + "id": "minecraft:chicken", + "damage": -1 }, "output": { - "id": 229 - } + "legacyId": 280, + "id": "minecraft:cooked_chicken", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 159 + "legacyId": 279, + "id": "minecraft:chicken", + "damage": -1 }, "output": { - "id": 220 - } + "legacyId": 280, + "id": "minecraft:cooked_chicken", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 16, + "legacyId": 284, + "id": "minecraft:potato", "damage": -1 }, "output": { - "id": 263 - } + "legacyId": 285, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "furnace", + "type": 3, "input": { - "id": 162, - "damage": 1 + "legacyId": 284, + "id": "minecraft:potato", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 285, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 162 + "legacyId": 284, + "id": "minecraft:potato", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 285, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 17, - "damage": 1 + "legacyId": 284, + "id": "minecraft:potato", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 285, + "id": "minecraft:baked_potato", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 17, - "damage": 2 + "legacyId": 292, + "id": "minecraft:rabbit", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 293, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "furnace", + "type": 3, "input": { - "id": 17, - "damage": 3 + "legacyId": 292, + "id": "minecraft:rabbit", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 293, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 179, + "legacyId": 292, + "id": "minecraft:rabbit", "damage": -1 }, "output": { - "id": 179, - "damage": 3 - } + "legacyId": 293, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 17 + "legacyId": 292, + "id": "minecraft:rabbit", + "damage": -1 }, "output": { - "id": 263, - "damage": 1 - } + "legacyId": 293, + "id": "minecraft:cooked_rabbit", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "furnace", + "type": 3, "input": { - "id": 19, - "damage": 1 + "legacyId": 302, + "id": "minecraft:iron_shovel", + "damage": -1 }, "output": { - "id": 19 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 1 + "legacyId": 302, + "id": "minecraft:iron_shovel", + "damage": -1 }, "output": { - "id": -183 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 21, + "legacyId": 303, + "id": "minecraft:iron_pickaxe", "damage": -1 }, "output": { - "id": 351, - "damage": 4 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 24, + "legacyId": 303, + "id": "minecraft:iron_pickaxe", "damage": -1 }, "output": { - "id": 24, - "damage": 3 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 256, + "legacyId": 304, + "id": "minecraft:iron_axe", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 257, + "legacyId": 304, + "id": "minecraft:iron_axe", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 258, + "legacyId": 313, + "id": "minecraft:iron_sword", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 267, + "legacyId": 313, + "id": "minecraft:iron_sword", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 283, + "legacyId": 329, + "id": "minecraft:golden_sword", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 284, + "legacyId": 329, + "id": "minecraft:golden_sword", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 285, + "legacyId": 330, + "id": "minecraft:golden_shovel", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 286, + "legacyId": 330, + "id": "minecraft:golden_shovel", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 292, + "legacyId": 331, + "id": "minecraft:golden_pickaxe", "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 294, + "legacyId": 331, + "id": "minecraft:golden_pickaxe", "damage": -1 }, "output": { - "id": 371 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 302 + "legacyId": 332, + "id": "minecraft:golden_axe", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 303 + "legacyId": 332, + "id": "minecraft:golden_axe", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 304 + "legacyId": 338, + "id": "minecraft:iron_hoe", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 305 + "legacyId": 338, + "id": "minecraft:iron_hoe", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 306 + "legacyId": 340, + "id": "minecraft:golden_hoe", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 307 + "legacyId": 340, + "id": "minecraft:golden_hoe", + "damage": -1 }, "output": { - "id": 452 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 308 + "legacyId": 346, + "id": "minecraft:chainmail_helmet" }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 309 + "legacyId": 346, + "id": "minecraft:chainmail_helmet" }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 314 + "legacyId": 347, + "id": "minecraft:chainmail_chestplate" }, "output": { - "id": 371 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 315 + "legacyId": 347, + "id": "minecraft:chainmail_chestplate" }, "output": { - "id": 371 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 316 + "legacyId": 348, + "id": "minecraft:chainmail_leggings" }, "output": { - "id": 371 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 317 + "legacyId": 348, + "id": "minecraft:chainmail_leggings" }, "output": { - "id": 371 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 319, - "damage": -1 + "legacyId": 349, + "id": "minecraft:chainmail_boots" }, "output": { - "id": 320 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 335, - "damage": -1 + "legacyId": 349, + "id": "minecraft:chainmail_boots" }, "output": { - "id": 464 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 337, - "damage": -1 + "legacyId": 350, + "id": "minecraft:iron_helmet" }, "output": { - "id": 336 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 349, - "damage": -1 + "legacyId": 350, + "id": "minecraft:iron_helmet" }, "output": { - "id": 350 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 363, - "damage": -1 + "legacyId": 351, + "id": "minecraft:iron_chestplate" }, "output": { - "id": 364 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 365, - "damage": -1 + "legacyId": 351, + "id": "minecraft:iron_chestplate" }, "output": { - "id": 366 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 392, - "damage": -1 + "legacyId": 352, + "id": "minecraft:iron_leggings" }, "output": { - "id": 393 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 4, - "damage": -1 + "legacyId": 352, + "id": "minecraft:iron_leggings" }, "output": { - "id": 1 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 411, - "damage": -1 + "legacyId": 353, + "id": "minecraft:iron_boots" }, "output": { - "id": 412 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 417, - "damage": -1 + "legacyId": 353, + "id": "minecraft:iron_boots" }, "output": { - "id": 452 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 418, - "damage": -1 + "legacyId": 358, + "id": "minecraft:golden_helmet" }, "output": { - "id": 371 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 423, - "damage": -1 + "legacyId": 358, + "id": "minecraft:golden_helmet" }, "output": { - "id": 424 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 432, - "damage": -1 + "legacyId": 359, + "id": "minecraft:golden_chestplate" }, "output": { - "id": 433 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 460, - "damage": -1 + "legacyId": 359, + "id": "minecraft:golden_chestplate" }, "output": { - "id": 463 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 56, - "damage": -1 + "legacyId": 360, + "id": "minecraft:golden_leggings" }, "output": { - "id": 264 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 73, - "damage": -1 + "legacyId": 360, + "id": "minecraft:golden_leggings" }, "output": { - "id": 331 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 81, - "damage": -1 + "legacyId": 361, + "id": "minecraft:golden_boots" }, "output": { - "id": 351, - "damage": 2 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 82, - "damage": -1 + "legacyId": 361, + "id": "minecraft:golden_boots" }, "output": { - "id": 172 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "furnace", + "type": 3, "input": { - "id": 87, + "legacyId": 390, + "id": "minecraft:kelp", "damage": -1 }, "output": { - "id": 405 - } + "legacyId": 274, + "id": "minecraft:dried_kelp", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "furnace", + "type": 3, "input": { - "id": 98 + "legacyId": 390, + "id": "minecraft:kelp", + "damage": -1 }, "output": { - "id": 98, - "damage": 2 - } + "legacyId": 274, + "id": "minecraft:dried_kelp", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "smoker", + "type": 3, "input": { - "id": 319, + "legacyId": 390, + "id": "minecraft:kelp", "damage": -1 }, "output": { - "id": 320 - } + "legacyId": 274, + "id": "minecraft:dried_kelp", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "smoker", + "type": 3, "input": { - "id": 335, + "legacyId": 390, + "id": "minecraft:kelp", "damage": -1 }, "output": { - "id": 464 - } + "legacyId": 274, + "id": "minecraft:dried_kelp", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "smoker", + "type": 3, "input": { - "id": 349, + "legacyId": 392, + "id": "minecraft:clay_ball", "damage": -1 }, "output": { - "id": 350 - } + "legacyId": 391, + "id": "minecraft:brick", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "smoker", + "type": 3, "input": { - "id": 363, + "legacyId": 521, + "id": "minecraft:raw_iron", "damage": -1 }, "output": { - "id": 364 - } + "legacyId": 311, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "smoker", + "type": 3, "input": { - "id": 365, + "legacyId": 521, + "id": "minecraft:raw_iron", "damage": -1 }, "output": { - "id": 366 - } + "legacyId": 311, + "id": "minecraft:iron_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "smoker", + "type": 3, "input": { - "id": 392, + "legacyId": 522, + "id": "minecraft:raw_gold", "damage": -1 }, "output": { - "id": 393 - } + "legacyId": 312, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "smoker", + "type": 3, "input": { - "id": 411, + "legacyId": 522, + "id": "minecraft:raw_gold", "damage": -1 }, "output": { - "id": 412 - } + "legacyId": 312, + "id": "minecraft:gold_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "smoker", + "type": 3, "input": { - "id": 423, + "legacyId": 523, + "id": "minecraft:raw_copper", "damage": -1 }, "output": { - "id": 424 - } + "legacyId": 520, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "smoker", + "type": 3, "input": { - "id": 460, + "legacyId": 523, + "id": "minecraft:raw_copper", "damage": -1 }, "output": { - "id": 463 - } + "legacyId": 520, + "id": "minecraft:copper_ingot", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 319, + "legacyId": 547, + "id": "minecraft:iron_horse_armor", "damage": -1 }, "output": { - "id": 320 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 335, + "legacyId": 547, + "id": "minecraft:iron_horse_armor", "damage": -1 }, "output": { - "id": 464 - } + "legacyId": 585, + "id": "minecraft:iron_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 349, + "legacyId": 548, + "id": "minecraft:golden_horse_armor", "damage": -1 }, "output": { - "id": 350 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 363, + "legacyId": 548, + "id": "minecraft:golden_horse_armor", "damage": -1 }, "output": { - "id": 364 - } + "legacyId": 434, + "id": "minecraft:gold_nugget", + "damage": 32767 + }, + "block": "blast_furnace" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 365, + "legacyId": 566, + "id": "minecraft:mutton", "damage": -1 }, "output": { - "id": 366 - } + "legacyId": 567, + "id": "minecraft:cooked_mutton", + "damage": 32767 + }, + "block": "smoker" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 392, + "legacyId": 566, + "id": "minecraft:mutton", "damage": -1 }, "output": { - "id": 393 - } + "legacyId": 567, + "id": "minecraft:cooked_mutton", + "damage": 32767 + }, + "block": "furnace" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 411, + "legacyId": 566, + "id": "minecraft:mutton", "damage": -1 }, "output": { - "id": 412 - } + "legacyId": 567, + "id": "minecraft:cooked_mutton", + "damage": 32767 + }, + "block": "soul_campfire" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 423, + "legacyId": 566, + "id": "minecraft:mutton", "damage": -1 }, "output": { - "id": 424 - } + "legacyId": 567, + "id": "minecraft:cooked_mutton", + "damage": 32767 + }, + "block": "campfire" }, { - "block": "soul_campfire", + "type": 3, "input": { - "id": 460, + "legacyId": 574, + "id": "minecraft:chorus_fruit", "damage": -1 }, "output": { - "id": 463 - } + "legacyId": 575, + "id": "minecraft:popped_chorus_fruit", + "damage": 32767 + }, + "block": "furnace" + } + ], + "potionMixes": [ + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:breeze_rod", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 43 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:breeze_rod", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 43 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:breeze_rod", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 43 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:slime", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 45 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:slime", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 45 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:slime", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 45 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:stone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 46 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:stone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 46 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:stone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 46 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:web", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 44 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:web", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 44 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:web", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 44 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:breeze_rod", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:breeze_rod", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:breeze_rod", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:slime", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:slime", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:slime", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:stone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:stone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:stone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:web", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:web", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:web", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 31 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 28 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:golden_carrot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 5 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 12 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:phantom_membrane", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 40 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:pufferfish", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 19 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 9 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 21 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 25 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 14 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 4, + "reagentId": "minecraft:turtle_helmet", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 37 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 12, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 13 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 23, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 21, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 21, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 22 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 7, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 11 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 9, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 10 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 6, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 8 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 15, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 10, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 2, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 26, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 32, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 1, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 5, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 7 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 5, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 6 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 23 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 27 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 25, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 26 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 28, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 30 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 28, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 29 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 17, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 42 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 17, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 18 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 40, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 41 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 33 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 31, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 32 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 22, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 27, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 24 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 33, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 17 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 16 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 14, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 15 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 3, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 37, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 39 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 37, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 38 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:blaze_powder", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 19, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 20 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:fermented_spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 34 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:ghast_tear", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:glowstone_dust", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 3 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:magma_cream", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:nether_wart", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 4 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:rabbit_foot", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:glistering_melon_slice", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:spider_eye", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 0, + "reagentId": "minecraft:sugar", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 1 + }, + { + "inputId": "minecraft:potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:splash_potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:splash_potion", + "outputMeta": 35 + }, + { + "inputId": "minecraft:lingering_potion", + "inputMeta": 34, + "reagentId": "minecraft:redstone", + "reagentMeta": 0, + "outputId": "minecraft:lingering_potion", + "outputMeta": 35 } ], - "special_hardcoded": [ - "00000000-0000-0000-0000-000000000001", - "00000000-0000-0000-0000-000000000002", - "442d85ed-8272-4543-a6f1-418f90ded05d", - "602234e4-cac1-4353-8bb7-b1ebff70024b", - "85939755-ba10-4d9d-a4cc-efb7a8e943c4", - "8b36268c-1829-483c-a0f1-993b7156a8f2", - "98c84b38-1085-46bd-b1ce-dd38c159e6cc", - "aecd2294-4b94-434b-8667-4499bb2c9327", - "b5c5d105-75a2-4076-af2b-923ea2bf4bf0", - "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d", - "d392b075-4ba1-40ae-8789-af868d56f6ce", - "d81aaeaf-e172-4440-9225-868df030d27b" + "containerMixes": [ + { + "inputId": "minecraft:potion", + "reagentId": "minecraft:gunpowder", + "outputId": "minecraft:splash_potion" + }, + { + "inputId": "minecraft:splash_potion", + "reagentId": "minecraft:dragon_breath", + "outputId": "minecraft:lingering_potion" + } ] } \ No newline at end of file diff --git a/src/pocketmine/resources/vanilla/runtime_item_states.json b/src/pocketmine/resources/vanilla/runtime_item_states.json new file mode 100644 index 00000000..1430a543 --- /dev/null +++ b/src/pocketmine/resources/vanilla/runtime_item_states.json @@ -0,0 +1,6398 @@ +[ + { + "name": "minecraft:acacia_boat", + "id": 387 + }, + { + "name": "minecraft:acacia_button", + "id": -140 + }, + { + "name": "minecraft:acacia_chest_boat", + "id": 661 + }, + { + "name": "minecraft:acacia_door", + "id": 572 + }, + { + "name": "minecraft:acacia_double_slab", + "id": -812 + }, + { + "name": "minecraft:acacia_fence", + "id": -575 + }, + { + "name": "minecraft:acacia_fence_gate", + "id": 187 + }, + { + "name": "minecraft:acacia_hanging_sign", + "id": -504 + }, + { + "name": "minecraft:acacia_leaves", + "id": 161 + }, + { + "name": "minecraft:acacia_log", + "id": 162 + }, + { + "name": "minecraft:acacia_planks", + "id": -742 + }, + { + "name": "minecraft:acacia_pressure_plate", + "id": -150 + }, + { + "name": "minecraft:acacia_sapling", + "id": -828 + }, + { + "name": "minecraft:acacia_sign", + "id": 595 + }, + { + "name": "minecraft:acacia_slab", + "id": -807 + }, + { + "name": "minecraft:acacia_stairs", + "id": 163 + }, + { + "name": "minecraft:acacia_standing_sign", + "id": -190 + }, + { + "name": "minecraft:acacia_trapdoor", + "id": -145 + }, + { + "name": "minecraft:acacia_wall_sign", + "id": -191 + }, + { + "name": "minecraft:acacia_wood", + "id": -817 + }, + { + "name": "minecraft:activator_rail", + "id": 126 + }, + { + "name": "minecraft:agent_spawn_egg", + "id": 497 + }, + { + "name": "minecraft:air", + "id": -158 + }, + { + "name": "minecraft:allay_spawn_egg", + "id": 650 + }, + { + "name": "minecraft:allium", + "id": -831 + }, + { + "name": "minecraft:allow", + "id": 210 + }, + { + "name": "minecraft:amethyst_block", + "id": -327 + }, + { + "name": "minecraft:amethyst_cluster", + "id": -329 + }, + { + "name": "minecraft:amethyst_shard", + "id": 643 + }, + { + "name": "minecraft:ancient_debris", + "id": -271 + }, + { + "name": "minecraft:andesite", + "id": -594 + }, + { + "name": "minecraft:andesite_stairs", + "id": -171 + }, + { + "name": "minecraft:angler_pottery_sherd", + "id": 675 + }, + { + "name": "minecraft:anvil", + "id": 145 + }, + { + "name": "minecraft:apple", + "id": 257 + }, + { + "name": "minecraft:archer_pottery_sherd", + "id": 676 + }, + { + "name": "minecraft:armadillo_scute", + "id": 721 + }, + { + "name": "minecraft:armadillo_spawn_egg", + "id": 720 + }, + { + "name": "minecraft:armor_stand", + "id": 568 + }, + { + "name": "minecraft:arms_up_pottery_sherd", + "id": 677 + }, + { + "name": "minecraft:arrow", + "id": 307 + }, + { + "name": "minecraft:axolotl_bucket", + "id": 376 + }, + { + "name": "minecraft:axolotl_spawn_egg", + "id": 512 + }, + { + "name": "minecraft:azalea", + "id": -337 + }, + { + "name": "minecraft:azalea_leaves", + "id": -324 + }, + { + "name": "minecraft:azalea_leaves_flowered", + "id": -325 + }, + { + "name": "minecraft:azure_bluet", + "id": -832 + }, + { + "name": "minecraft:baked_potato", + "id": 285 + }, + { + "name": "minecraft:balloon", + "id": 617 + }, + { + "name": "minecraft:bamboo", + "id": -163 + }, + { + "name": "minecraft:bamboo_block", + "id": -527 + }, + { + "name": "minecraft:bamboo_button", + "id": -511 + }, + { + "name": "minecraft:bamboo_chest_raft", + "id": 673 + }, + { + "name": "minecraft:bamboo_door", + "id": -517 + }, + { + "name": "minecraft:bamboo_double_slab", + "id": -521 + }, + { + "name": "minecraft:bamboo_fence", + "id": -515 + }, + { + "name": "minecraft:bamboo_fence_gate", + "id": -516 + }, + { + "name": "minecraft:bamboo_hanging_sign", + "id": -522 + }, + { + "name": "minecraft:bamboo_mosaic", + "id": -509 + }, + { + "name": "minecraft:bamboo_mosaic_double_slab", + "id": -525 + }, + { + "name": "minecraft:bamboo_mosaic_slab", + "id": -524 + }, + { + "name": "minecraft:bamboo_mosaic_stairs", + "id": -523 + }, + { + "name": "minecraft:bamboo_planks", + "id": -510 + }, + { + "name": "minecraft:bamboo_pressure_plate", + "id": -514 + }, + { + "name": "minecraft:bamboo_raft", + "id": 672 + }, + { + "name": "minecraft:bamboo_sapling", + "id": -164 + }, + { + "name": "minecraft:bamboo_sign", + "id": 671 + }, + { + "name": "minecraft:bamboo_slab", + "id": -513 + }, + { + "name": "minecraft:bamboo_stairs", + "id": -512 + }, + { + "name": "minecraft:bamboo_standing_sign", + "id": -518 + }, + { + "name": "minecraft:bamboo_trapdoor", + "id": -520 + }, + { + "name": "minecraft:bamboo_wall_sign", + "id": -519 + }, + { + "name": "minecraft:banner", + "id": 583 + }, + { + "name": "minecraft:banner_pattern", + "id": 756 + }, + { + "name": "minecraft:barrel", + "id": -203 + }, + { + "name": "minecraft:barrier", + "id": -161 + }, + { + "name": "minecraft:basalt", + "id": -234 + }, + { + "name": "minecraft:bat_spawn_egg", + "id": 462 + }, + { + "name": "minecraft:beacon", + "id": 138 + }, + { + "name": "minecraft:bed", + "id": 426 + }, + { + "name": "minecraft:bedrock", + "id": 7 + }, + { + "name": "minecraft:bee_nest", + "id": -218 + }, + { + "name": "minecraft:bee_spawn_egg", + "id": 504 + }, + { + "name": "minecraft:beef", + "id": 277 + }, + { + "name": "minecraft:beehive", + "id": -219 + }, + { + "name": "minecraft:beetroot", + "id": 289 + }, + { + "name": "minecraft:beetroot_seeds", + "id": 299 + }, + { + "name": "minecraft:beetroot_soup", + "id": 290 + }, + { + "name": "minecraft:bell", + "id": -206 + }, + { + "name": "minecraft:big_dripleaf", + "id": -323 + }, + { + "name": "minecraft:birch_boat", + "id": 384 + }, + { + "name": "minecraft:birch_button", + "id": -141 + }, + { + "name": "minecraft:birch_chest_boat", + "id": 658 + }, + { + "name": "minecraft:birch_door", + "id": 570 + }, + { + "name": "minecraft:birch_double_slab", + "id": -810 + }, + { + "name": "minecraft:birch_fence", + "id": -576 + }, + { + "name": "minecraft:birch_fence_gate", + "id": 184 + }, + { + "name": "minecraft:birch_hanging_sign", + "id": -502 + }, + { + "name": "minecraft:birch_leaves", + "id": -801 + }, + { + "name": "minecraft:birch_log", + "id": -570 + }, + { + "name": "minecraft:birch_planks", + "id": -740 + }, + { + "name": "minecraft:birch_pressure_plate", + "id": -151 + }, + { + "name": "minecraft:birch_sapling", + "id": -826 + }, + { + "name": "minecraft:birch_sign", + "id": 593 + }, + { + "name": "minecraft:birch_slab", + "id": -805 + }, + { + "name": "minecraft:birch_stairs", + "id": 135 + }, + { + "name": "minecraft:birch_standing_sign", + "id": -186 + }, + { + "name": "minecraft:birch_trapdoor", + "id": -146 + }, + { + "name": "minecraft:birch_wall_sign", + "id": -187 + }, + { + "name": "minecraft:birch_wood", + "id": -815 + }, + { + "name": "minecraft:black_candle", + "id": -428 + }, + { + "name": "minecraft:black_candle_cake", + "id": -445 + }, + { + "name": "minecraft:black_carpet", + "id": -611 + }, + { + "name": "minecraft:black_concrete", + "id": -642 + }, + { + "name": "minecraft:black_concrete_powder", + "id": -723 + }, + { + "name": "minecraft:black_dye", + "id": 403 + }, + { + "name": "minecraft:black_glazed_terracotta", + "id": 235 + }, + { + "name": "minecraft:black_shulker_box", + "id": -627 + }, + { + "name": "minecraft:black_stained_glass", + "id": -687 + }, + { + "name": "minecraft:black_stained_glass_pane", + "id": -657 + }, + { + "name": "minecraft:black_terracotta", + "id": -738 + }, + { + "name": "minecraft:black_wool", + "id": -554 + }, + { + "name": "minecraft:blackstone", + "id": -273 + }, + { + "name": "minecraft:blackstone_double_slab", + "id": -283 + }, + { + "name": "minecraft:blackstone_slab", + "id": -282 + }, + { + "name": "minecraft:blackstone_stairs", + "id": -276 + }, + { + "name": "minecraft:blackstone_wall", + "id": -277 + }, + { + "name": "minecraft:blade_pottery_sherd", + "id": 678 + }, + { + "name": "minecraft:blast_furnace", + "id": -196 + }, + { + "name": "minecraft:blaze_powder", + "id": 438 + }, + { + "name": "minecraft:blaze_rod", + "id": 431 + }, + { + "name": "minecraft:blaze_spawn_egg", + "id": 465 + }, + { + "name": "minecraft:bleach", + "id": 615 + }, + { + "name": "minecraft:blue_candle", + "id": -424 + }, + { + "name": "minecraft:blue_candle_cake", + "id": -441 + }, + { + "name": "minecraft:blue_carpet", + "id": -607 + }, + { + "name": "minecraft:blue_concrete", + "id": -638 + }, + { + "name": "minecraft:blue_concrete_powder", + "id": -719 + }, + { + "name": "minecraft:blue_dye", + "id": 407 + }, + { + "name": "minecraft:blue_glazed_terracotta", + "id": 231 + }, + { + "name": "minecraft:blue_ice", + "id": -11 + }, + { + "name": "minecraft:blue_orchid", + "id": -830 + }, + { + "name": "minecraft:blue_shulker_box", + "id": -623 + }, + { + "name": "minecraft:blue_stained_glass", + "id": -683 + }, + { + "name": "minecraft:blue_stained_glass_pane", + "id": -653 + }, + { + "name": "minecraft:blue_terracotta", + "id": -734 + }, + { + "name": "minecraft:blue_wool", + "id": -563 + }, + { + "name": "minecraft:boat", + "id": 754 + }, + { + "name": "minecraft:bogged_spawn_egg", + "id": 472 + }, + { + "name": "minecraft:bolt_armor_trim_smithing_template", + "id": 717 + }, + { + "name": "minecraft:bone", + "id": 423 + }, + { + "name": "minecraft:bone_block", + "id": 216 + }, + { + "name": "minecraft:bone_meal", + "id": 419 + }, + { + "name": "minecraft:book", + "id": 395 + }, + { + "name": "minecraft:bookshelf", + "id": 47 + }, + { + "name": "minecraft:border_block", + "id": 212 + }, + { + "name": "minecraft:bordure_indented_banner_pattern", + "id": 602 + }, + { + "name": "minecraft:bow", + "id": 306 + }, + { + "name": "minecraft:bowl", + "id": 328 + }, + { + "name": "minecraft:brain_coral", + "id": -581 + }, + { + "name": "minecraft:brain_coral_block", + "id": -849 + }, + { + "name": "minecraft:brain_coral_fan", + "id": -840 + }, + { + "name": "minecraft:bread", + "id": 265 + }, + { + "name": "minecraft:breeze_rod", + "id": 432 + }, + { + "name": "minecraft:breeze_spawn_egg", + "id": 511 + }, + { + "name": "minecraft:brewer_pottery_sherd", + "id": 679 + }, + { + "name": "minecraft:brewing_stand", + "id": 440 + }, + { + "name": "minecraft:brick", + "id": 391 + }, + { + "name": "minecraft:brick_block", + "id": 45 + }, + { + "name": "minecraft:brick_slab", + "id": -874 + }, + { + "name": "minecraft:brick_stairs", + "id": 108 + }, + { + "name": "minecraft:brown_candle", + "id": -425 + }, + { + "name": "minecraft:brown_candle_cake", + "id": -442 + }, + { + "name": "minecraft:brown_carpet", + "id": -608 + }, + { + "name": "minecraft:brown_concrete", + "id": -639 + }, + { + "name": "minecraft:brown_concrete_powder", + "id": -720 + }, + { + "name": "minecraft:brown_dye", + "id": 406 + }, + { + "name": "minecraft:brown_glazed_terracotta", + "id": 232 + }, + { + "name": "minecraft:brown_mushroom", + "id": 39 + }, + { + "name": "minecraft:brown_mushroom_block", + "id": 99 + }, + { + "name": "minecraft:brown_shulker_box", + "id": -624 + }, + { + "name": "minecraft:brown_stained_glass", + "id": -684 + }, + { + "name": "minecraft:brown_stained_glass_pane", + "id": -654 + }, + { + "name": "minecraft:brown_terracotta", + "id": -735 + }, + { + "name": "minecraft:brown_wool", + "id": -555 + }, + { + "name": "minecraft:brush", + "id": 698 + }, + { + "name": "minecraft:bubble_column", + "id": -160 + }, + { + "name": "minecraft:bubble_coral", + "id": -582 + }, + { + "name": "minecraft:bubble_coral_block", + "id": -850 + }, + { + "name": "minecraft:bubble_coral_fan", + "id": -841 + }, + { + "name": "minecraft:bucket", + "id": 367 + }, + { + "name": "minecraft:budding_amethyst", + "id": -328 + }, + { + "name": "minecraft:burn_pottery_sherd", + "id": 680 + }, + { + "name": "minecraft:cactus", + "id": 81 + }, + { + "name": "minecraft:cake", + "id": 425 + }, + { + "name": "minecraft:calcite", + "id": -326 + }, + { + "name": "minecraft:calibrated_sculk_sensor", + "id": -580 + }, + { + "name": "minecraft:camel_spawn_egg", + "id": 674 + }, + { + "name": "minecraft:camera", + "id": 612 + }, + { + "name": "minecraft:campfire", + "id": 607 + }, + { + "name": "minecraft:candle", + "id": -412 + }, + { + "name": "minecraft:candle_cake", + "id": -429 + }, + { + "name": "minecraft:carpet", + "id": 726 + }, + { + "name": "minecraft:carrot", + "id": 283 + }, + { + "name": "minecraft:carrot_on_a_stick", + "id": 533 + }, + { + "name": "minecraft:carrots", + "id": 141 + }, + { + "name": "minecraft:cartography_table", + "id": -200 + }, + { + "name": "minecraft:carved_pumpkin", + "id": -155 + }, + { + "name": "minecraft:cat_spawn_egg", + "id": 498 + }, + { + "name": "minecraft:cauldron", + "id": 441 + }, + { + "name": "minecraft:cave_spider_spawn_egg", + "id": 466 + }, + { + "name": "minecraft:cave_vines", + "id": -322 + }, + { + "name": "minecraft:cave_vines_body_with_berries", + "id": -375 + }, + { + "name": "minecraft:cave_vines_head_with_berries", + "id": -376 + }, + { + "name": "minecraft:chain", + "id": 638 + }, + { + "name": "minecraft:chain_command_block", + "id": 189 + }, + { + "name": "minecraft:chainmail_boots", + "id": 349 + }, + { + "name": "minecraft:chainmail_chestplate", + "id": 347 + }, + { + "name": "minecraft:chainmail_helmet", + "id": 346 + }, + { + "name": "minecraft:chainmail_leggings", + "id": 348 + }, + { + "name": "minecraft:charcoal", + "id": 309 + }, + { + "name": "minecraft:chemical_heat", + "id": 192 + }, + { + "name": "minecraft:chemistry_table", + "id": 238 + }, + { + "name": "minecraft:cherry_boat", + "id": 668 + }, + { + "name": "minecraft:cherry_button", + "id": -530 + }, + { + "name": "minecraft:cherry_chest_boat", + "id": 669 + }, + { + "name": "minecraft:cherry_door", + "id": -531 + }, + { + "name": "minecraft:cherry_double_slab", + "id": -540 + }, + { + "name": "minecraft:cherry_fence", + "id": -532 + }, + { + "name": "minecraft:cherry_fence_gate", + "id": -533 + }, + { + "name": "minecraft:cherry_hanging_sign", + "id": -534 + }, + { + "name": "minecraft:cherry_leaves", + "id": -548 + }, + { + "name": "minecraft:cherry_log", + "id": -536 + }, + { + "name": "minecraft:cherry_planks", + "id": -537 + }, + { + "name": "minecraft:cherry_pressure_plate", + "id": -538 + }, + { + "name": "minecraft:cherry_sapling", + "id": -547 + }, + { + "name": "minecraft:cherry_sign", + "id": 670 + }, + { + "name": "minecraft:cherry_slab", + "id": -539 + }, + { + "name": "minecraft:cherry_stairs", + "id": -541 + }, + { + "name": "minecraft:cherry_standing_sign", + "id": -542 + }, + { + "name": "minecraft:cherry_trapdoor", + "id": -543 + }, + { + "name": "minecraft:cherry_wall_sign", + "id": -544 + }, + { + "name": "minecraft:cherry_wood", + "id": -546 + }, + { + "name": "minecraft:chest", + "id": 54 + }, + { + "name": "minecraft:chest_boat", + "id": 664 + }, + { + "name": "minecraft:chest_minecart", + "id": 397 + }, + { + "name": "minecraft:chicken", + "id": 279 + }, + { + "name": "minecraft:chicken_spawn_egg", + "id": 444 + }, + { + "name": "minecraft:chiseled_bookshelf", + "id": -526 + }, + { + "name": "minecraft:chiseled_copper", + "id": -760 + }, + { + "name": "minecraft:chiseled_deepslate", + "id": -395 + }, + { + "name": "minecraft:chiseled_nether_bricks", + "id": -302 + }, + { + "name": "minecraft:chiseled_polished_blackstone", + "id": -279 + }, + { + "name": "minecraft:chiseled_tuff", + "id": -753 + }, + { + "name": "minecraft:chiseled_tuff_bricks", + "id": -759 + }, + { + "name": "minecraft:chorus_flower", + "id": 200 + }, + { + "name": "minecraft:chorus_fruit", + "id": 574 + }, + { + "name": "minecraft:chorus_plant", + "id": 240 + }, + { + "name": "minecraft:clay", + "id": 82 + }, + { + "name": "minecraft:clay_ball", + "id": 392 + }, + { + "name": "minecraft:client_request_placeholder_block", + "id": -465 + }, + { + "name": "minecraft:clock", + "id": 401 + }, + { + "name": "minecraft:coal", + "id": 308 + }, + { + "name": "minecraft:coal_block", + "id": 173 + }, + { + "name": "minecraft:coal_ore", + "id": 16 + }, + { + "name": "minecraft:coast_armor_trim_smithing_template", + "id": 702 + }, + { + "name": "minecraft:cobbled_deepslate", + "id": -379 + }, + { + "name": "minecraft:cobbled_deepslate_double_slab", + "id": -396 + }, + { + "name": "minecraft:cobbled_deepslate_slab", + "id": -380 + }, + { + "name": "minecraft:cobbled_deepslate_stairs", + "id": -381 + }, + { + "name": "minecraft:cobbled_deepslate_wall", + "id": -382 + }, + { + "name": "minecraft:cobblestone", + "id": 4 + }, + { + "name": "minecraft:cobblestone_slab", + "id": -873 + }, + { + "name": "minecraft:cobblestone_wall", + "id": 139 + }, + { + "name": "minecraft:cocoa", + "id": 127 + }, + { + "name": "minecraft:cocoa_beans", + "id": 420 + }, + { + "name": "minecraft:cod", + "id": 268 + }, + { + "name": "minecraft:cod_bucket", + "id": 371 + }, + { + "name": "minecraft:cod_spawn_egg", + "id": 490 + }, + { + "name": "minecraft:colored_torch_bp", + "id": 204 + }, + { + "name": "minecraft:colored_torch_rg", + "id": 202 + }, + { + "name": "minecraft:command_block", + "id": 137 + }, + { + "name": "minecraft:command_block_minecart", + "id": 579 + }, + { + "name": "minecraft:comparator", + "id": 538 + }, + { + "name": "minecraft:compass", + "id": 399 + }, + { + "name": "minecraft:composter", + "id": -213 + }, + { + "name": "minecraft:compound", + "id": 613 + }, + { + "name": "minecraft:concrete", + "id": 743 + }, + { + "name": "minecraft:concrete_powder", + "id": 744 + }, + { + "name": "minecraft:conduit", + "id": -157 + }, + { + "name": "minecraft:cooked_beef", + "id": 278 + }, + { + "name": "minecraft:cooked_chicken", + "id": 280 + }, + { + "name": "minecraft:cooked_cod", + "id": 272 + }, + { + "name": "minecraft:cooked_mutton", + "id": 567 + }, + { + "name": "minecraft:cooked_porkchop", + "id": 267 + }, + { + "name": "minecraft:cooked_rabbit", + "id": 293 + }, + { + "name": "minecraft:cooked_salmon", + "id": 273 + }, + { + "name": "minecraft:cookie", + "id": 275 + }, + { + "name": "minecraft:copper_block", + "id": -340 + }, + { + "name": "minecraft:copper_bulb", + "id": -776 + }, + { + "name": "minecraft:copper_door", + "id": -784 + }, + { + "name": "minecraft:copper_grate", + "id": -768 + }, + { + "name": "minecraft:copper_ingot", + "id": 520 + }, + { + "name": "minecraft:copper_ore", + "id": -311 + }, + { + "name": "minecraft:copper_trapdoor", + "id": -792 + }, + { + "name": "minecraft:coral", + "id": 740 + }, + { + "name": "minecraft:coral_block", + "id": 729 + }, + { + "name": "minecraft:coral_fan", + "id": 730 + }, + { + "name": "minecraft:coral_fan_dead", + "id": 731 + }, + { + "name": "minecraft:coral_fan_hang", + "id": -135 + }, + { + "name": "minecraft:coral_fan_hang2", + "id": -136 + }, + { + "name": "minecraft:coral_fan_hang3", + "id": -137 + }, + { + "name": "minecraft:cornflower", + "id": -838 + }, + { + "name": "minecraft:cow_spawn_egg", + "id": 445 + }, + { + "name": "minecraft:cracked_deepslate_bricks", + "id": -410 + }, + { + "name": "minecraft:cracked_deepslate_tiles", + "id": -409 + }, + { + "name": "minecraft:cracked_nether_bricks", + "id": -303 + }, + { + "name": "minecraft:cracked_polished_blackstone_bricks", + "id": -280 + }, + { + "name": "minecraft:crafter", + "id": -313 + }, + { + "name": "minecraft:crafting_table", + "id": 58 + }, + { + "name": "minecraft:creeper_banner_pattern", + "id": 598 + }, + { + "name": "minecraft:creeper_spawn_egg", + "id": 450 + }, + { + "name": "minecraft:crimson_button", + "id": -260 + }, + { + "name": "minecraft:crimson_door", + "id": 635 + }, + { + "name": "minecraft:crimson_double_slab", + "id": -266 + }, + { + "name": "minecraft:crimson_fence", + "id": -256 + }, + { + "name": "minecraft:crimson_fence_gate", + "id": -258 + }, + { + "name": "minecraft:crimson_fungus", + "id": -228 + }, + { + "name": "minecraft:crimson_hanging_sign", + "id": -506 + }, + { + "name": "minecraft:crimson_hyphae", + "id": -299 + }, + { + "name": "minecraft:crimson_nylium", + "id": -232 + }, + { + "name": "minecraft:crimson_planks", + "id": -242 + }, + { + "name": "minecraft:crimson_pressure_plate", + "id": -262 + }, + { + "name": "minecraft:crimson_roots", + "id": -223 + }, + { + "name": "minecraft:crimson_sign", + "id": 633 + }, + { + "name": "minecraft:crimson_slab", + "id": -264 + }, + { + "name": "minecraft:crimson_stairs", + "id": -254 + }, + { + "name": "minecraft:crimson_standing_sign", + "id": -250 + }, + { + "name": "minecraft:crimson_stem", + "id": -225 + }, + { + "name": "minecraft:crimson_trapdoor", + "id": -246 + }, + { + "name": "minecraft:crimson_wall_sign", + "id": -252 + }, + { + "name": "minecraft:crossbow", + "id": 591 + }, + { + "name": "minecraft:crying_obsidian", + "id": -289 + }, + { + "name": "minecraft:cut_copper", + "id": -347 + }, + { + "name": "minecraft:cut_copper_slab", + "id": -361 + }, + { + "name": "minecraft:cut_copper_stairs", + "id": -354 + }, + { + "name": "minecraft:cyan_candle", + "id": -422 + }, + { + "name": "minecraft:cyan_candle_cake", + "id": -439 + }, + { + "name": "minecraft:cyan_carpet", + "id": -605 + }, + { + "name": "minecraft:cyan_concrete", + "id": -636 + }, + { + "name": "minecraft:cyan_concrete_powder", + "id": -717 + }, + { + "name": "minecraft:cyan_dye", + "id": 409 + }, + { + "name": "minecraft:cyan_glazed_terracotta", + "id": 229 + }, + { + "name": "minecraft:cyan_shulker_box", + "id": -621 + }, + { + "name": "minecraft:cyan_stained_glass", + "id": -681 + }, + { + "name": "minecraft:cyan_stained_glass_pane", + "id": -651 + }, + { + "name": "minecraft:cyan_terracotta", + "id": -732 + }, + { + "name": "minecraft:cyan_wool", + "id": -561 + }, + { + "name": "minecraft:danger_pottery_sherd", + "id": 681 + }, + { + "name": "minecraft:dark_oak_boat", + "id": 388 + }, + { + "name": "minecraft:dark_oak_button", + "id": -142 + }, + { + "name": "minecraft:dark_oak_chest_boat", + "id": 662 + }, + { + "name": "minecraft:dark_oak_door", + "id": 573 + }, + { + "name": "minecraft:dark_oak_double_slab", + "id": -813 + }, + { + "name": "minecraft:dark_oak_fence", + "id": -577 + }, + { + "name": "minecraft:dark_oak_fence_gate", + "id": 186 + }, + { + "name": "minecraft:dark_oak_hanging_sign", + "id": -505 + }, + { + "name": "minecraft:dark_oak_leaves", + "id": -803 + }, + { + "name": "minecraft:dark_oak_log", + "id": -572 + }, + { + "name": "minecraft:dark_oak_planks", + "id": -743 + }, + { + "name": "minecraft:dark_oak_pressure_plate", + "id": -152 + }, + { + "name": "minecraft:dark_oak_sapling", + "id": -829 + }, + { + "name": "minecraft:dark_oak_sign", + "id": 596 + }, + { + "name": "minecraft:dark_oak_slab", + "id": -808 + }, + { + "name": "minecraft:dark_oak_stairs", + "id": 164 + }, + { + "name": "minecraft:dark_oak_trapdoor", + "id": -147 + }, + { + "name": "minecraft:dark_oak_wood", + "id": -818 + }, + { + "name": "minecraft:dark_prismarine_stairs", + "id": -3 + }, + { + "name": "minecraft:darkoak_standing_sign", + "id": -192 + }, + { + "name": "minecraft:darkoak_wall_sign", + "id": -193 + }, + { + "name": "minecraft:daylight_detector", + "id": 151 + }, + { + "name": "minecraft:daylight_detector_inverted", + "id": 178 + }, + { + "name": "minecraft:dead_brain_coral", + "id": -586 + }, + { + "name": "minecraft:dead_brain_coral_block", + "id": -854 + }, + { + "name": "minecraft:dead_brain_coral_fan", + "id": -844 + }, + { + "name": "minecraft:dead_bubble_coral", + "id": -587 + }, + { + "name": "minecraft:dead_bubble_coral_block", + "id": -855 + }, + { + "name": "minecraft:dead_bubble_coral_fan", + "id": -845 + }, + { + "name": "minecraft:dead_fire_coral", + "id": -588 + }, + { + "name": "minecraft:dead_fire_coral_block", + "id": -856 + }, + { + "name": "minecraft:dead_fire_coral_fan", + "id": -846 + }, + { + "name": "minecraft:dead_horn_coral", + "id": -589 + }, + { + "name": "minecraft:dead_horn_coral_block", + "id": -857 + }, + { + "name": "minecraft:dead_horn_coral_fan", + "id": -847 + }, + { + "name": "minecraft:dead_tube_coral", + "id": -585 + }, + { + "name": "minecraft:dead_tube_coral_block", + "id": -853 + }, + { + "name": "minecraft:dead_tube_coral_fan", + "id": -134 + }, + { + "name": "minecraft:deadbush", + "id": 32 + }, + { + "name": "minecraft:decorated_pot", + "id": -551 + }, + { + "name": "minecraft:deepslate", + "id": -378 + }, + { + "name": "minecraft:deepslate_brick_double_slab", + "id": -399 + }, + { + "name": "minecraft:deepslate_brick_slab", + "id": -392 + }, + { + "name": "minecraft:deepslate_brick_stairs", + "id": -393 + }, + { + "name": "minecraft:deepslate_brick_wall", + "id": -394 + }, + { + "name": "minecraft:deepslate_bricks", + "id": -391 + }, + { + "name": "minecraft:deepslate_coal_ore", + "id": -406 + }, + { + "name": "minecraft:deepslate_copper_ore", + "id": -408 + }, + { + "name": "minecraft:deepslate_diamond_ore", + "id": -405 + }, + { + "name": "minecraft:deepslate_emerald_ore", + "id": -407 + }, + { + "name": "minecraft:deepslate_gold_ore", + "id": -402 + }, + { + "name": "minecraft:deepslate_iron_ore", + "id": -401 + }, + { + "name": "minecraft:deepslate_lapis_ore", + "id": -400 + }, + { + "name": "minecraft:deepslate_redstone_ore", + "id": -403 + }, + { + "name": "minecraft:deepslate_tile_double_slab", + "id": -398 + }, + { + "name": "minecraft:deepslate_tile_slab", + "id": -388 + }, + { + "name": "minecraft:deepslate_tile_stairs", + "id": -389 + }, + { + "name": "minecraft:deepslate_tile_wall", + "id": -390 + }, + { + "name": "minecraft:deepslate_tiles", + "id": -387 + }, + { + "name": "minecraft:deny", + "id": 211 + }, + { + "name": "minecraft:detector_rail", + "id": 28 + }, + { + "name": "minecraft:diamond", + "id": 310 + }, + { + "name": "minecraft:diamond_axe", + "id": 325 + }, + { + "name": "minecraft:diamond_block", + "id": 57 + }, + { + "name": "minecraft:diamond_boots", + "id": 357 + }, + { + "name": "minecraft:diamond_chestplate", + "id": 355 + }, + { + "name": "minecraft:diamond_helmet", + "id": 354 + }, + { + "name": "minecraft:diamond_hoe", + "id": 339 + }, + { + "name": "minecraft:diamond_horse_armor", + "id": 549 + }, + { + "name": "minecraft:diamond_leggings", + "id": 356 + }, + { + "name": "minecraft:diamond_ore", + "id": 56 + }, + { + "name": "minecraft:diamond_pickaxe", + "id": 324 + }, + { + "name": "minecraft:diamond_shovel", + "id": 323 + }, + { + "name": "minecraft:diamond_sword", + "id": 322 + }, + { + "name": "minecraft:diorite", + "id": -592 + }, + { + "name": "minecraft:diorite_stairs", + "id": -170 + }, + { + "name": "minecraft:dirt", + "id": 3 + }, + { + "name": "minecraft:dirt_with_roots", + "id": -318 + }, + { + "name": "minecraft:disc_fragment_5", + "id": 656 + }, + { + "name": "minecraft:dispenser", + "id": 23 + }, + { + "name": "minecraft:dolphin_spawn_egg", + "id": 494 + }, + { + "name": "minecraft:donkey_spawn_egg", + "id": 475 + }, + { + "name": "minecraft:double_cut_copper_slab", + "id": -368 + }, + { + "name": "minecraft:double_plant", + "id": 738 + }, + { + "name": "minecraft:double_stone_block_slab", + "id": 43 + }, + { + "name": "minecraft:double_stone_block_slab2", + "id": 181 + }, + { + "name": "minecraft:double_stone_block_slab3", + "id": -167 + }, + { + "name": "minecraft:double_stone_block_slab4", + "id": -168 + }, + { + "name": "minecraft:dragon_breath", + "id": 576 + }, + { + "name": "minecraft:dragon_egg", + "id": 122 + }, + { + "name": "minecraft:dried_kelp", + "id": 274 + }, + { + "name": "minecraft:dried_kelp_block", + "id": -139 + }, + { + "name": "minecraft:dripstone_block", + "id": -317 + }, + { + "name": "minecraft:dropper", + "id": 125 + }, + { + "name": "minecraft:drowned_spawn_egg", + "id": 493 + }, + { + "name": "minecraft:dune_armor_trim_smithing_template", + "id": 701 + }, + { + "name": "minecraft:dye", + "id": 755 + }, + { + "name": "minecraft:echo_shard", + "id": 666 + }, + { + "name": "minecraft:egg", + "id": 398 + }, + { + "name": "minecraft:elder_guardian_spawn_egg", + "id": 481 + }, + { + "name": "minecraft:element_0", + "id": 36 + }, + { + "name": "minecraft:element_1", + "id": -12 + }, + { + "name": "minecraft:element_10", + "id": -21 + }, + { + "name": "minecraft:element_100", + "id": -111 + }, + { + "name": "minecraft:element_101", + "id": -112 + }, + { + "name": "minecraft:element_102", + "id": -113 + }, + { + "name": "minecraft:element_103", + "id": -114 + }, + { + "name": "minecraft:element_104", + "id": -115 + }, + { + "name": "minecraft:element_105", + "id": -116 + }, + { + "name": "minecraft:element_106", + "id": -117 + }, + { + "name": "minecraft:element_107", + "id": -118 + }, + { + "name": "minecraft:element_108", + "id": -119 + }, + { + "name": "minecraft:element_109", + "id": -120 + }, + { + "name": "minecraft:element_11", + "id": -22 + }, + { + "name": "minecraft:element_110", + "id": -121 + }, + { + "name": "minecraft:element_111", + "id": -122 + }, + { + "name": "minecraft:element_112", + "id": -123 + }, + { + "name": "minecraft:element_113", + "id": -124 + }, + { + "name": "minecraft:element_114", + "id": -125 + }, + { + "name": "minecraft:element_115", + "id": -126 + }, + { + "name": "minecraft:element_116", + "id": -127 + }, + { + "name": "minecraft:element_117", + "id": -128 + }, + { + "name": "minecraft:element_118", + "id": -129 + }, + { + "name": "minecraft:element_12", + "id": -23 + }, + { + "name": "minecraft:element_13", + "id": -24 + }, + { + "name": "minecraft:element_14", + "id": -25 + }, + { + "name": "minecraft:element_15", + "id": -26 + }, + { + "name": "minecraft:element_16", + "id": -27 + }, + { + "name": "minecraft:element_17", + "id": -28 + }, + { + "name": "minecraft:element_18", + "id": -29 + }, + { + "name": "minecraft:element_19", + "id": -30 + }, + { + "name": "minecraft:element_2", + "id": -13 + }, + { + "name": "minecraft:element_20", + "id": -31 + }, + { + "name": "minecraft:element_21", + "id": -32 + }, + { + "name": "minecraft:element_22", + "id": -33 + }, + { + "name": "minecraft:element_23", + "id": -34 + }, + { + "name": "minecraft:element_24", + "id": -35 + }, + { + "name": "minecraft:element_25", + "id": -36 + }, + { + "name": "minecraft:element_26", + "id": -37 + }, + { + "name": "minecraft:element_27", + "id": -38 + }, + { + "name": "minecraft:element_28", + "id": -39 + }, + { + "name": "minecraft:element_29", + "id": -40 + }, + { + "name": "minecraft:element_3", + "id": -14 + }, + { + "name": "minecraft:element_30", + "id": -41 + }, + { + "name": "minecraft:element_31", + "id": -42 + }, + { + "name": "minecraft:element_32", + "id": -43 + }, + { + "name": "minecraft:element_33", + "id": -44 + }, + { + "name": "minecraft:element_34", + "id": -45 + }, + { + "name": "minecraft:element_35", + "id": -46 + }, + { + "name": "minecraft:element_36", + "id": -47 + }, + { + "name": "minecraft:element_37", + "id": -48 + }, + { + "name": "minecraft:element_38", + "id": -49 + }, + { + "name": "minecraft:element_39", + "id": -50 + }, + { + "name": "minecraft:element_4", + "id": -15 + }, + { + "name": "minecraft:element_40", + "id": -51 + }, + { + "name": "minecraft:element_41", + "id": -52 + }, + { + "name": "minecraft:element_42", + "id": -53 + }, + { + "name": "minecraft:element_43", + "id": -54 + }, + { + "name": "minecraft:element_44", + "id": -55 + }, + { + "name": "minecraft:element_45", + "id": -56 + }, + { + "name": "minecraft:element_46", + "id": -57 + }, + { + "name": "minecraft:element_47", + "id": -58 + }, + { + "name": "minecraft:element_48", + "id": -59 + }, + { + "name": "minecraft:element_49", + "id": -60 + }, + { + "name": "minecraft:element_5", + "id": -16 + }, + { + "name": "minecraft:element_50", + "id": -61 + }, + { + "name": "minecraft:element_51", + "id": -62 + }, + { + "name": "minecraft:element_52", + "id": -63 + }, + { + "name": "minecraft:element_53", + "id": -64 + }, + { + "name": "minecraft:element_54", + "id": -65 + }, + { + "name": "minecraft:element_55", + "id": -66 + }, + { + "name": "minecraft:element_56", + "id": -67 + }, + { + "name": "minecraft:element_57", + "id": -68 + }, + { + "name": "minecraft:element_58", + "id": -69 + }, + { + "name": "minecraft:element_59", + "id": -70 + }, + { + "name": "minecraft:element_6", + "id": -17 + }, + { + "name": "minecraft:element_60", + "id": -71 + }, + { + "name": "minecraft:element_61", + "id": -72 + }, + { + "name": "minecraft:element_62", + "id": -73 + }, + { + "name": "minecraft:element_63", + "id": -74 + }, + { + "name": "minecraft:element_64", + "id": -75 + }, + { + "name": "minecraft:element_65", + "id": -76 + }, + { + "name": "minecraft:element_66", + "id": -77 + }, + { + "name": "minecraft:element_67", + "id": -78 + }, + { + "name": "minecraft:element_68", + "id": -79 + }, + { + "name": "minecraft:element_69", + "id": -80 + }, + { + "name": "minecraft:element_7", + "id": -18 + }, + { + "name": "minecraft:element_70", + "id": -81 + }, + { + "name": "minecraft:element_71", + "id": -82 + }, + { + "name": "minecraft:element_72", + "id": -83 + }, + { + "name": "minecraft:element_73", + "id": -84 + }, + { + "name": "minecraft:element_74", + "id": -85 + }, + { + "name": "minecraft:element_75", + "id": -86 + }, + { + "name": "minecraft:element_76", + "id": -87 + }, + { + "name": "minecraft:element_77", + "id": -88 + }, + { + "name": "minecraft:element_78", + "id": -89 + }, + { + "name": "minecraft:element_79", + "id": -90 + }, + { + "name": "minecraft:element_8", + "id": -19 + }, + { + "name": "minecraft:element_80", + "id": -91 + }, + { + "name": "minecraft:element_81", + "id": -92 + }, + { + "name": "minecraft:element_82", + "id": -93 + }, + { + "name": "minecraft:element_83", + "id": -94 + }, + { + "name": "minecraft:element_84", + "id": -95 + }, + { + "name": "minecraft:element_85", + "id": -96 + }, + { + "name": "minecraft:element_86", + "id": -97 + }, + { + "name": "minecraft:element_87", + "id": -98 + }, + { + "name": "minecraft:element_88", + "id": -99 + }, + { + "name": "minecraft:element_89", + "id": -100 + }, + { + "name": "minecraft:element_9", + "id": -20 + }, + { + "name": "minecraft:element_90", + "id": -101 + }, + { + "name": "minecraft:element_91", + "id": -102 + }, + { + "name": "minecraft:element_92", + "id": -103 + }, + { + "name": "minecraft:element_93", + "id": -104 + }, + { + "name": "minecraft:element_94", + "id": -105 + }, + { + "name": "minecraft:element_95", + "id": -106 + }, + { + "name": "minecraft:element_96", + "id": -107 + }, + { + "name": "minecraft:element_97", + "id": -108 + }, + { + "name": "minecraft:element_98", + "id": -109 + }, + { + "name": "minecraft:element_99", + "id": -110 + }, + { + "name": "minecraft:elytra", + "id": 580 + }, + { + "name": "minecraft:emerald", + "id": 528 + }, + { + "name": "minecraft:emerald_block", + "id": 133 + }, + { + "name": "minecraft:emerald_ore", + "id": 129 + }, + { + "name": "minecraft:empty_map", + "id": 531 + }, + { + "name": "minecraft:enchanted_book", + "id": 537 + }, + { + "name": "minecraft:enchanted_golden_apple", + "id": 263 + }, + { + "name": "minecraft:enchanting_table", + "id": 116 + }, + { + "name": "minecraft:end_brick_stairs", + "id": -178 + }, + { + "name": "minecraft:end_bricks", + "id": 206 + }, + { + "name": "minecraft:end_crystal", + "id": 758 + }, + { + "name": "minecraft:end_gateway", + "id": 209 + }, + { + "name": "minecraft:end_portal", + "id": 119 + }, + { + "name": "minecraft:end_portal_frame", + "id": 120 + }, + { + "name": "minecraft:end_rod", + "id": 208 + }, + { + "name": "minecraft:end_stone", + "id": 121 + }, + { + "name": "minecraft:ender_chest", + "id": 130 + }, + { + "name": "minecraft:ender_dragon_spawn_egg", + "id": 517 + }, + { + "name": "minecraft:ender_eye", + "id": 442 + }, + { + "name": "minecraft:ender_pearl", + "id": 430 + }, + { + "name": "minecraft:enderman_spawn_egg", + "id": 451 + }, + { + "name": "minecraft:endermite_spawn_egg", + "id": 469 + }, + { + "name": "minecraft:evoker_spawn_egg", + "id": 485 + }, + { + "name": "minecraft:experience_bottle", + "id": 524 + }, + { + "name": "minecraft:explorer_pottery_sherd", + "id": 682 + }, + { + "name": "minecraft:exposed_chiseled_copper", + "id": -761 + }, + { + "name": "minecraft:exposed_copper", + "id": -341 + }, + { + "name": "minecraft:exposed_copper_bulb", + "id": -777 + }, + { + "name": "minecraft:exposed_copper_door", + "id": -785 + }, + { + "name": "minecraft:exposed_copper_grate", + "id": -769 + }, + { + "name": "minecraft:exposed_copper_trapdoor", + "id": -793 + }, + { + "name": "minecraft:exposed_cut_copper", + "id": -348 + }, + { + "name": "minecraft:exposed_cut_copper_slab", + "id": -362 + }, + { + "name": "minecraft:exposed_cut_copper_stairs", + "id": -355 + }, + { + "name": "minecraft:exposed_double_cut_copper_slab", + "id": -369 + }, + { + "name": "minecraft:eye_armor_trim_smithing_template", + "id": 705 + }, + { + "name": "minecraft:farmland", + "id": 60 + }, + { + "name": "minecraft:feather", + "id": 334 + }, + { + "name": "minecraft:fence", + "id": 728 + }, + { + "name": "minecraft:fence_gate", + "id": 107 + }, + { + "name": "minecraft:fermented_spider_eye", + "id": 437 + }, + { + "name": "minecraft:fern", + "id": -848 + }, + { + "name": "minecraft:field_masoned_banner_pattern", + "id": 601 + }, + { + "name": "minecraft:filled_map", + "id": 428 + }, + { + "name": "minecraft:fire", + "id": 51 + }, + { + "name": "minecraft:fire_charge", + "id": 525 + }, + { + "name": "minecraft:fire_coral", + "id": -583 + }, + { + "name": "minecraft:fire_coral_block", + "id": -851 + }, + { + "name": "minecraft:fire_coral_fan", + "id": -842 + }, + { + "name": "minecraft:firework_rocket", + "id": 535 + }, + { + "name": "minecraft:firework_star", + "id": 536 + }, + { + "name": "minecraft:fishing_rod", + "id": 400 + }, + { + "name": "minecraft:fletching_table", + "id": -201 + }, + { + "name": "minecraft:flint", + "id": 363 + }, + { + "name": "minecraft:flint_and_steel", + "id": 305 + }, + { + "name": "minecraft:flow_armor_trim_smithing_template", + "id": 716 + }, + { + "name": "minecraft:flow_banner_pattern", + "id": 605 + }, + { + "name": "minecraft:flow_pottery_sherd", + "id": 683 + }, + { + "name": "minecraft:flower_banner_pattern", + "id": 597 + }, + { + "name": "minecraft:flower_pot", + "id": 530 + }, + { + "name": "minecraft:flowering_azalea", + "id": -338 + }, + { + "name": "minecraft:flowing_lava", + "id": 10 + }, + { + "name": "minecraft:flowing_water", + "id": 8 + }, + { + "name": "minecraft:fox_spawn_egg", + "id": 500 + }, + { + "name": "minecraft:frame", + "id": 529 + }, + { + "name": "minecraft:friend_pottery_sherd", + "id": 684 + }, + { + "name": "minecraft:frog_spawn", + "id": -468 + }, + { + "name": "minecraft:frog_spawn_egg", + "id": 647 + }, + { + "name": "minecraft:frosted_ice", + "id": 207 + }, + { + "name": "minecraft:furnace", + "id": 61 + }, + { + "name": "minecraft:ghast_spawn_egg", + "id": 463 + }, + { + "name": "minecraft:ghast_tear", + "id": 433 + }, + { + "name": "minecraft:gilded_blackstone", + "id": -281 + }, + { + "name": "minecraft:glass", + "id": 20 + }, + { + "name": "minecraft:glass_bottle", + "id": 436 + }, + { + "name": "minecraft:glass_pane", + "id": 102 + }, + { + "name": "minecraft:glistering_melon_slice", + "id": 443 + }, + { + "name": "minecraft:globe_banner_pattern", + "id": 604 + }, + { + "name": "minecraft:glow_berries", + "id": 759 + }, + { + "name": "minecraft:glow_frame", + "id": 642 + }, + { + "name": "minecraft:glow_ink_sac", + "id": 519 + }, + { + "name": "minecraft:glow_lichen", + "id": -411 + }, + { + "name": "minecraft:glow_squid_spawn_egg", + "id": 514 + }, + { + "name": "minecraft:glow_stick", + "id": 620 + }, + { + "name": "minecraft:glowingobsidian", + "id": 246 + }, + { + "name": "minecraft:glowstone", + "id": 89 + }, + { + "name": "minecraft:glowstone_dust", + "id": 402 + }, + { + "name": "minecraft:goat_horn", + "id": 646 + }, + { + "name": "minecraft:goat_spawn_egg", + "id": 513 + }, + { + "name": "minecraft:gold_block", + "id": 41 + }, + { + "name": "minecraft:gold_ingot", + "id": 312 + }, + { + "name": "minecraft:gold_nugget", + "id": 434 + }, + { + "name": "minecraft:gold_ore", + "id": 14 + }, + { + "name": "minecraft:golden_apple", + "id": 262 + }, + { + "name": "minecraft:golden_axe", + "id": 332 + }, + { + "name": "minecraft:golden_boots", + "id": 361 + }, + { + "name": "minecraft:golden_carrot", + "id": 287 + }, + { + "name": "minecraft:golden_chestplate", + "id": 359 + }, + { + "name": "minecraft:golden_helmet", + "id": 358 + }, + { + "name": "minecraft:golden_hoe", + "id": 340 + }, + { + "name": "minecraft:golden_horse_armor", + "id": 548 + }, + { + "name": "minecraft:golden_leggings", + "id": 360 + }, + { + "name": "minecraft:golden_pickaxe", + "id": 331 + }, + { + "name": "minecraft:golden_rail", + "id": 27 + }, + { + "name": "minecraft:golden_shovel", + "id": 330 + }, + { + "name": "minecraft:golden_sword", + "id": 329 + }, + { + "name": "minecraft:granite", + "id": -590 + }, + { + "name": "minecraft:granite_stairs", + "id": -169 + }, + { + "name": "minecraft:grass_block", + "id": 2 + }, + { + "name": "minecraft:grass_path", + "id": 198 + }, + { + "name": "minecraft:gravel", + "id": 13 + }, + { + "name": "minecraft:gray_candle", + "id": -420 + }, + { + "name": "minecraft:gray_candle_cake", + "id": -437 + }, + { + "name": "minecraft:gray_carpet", + "id": -603 + }, + { + "name": "minecraft:gray_concrete", + "id": -634 + }, + { + "name": "minecraft:gray_concrete_powder", + "id": -715 + }, + { + "name": "minecraft:gray_dye", + "id": 411 + }, + { + "name": "minecraft:gray_glazed_terracotta", + "id": 227 + }, + { + "name": "minecraft:gray_shulker_box", + "id": -619 + }, + { + "name": "minecraft:gray_stained_glass", + "id": -679 + }, + { + "name": "minecraft:gray_stained_glass_pane", + "id": -649 + }, + { + "name": "minecraft:gray_terracotta", + "id": -730 + }, + { + "name": "minecraft:gray_wool", + "id": -553 + }, + { + "name": "minecraft:green_candle", + "id": -426 + }, + { + "name": "minecraft:green_candle_cake", + "id": -443 + }, + { + "name": "minecraft:green_carpet", + "id": -609 + }, + { + "name": "minecraft:green_concrete", + "id": -640 + }, + { + "name": "minecraft:green_concrete_powder", + "id": -721 + }, + { + "name": "minecraft:green_dye", + "id": 405 + }, + { + "name": "minecraft:green_glazed_terracotta", + "id": 233 + }, + { + "name": "minecraft:green_shulker_box", + "id": -625 + }, + { + "name": "minecraft:green_stained_glass", + "id": -685 + }, + { + "name": "minecraft:green_stained_glass_pane", + "id": -655 + }, + { + "name": "minecraft:green_terracotta", + "id": -736 + }, + { + "name": "minecraft:green_wool", + "id": -560 + }, + { + "name": "minecraft:grindstone", + "id": -195 + }, + { + "name": "minecraft:guardian_spawn_egg", + "id": 470 + }, + { + "name": "minecraft:gunpowder", + "id": 335 + }, + { + "name": "minecraft:guster_banner_pattern", + "id": 606 + }, + { + "name": "minecraft:guster_pottery_sherd", + "id": 685 + }, + { + "name": "minecraft:hanging_roots", + "id": -319 + }, + { + "name": "minecraft:hard_black_stained_glass", + "id": -702 + }, + { + "name": "minecraft:hard_black_stained_glass_pane", + "id": -672 + }, + { + "name": "minecraft:hard_blue_stained_glass", + "id": -698 + }, + { + "name": "minecraft:hard_blue_stained_glass_pane", + "id": -668 + }, + { + "name": "minecraft:hard_brown_stained_glass", + "id": -699 + }, + { + "name": "minecraft:hard_brown_stained_glass_pane", + "id": -669 + }, + { + "name": "minecraft:hard_cyan_stained_glass", + "id": -696 + }, + { + "name": "minecraft:hard_cyan_stained_glass_pane", + "id": -666 + }, + { + "name": "minecraft:hard_glass", + "id": 253 + }, + { + "name": "minecraft:hard_glass_pane", + "id": 190 + }, + { + "name": "minecraft:hard_gray_stained_glass", + "id": -694 + }, + { + "name": "minecraft:hard_gray_stained_glass_pane", + "id": -664 + }, + { + "name": "minecraft:hard_green_stained_glass", + "id": -700 + }, + { + "name": "minecraft:hard_green_stained_glass_pane", + "id": -670 + }, + { + "name": "minecraft:hard_light_blue_stained_glass", + "id": -690 + }, + { + "name": "minecraft:hard_light_blue_stained_glass_pane", + "id": -660 + }, + { + "name": "minecraft:hard_light_gray_stained_glass", + "id": -695 + }, + { + "name": "minecraft:hard_light_gray_stained_glass_pane", + "id": -665 + }, + { + "name": "minecraft:hard_lime_stained_glass", + "id": -692 + }, + { + "name": "minecraft:hard_lime_stained_glass_pane", + "id": -662 + }, + { + "name": "minecraft:hard_magenta_stained_glass", + "id": -689 + }, + { + "name": "minecraft:hard_magenta_stained_glass_pane", + "id": -659 + }, + { + "name": "minecraft:hard_orange_stained_glass", + "id": -688 + }, + { + "name": "minecraft:hard_orange_stained_glass_pane", + "id": -658 + }, + { + "name": "minecraft:hard_pink_stained_glass", + "id": -693 + }, + { + "name": "minecraft:hard_pink_stained_glass_pane", + "id": -663 + }, + { + "name": "minecraft:hard_purple_stained_glass", + "id": -697 + }, + { + "name": "minecraft:hard_purple_stained_glass_pane", + "id": -667 + }, + { + "name": "minecraft:hard_red_stained_glass", + "id": -701 + }, + { + "name": "minecraft:hard_red_stained_glass_pane", + "id": -671 + }, + { + "name": "minecraft:hard_stained_glass", + "id": 752 + }, + { + "name": "minecraft:hard_stained_glass_pane", + "id": 753 + }, + { + "name": "minecraft:hard_white_stained_glass", + "id": 254 + }, + { + "name": "minecraft:hard_white_stained_glass_pane", + "id": 191 + }, + { + "name": "minecraft:hard_yellow_stained_glass", + "id": -691 + }, + { + "name": "minecraft:hard_yellow_stained_glass_pane", + "id": -661 + }, + { + "name": "minecraft:hardened_clay", + "id": 172 + }, + { + "name": "minecraft:hay_block", + "id": 170 + }, + { + "name": "minecraft:heart_of_the_sea", + "id": 587 + }, + { + "name": "minecraft:heart_pottery_sherd", + "id": 686 + }, + { + "name": "minecraft:heartbreak_pottery_sherd", + "id": 687 + }, + { + "name": "minecraft:heavy_core", + "id": -316 + }, + { + "name": "minecraft:heavy_weighted_pressure_plate", + "id": 148 + }, + { + "name": "minecraft:hoglin_spawn_egg", + "id": 506 + }, + { + "name": "minecraft:honey_block", + "id": -220 + }, + { + "name": "minecraft:honey_bottle", + "id": 610 + }, + { + "name": "minecraft:honeycomb", + "id": 609 + }, + { + "name": "minecraft:honeycomb_block", + "id": -221 + }, + { + "name": "minecraft:hopper", + "id": 543 + }, + { + "name": "minecraft:hopper_minecart", + "id": 542 + }, + { + "name": "minecraft:horn_coral", + "id": -584 + }, + { + "name": "minecraft:horn_coral_block", + "id": -852 + }, + { + "name": "minecraft:horn_coral_fan", + "id": -843 + }, + { + "name": "minecraft:horse_spawn_egg", + "id": 467 + }, + { + "name": "minecraft:host_armor_trim_smithing_template", + "id": 715 + }, + { + "name": "minecraft:howl_pottery_sherd", + "id": 688 + }, + { + "name": "minecraft:husk_spawn_egg", + "id": 473 + }, + { + "name": "minecraft:ice", + "id": 79 + }, + { + "name": "minecraft:ice_bomb", + "id": 614 + }, + { + "name": "minecraft:infested_deepslate", + "id": -454 + }, + { + "name": "minecraft:info_update", + "id": 248 + }, + { + "name": "minecraft:info_update2", + "id": 249 + }, + { + "name": "minecraft:ink_sac", + "id": 421 + }, + { + "name": "minecraft:invisible_bedrock", + "id": 95 + }, + { + "name": "minecraft:iron_axe", + "id": 304 + }, + { + "name": "minecraft:iron_bars", + "id": 101 + }, + { + "name": "minecraft:iron_block", + "id": 42 + }, + { + "name": "minecraft:iron_boots", + "id": 353 + }, + { + "name": "minecraft:iron_chestplate", + "id": 351 + }, + { + "name": "minecraft:iron_door", + "id": 379 + }, + { + "name": "minecraft:iron_golem_spawn_egg", + "id": 515 + }, + { + "name": "minecraft:iron_helmet", + "id": 350 + }, + { + "name": "minecraft:iron_hoe", + "id": 338 + }, + { + "name": "minecraft:iron_horse_armor", + "id": 547 + }, + { + "name": "minecraft:iron_ingot", + "id": 311 + }, + { + "name": "minecraft:iron_leggings", + "id": 352 + }, + { + "name": "minecraft:iron_nugget", + "id": 585 + }, + { + "name": "minecraft:iron_ore", + "id": 15 + }, + { + "name": "minecraft:iron_pickaxe", + "id": 303 + }, + { + "name": "minecraft:iron_shovel", + "id": 302 + }, + { + "name": "minecraft:iron_sword", + "id": 313 + }, + { + "name": "minecraft:iron_trapdoor", + "id": 167 + }, + { + "name": "minecraft:item.acacia_door", + "id": 196 + }, + { + "name": "minecraft:item.bed", + "id": 26 + }, + { + "name": "minecraft:item.beetroot", + "id": 244 + }, + { + "name": "minecraft:item.birch_door", + "id": 194 + }, + { + "name": "minecraft:item.brewing_stand", + "id": 117 + }, + { + "name": "minecraft:item.cake", + "id": 92 + }, + { + "name": "minecraft:item.camera", + "id": 242 + }, + { + "name": "minecraft:item.campfire", + "id": -209 + }, + { + "name": "minecraft:item.cauldron", + "id": 118 + }, + { + "name": "minecraft:item.chain", + "id": -286 + }, + { + "name": "minecraft:item.crimson_door", + "id": -244 + }, + { + "name": "minecraft:item.dark_oak_door", + "id": 197 + }, + { + "name": "minecraft:item.flower_pot", + "id": 140 + }, + { + "name": "minecraft:item.frame", + "id": 199 + }, + { + "name": "minecraft:item.glow_frame", + "id": -339 + }, + { + "name": "minecraft:item.hopper", + "id": 154 + }, + { + "name": "minecraft:item.iron_door", + "id": 71 + }, + { + "name": "minecraft:item.jungle_door", + "id": 195 + }, + { + "name": "minecraft:item.kelp", + "id": -138 + }, + { + "name": "minecraft:item.mangrove_door", + "id": -493 + }, + { + "name": "minecraft:item.nether_sprouts", + "id": -238 + }, + { + "name": "minecraft:item.nether_wart", + "id": 115 + }, + { + "name": "minecraft:item.reeds", + "id": 83 + }, + { + "name": "minecraft:item.skull", + "id": 144 + }, + { + "name": "minecraft:item.soul_campfire", + "id": -290 + }, + { + "name": "minecraft:item.spruce_door", + "id": 193 + }, + { + "name": "minecraft:item.warped_door", + "id": -245 + }, + { + "name": "minecraft:item.wheat", + "id": 59 + }, + { + "name": "minecraft:item.wooden_door", + "id": 64 + }, + { + "name": "minecraft:jigsaw", + "id": -211 + }, + { + "name": "minecraft:jukebox", + "id": 84 + }, + { + "name": "minecraft:jungle_boat", + "id": 385 + }, + { + "name": "minecraft:jungle_button", + "id": -143 + }, + { + "name": "minecraft:jungle_chest_boat", + "id": 659 + }, + { + "name": "minecraft:jungle_door", + "id": 571 + }, + { + "name": "minecraft:jungle_double_slab", + "id": -811 + }, + { + "name": "minecraft:jungle_fence", + "id": -578 + }, + { + "name": "minecraft:jungle_fence_gate", + "id": 185 + }, + { + "name": "minecraft:jungle_hanging_sign", + "id": -503 + }, + { + "name": "minecraft:jungle_leaves", + "id": -802 + }, + { + "name": "minecraft:jungle_log", + "id": -571 + }, + { + "name": "minecraft:jungle_planks", + "id": -741 + }, + { + "name": "minecraft:jungle_pressure_plate", + "id": -153 + }, + { + "name": "minecraft:jungle_sapling", + "id": -827 + }, + { + "name": "minecraft:jungle_sign", + "id": 594 + }, + { + "name": "minecraft:jungle_slab", + "id": -806 + }, + { + "name": "minecraft:jungle_stairs", + "id": 136 + }, + { + "name": "minecraft:jungle_standing_sign", + "id": -188 + }, + { + "name": "minecraft:jungle_trapdoor", + "id": -148 + }, + { + "name": "minecraft:jungle_wall_sign", + "id": -189 + }, + { + "name": "minecraft:jungle_wood", + "id": -816 + }, + { + "name": "minecraft:kelp", + "id": 390 + }, + { + "name": "minecraft:ladder", + "id": 65 + }, + { + "name": "minecraft:lantern", + "id": -208 + }, + { + "name": "minecraft:lapis_block", + "id": 22 + }, + { + "name": "minecraft:lapis_lazuli", + "id": 422 + }, + { + "name": "minecraft:lapis_ore", + "id": 21 + }, + { + "name": "minecraft:large_amethyst_bud", + "id": -330 + }, + { + "name": "minecraft:large_fern", + "id": -865 + }, + { + "name": "minecraft:lava", + "id": 11 + }, + { + "name": "minecraft:lava_bucket", + "id": 370 + }, + { + "name": "minecraft:lead", + "id": 563 + }, + { + "name": "minecraft:leather", + "id": 389 + }, + { + "name": "minecraft:leather_boots", + "id": 345 + }, + { + "name": "minecraft:leather_chestplate", + "id": 343 + }, + { + "name": "minecraft:leather_helmet", + "id": 342 + }, + { + "name": "minecraft:leather_horse_armor", + "id": 546 + }, + { + "name": "minecraft:leather_leggings", + "id": 344 + }, + { + "name": "minecraft:leaves", + "id": 733 + }, + { + "name": "minecraft:leaves2", + "id": 734 + }, + { + "name": "minecraft:lectern", + "id": -194 + }, + { + "name": "minecraft:lever", + "id": 69 + }, + { + "name": "minecraft:light_block", + "id": -215 + }, + { + "name": "minecraft:light_blue_candle", + "id": -416 + }, + { + "name": "minecraft:light_blue_candle_cake", + "id": -433 + }, + { + "name": "minecraft:light_blue_carpet", + "id": -599 + }, + { + "name": "minecraft:light_blue_concrete", + "id": -630 + }, + { + "name": "minecraft:light_blue_concrete_powder", + "id": -711 + }, + { + "name": "minecraft:light_blue_dye", + "id": 415 + }, + { + "name": "minecraft:light_blue_glazed_terracotta", + "id": 223 + }, + { + "name": "minecraft:light_blue_shulker_box", + "id": -615 + }, + { + "name": "minecraft:light_blue_stained_glass", + "id": -675 + }, + { + "name": "minecraft:light_blue_stained_glass_pane", + "id": -645 + }, + { + "name": "minecraft:light_blue_terracotta", + "id": -726 + }, + { + "name": "minecraft:light_blue_wool", + "id": -562 + }, + { + "name": "minecraft:light_gray_candle", + "id": -421 + }, + { + "name": "minecraft:light_gray_candle_cake", + "id": -438 + }, + { + "name": "minecraft:light_gray_carpet", + "id": -604 + }, + { + "name": "minecraft:light_gray_concrete", + "id": -635 + }, + { + "name": "minecraft:light_gray_concrete_powder", + "id": -716 + }, + { + "name": "minecraft:light_gray_dye", + "id": 410 + }, + { + "name": "minecraft:light_gray_shulker_box", + "id": -620 + }, + { + "name": "minecraft:light_gray_stained_glass", + "id": -680 + }, + { + "name": "minecraft:light_gray_stained_glass_pane", + "id": -650 + }, + { + "name": "minecraft:light_gray_terracotta", + "id": -731 + }, + { + "name": "minecraft:light_gray_wool", + "id": -552 + }, + { + "name": "minecraft:light_weighted_pressure_plate", + "id": 147 + }, + { + "name": "minecraft:lightning_rod", + "id": -312 + }, + { + "name": "minecraft:lilac", + "id": -863 + }, + { + "name": "minecraft:lily_of_the_valley", + "id": -839 + }, + { + "name": "minecraft:lime_candle", + "id": -418 + }, + { + "name": "minecraft:lime_candle_cake", + "id": -435 + }, + { + "name": "minecraft:lime_carpet", + "id": -601 + }, + { + "name": "minecraft:lime_concrete", + "id": -632 + }, + { + "name": "minecraft:lime_concrete_powder", + "id": -713 + }, + { + "name": "minecraft:lime_dye", + "id": 413 + }, + { + "name": "minecraft:lime_glazed_terracotta", + "id": 225 + }, + { + "name": "minecraft:lime_shulker_box", + "id": -617 + }, + { + "name": "minecraft:lime_stained_glass", + "id": -677 + }, + { + "name": "minecraft:lime_stained_glass_pane", + "id": -647 + }, + { + "name": "minecraft:lime_terracotta", + "id": -728 + }, + { + "name": "minecraft:lime_wool", + "id": -559 + }, + { + "name": "minecraft:lingering_potion", + "id": 578 + }, + { + "name": "minecraft:lit_blast_furnace", + "id": -214 + }, + { + "name": "minecraft:lit_deepslate_redstone_ore", + "id": -404 + }, + { + "name": "minecraft:lit_furnace", + "id": 62 + }, + { + "name": "minecraft:lit_pumpkin", + "id": 91 + }, + { + "name": "minecraft:lit_redstone_lamp", + "id": 124 + }, + { + "name": "minecraft:lit_redstone_ore", + "id": 74 + }, + { + "name": "minecraft:lit_smoker", + "id": -199 + }, + { + "name": "minecraft:llama_spawn_egg", + "id": 483 + }, + { + "name": "minecraft:lodestone", + "id": -222 + }, + { + "name": "minecraft:lodestone_compass", + "id": 621 + }, + { + "name": "minecraft:log", + "id": 727 + }, + { + "name": "minecraft:log2", + "id": 742 + }, + { + "name": "minecraft:loom", + "id": -204 + }, + { + "name": "minecraft:mace", + "id": 326 + }, + { + "name": "minecraft:magenta_candle", + "id": -415 + }, + { + "name": "minecraft:magenta_candle_cake", + "id": -432 + }, + { + "name": "minecraft:magenta_carpet", + "id": -598 + }, + { + "name": "minecraft:magenta_concrete", + "id": -629 + }, + { + "name": "minecraft:magenta_concrete_powder", + "id": -710 + }, + { + "name": "minecraft:magenta_dye", + "id": 416 + }, + { + "name": "minecraft:magenta_glazed_terracotta", + "id": 222 + }, + { + "name": "minecraft:magenta_shulker_box", + "id": -614 + }, + { + "name": "minecraft:magenta_stained_glass", + "id": -674 + }, + { + "name": "minecraft:magenta_stained_glass_pane", + "id": -644 + }, + { + "name": "minecraft:magenta_terracotta", + "id": -725 + }, + { + "name": "minecraft:magenta_wool", + "id": -565 + }, + { + "name": "minecraft:magma", + "id": 213 + }, + { + "name": "minecraft:magma_cream", + "id": 439 + }, + { + "name": "minecraft:magma_cube_spawn_egg", + "id": 464 + }, + { + "name": "minecraft:mangrove_boat", + "id": 654 + }, + { + "name": "minecraft:mangrove_button", + "id": -487 + }, + { + "name": "minecraft:mangrove_chest_boat", + "id": 663 + }, + { + "name": "minecraft:mangrove_door", + "id": 652 + }, + { + "name": "minecraft:mangrove_double_slab", + "id": -499 + }, + { + "name": "minecraft:mangrove_fence", + "id": -491 + }, + { + "name": "minecraft:mangrove_fence_gate", + "id": -492 + }, + { + "name": "minecraft:mangrove_hanging_sign", + "id": -508 + }, + { + "name": "minecraft:mangrove_leaves", + "id": -472 + }, + { + "name": "minecraft:mangrove_log", + "id": -484 + }, + { + "name": "minecraft:mangrove_planks", + "id": -486 + }, + { + "name": "minecraft:mangrove_pressure_plate", + "id": -490 + }, + { + "name": "minecraft:mangrove_propagule", + "id": -474 + }, + { + "name": "minecraft:mangrove_roots", + "id": -482 + }, + { + "name": "minecraft:mangrove_sign", + "id": 653 + }, + { + "name": "minecraft:mangrove_slab", + "id": -489 + }, + { + "name": "minecraft:mangrove_stairs", + "id": -488 + }, + { + "name": "minecraft:mangrove_standing_sign", + "id": -494 + }, + { + "name": "minecraft:mangrove_trapdoor", + "id": -496 + }, + { + "name": "minecraft:mangrove_wall_sign", + "id": -495 + }, + { + "name": "minecraft:mangrove_wood", + "id": -497 + }, + { + "name": "minecraft:medicine", + "id": 618 + }, + { + "name": "minecraft:medium_amethyst_bud", + "id": -331 + }, + { + "name": "minecraft:melon_block", + "id": 103 + }, + { + "name": "minecraft:melon_seeds", + "id": 297 + }, + { + "name": "minecraft:melon_slice", + "id": 276 + }, + { + "name": "minecraft:melon_stem", + "id": 105 + }, + { + "name": "minecraft:milk_bucket", + "id": 368 + }, + { + "name": "minecraft:minecart", + "id": 377 + }, + { + "name": "minecraft:miner_pottery_sherd", + "id": 689 + }, + { + "name": "minecraft:mob_spawner", + "id": 52 + }, + { + "name": "minecraft:mojang_banner_pattern", + "id": 600 + }, + { + "name": "minecraft:monster_egg", + "id": 97 + }, + { + "name": "minecraft:mooshroom_spawn_egg", + "id": 449 + }, + { + "name": "minecraft:moss_block", + "id": -320 + }, + { + "name": "minecraft:moss_carpet", + "id": -335 + }, + { + "name": "minecraft:mossy_cobblestone", + "id": 48 + }, + { + "name": "minecraft:mossy_cobblestone_stairs", + "id": -179 + }, + { + "name": "minecraft:mossy_stone_brick_stairs", + "id": -175 + }, + { + "name": "minecraft:mourner_pottery_sherd", + "id": 690 + }, + { + "name": "minecraft:moving_block", + "id": 250 + }, + { + "name": "minecraft:mud", + "id": -473 + }, + { + "name": "minecraft:mud_brick_double_slab", + "id": -479 + }, + { + "name": "minecraft:mud_brick_slab", + "id": -478 + }, + { + "name": "minecraft:mud_brick_stairs", + "id": -480 + }, + { + "name": "minecraft:mud_brick_wall", + "id": -481 + }, + { + "name": "minecraft:mud_bricks", + "id": -475 + }, + { + "name": "minecraft:muddy_mangrove_roots", + "id": -483 + }, + { + "name": "minecraft:mule_spawn_egg", + "id": 476 + }, + { + "name": "minecraft:mushroom_stew", + "id": 264 + }, + { + "name": "minecraft:music_disc_11", + "id": 560 + }, + { + "name": "minecraft:music_disc_13", + "id": 550 + }, + { + "name": "minecraft:music_disc_5", + "id": 655 + }, + { + "name": "minecraft:music_disc_blocks", + "id": 552 + }, + { + "name": "minecraft:music_disc_cat", + "id": 551 + }, + { + "name": "minecraft:music_disc_chirp", + "id": 553 + }, + { + "name": "minecraft:music_disc_creator", + "id": 749 + }, + { + "name": "minecraft:music_disc_creator_music_box", + "id": 750 + }, + { + "name": "minecraft:music_disc_far", + "id": 554 + }, + { + "name": "minecraft:music_disc_mall", + "id": 555 + }, + { + "name": "minecraft:music_disc_mellohi", + "id": 556 + }, + { + "name": "minecraft:music_disc_otherside", + "id": 645 + }, + { + "name": "minecraft:music_disc_pigstep", + "id": 639 + }, + { + "name": "minecraft:music_disc_precipice", + "id": 751 + }, + { + "name": "minecraft:music_disc_relic", + "id": 718 + }, + { + "name": "minecraft:music_disc_stal", + "id": 557 + }, + { + "name": "minecraft:music_disc_strad", + "id": 558 + }, + { + "name": "minecraft:music_disc_wait", + "id": 561 + }, + { + "name": "minecraft:music_disc_ward", + "id": 559 + }, + { + "name": "minecraft:mutton", + "id": 566 + }, + { + "name": "minecraft:mycelium", + "id": 110 + }, + { + "name": "minecraft:name_tag", + "id": 564 + }, + { + "name": "minecraft:nautilus_shell", + "id": 586 + }, + { + "name": "minecraft:nether_brick", + "id": 112 + }, + { + "name": "minecraft:nether_brick_fence", + "id": 113 + }, + { + "name": "minecraft:nether_brick_slab", + "id": -877 + }, + { + "name": "minecraft:nether_brick_stairs", + "id": 114 + }, + { + "name": "minecraft:nether_gold_ore", + "id": -288 + }, + { + "name": "minecraft:nether_sprouts", + "id": 640 + }, + { + "name": "minecraft:nether_star", + "id": 534 + }, + { + "name": "minecraft:nether_wart", + "id": 298 + }, + { + "name": "minecraft:nether_wart_block", + "id": 214 + }, + { + "name": "minecraft:netherbrick", + "id": 539 + }, + { + "name": "minecraft:netherite_axe", + "id": 625 + }, + { + "name": "minecraft:netherite_block", + "id": -270 + }, + { + "name": "minecraft:netherite_boots", + "id": 631 + }, + { + "name": "minecraft:netherite_chestplate", + "id": 629 + }, + { + "name": "minecraft:netherite_helmet", + "id": 628 + }, + { + "name": "minecraft:netherite_hoe", + "id": 626 + }, + { + "name": "minecraft:netherite_ingot", + "id": 627 + }, + { + "name": "minecraft:netherite_leggings", + "id": 630 + }, + { + "name": "minecraft:netherite_pickaxe", + "id": 624 + }, + { + "name": "minecraft:netherite_scrap", + "id": 632 + }, + { + "name": "minecraft:netherite_shovel", + "id": 623 + }, + { + "name": "minecraft:netherite_sword", + "id": 622 + }, + { + "name": "minecraft:netherite_upgrade_smithing_template", + "id": 699 + }, + { + "name": "minecraft:netherrack", + "id": 87 + }, + { + "name": "minecraft:netherreactor", + "id": 247 + }, + { + "name": "minecraft:normal_stone_stairs", + "id": -180 + }, + { + "name": "minecraft:noteblock", + "id": 25 + }, + { + "name": "minecraft:npc_spawn_egg", + "id": 480 + }, + { + "name": "minecraft:oak_boat", + "id": 383 + }, + { + "name": "minecraft:oak_chest_boat", + "id": 657 + }, + { + "name": "minecraft:oak_double_slab", + "id": 157 + }, + { + "name": "minecraft:oak_fence", + "id": 85 + }, + { + "name": "minecraft:oak_hanging_sign", + "id": -500 + }, + { + "name": "minecraft:oak_leaves", + "id": 18 + }, + { + "name": "minecraft:oak_log", + "id": 17 + }, + { + "name": "minecraft:oak_planks", + "id": 5 + }, + { + "name": "minecraft:oak_sapling", + "id": 6 + }, + { + "name": "minecraft:oak_sign", + "id": 365 + }, + { + "name": "minecraft:oak_slab", + "id": 158 + }, + { + "name": "minecraft:oak_stairs", + "id": 53 + }, + { + "name": "minecraft:oak_wood", + "id": -212 + }, + { + "name": "minecraft:observer", + "id": 251 + }, + { + "name": "minecraft:obsidian", + "id": 49 + }, + { + "name": "minecraft:ocelot_spawn_egg", + "id": 460 + }, + { + "name": "minecraft:ochre_froglight", + "id": -471 + }, + { + "name": "minecraft:ominous_bottle", + "id": 611 + }, + { + "name": "minecraft:ominous_trial_key", + "id": 258 + }, + { + "name": "minecraft:orange_candle", + "id": -414 + }, + { + "name": "minecraft:orange_candle_cake", + "id": -431 + }, + { + "name": "minecraft:orange_carpet", + "id": -597 + }, + { + "name": "minecraft:orange_concrete", + "id": -628 + }, + { + "name": "minecraft:orange_concrete_powder", + "id": -709 + }, + { + "name": "minecraft:orange_dye", + "id": 417 + }, + { + "name": "minecraft:orange_glazed_terracotta", + "id": 221 + }, + { + "name": "minecraft:orange_shulker_box", + "id": -613 + }, + { + "name": "minecraft:orange_stained_glass", + "id": -673 + }, + { + "name": "minecraft:orange_stained_glass_pane", + "id": -643 + }, + { + "name": "minecraft:orange_terracotta", + "id": -724 + }, + { + "name": "minecraft:orange_tulip", + "id": -834 + }, + { + "name": "minecraft:orange_wool", + "id": -557 + }, + { + "name": "minecraft:oxeye_daisy", + "id": -837 + }, + { + "name": "minecraft:oxidized_chiseled_copper", + "id": -763 + }, + { + "name": "minecraft:oxidized_copper", + "id": -343 + }, + { + "name": "minecraft:oxidized_copper_bulb", + "id": -779 + }, + { + "name": "minecraft:oxidized_copper_door", + "id": -787 + }, + { + "name": "minecraft:oxidized_copper_grate", + "id": -771 + }, + { + "name": "minecraft:oxidized_copper_trapdoor", + "id": -795 + }, + { + "name": "minecraft:oxidized_cut_copper", + "id": -350 + }, + { + "name": "minecraft:oxidized_cut_copper_slab", + "id": -364 + }, + { + "name": "minecraft:oxidized_cut_copper_stairs", + "id": -357 + }, + { + "name": "minecraft:oxidized_double_cut_copper_slab", + "id": -371 + }, + { + "name": "minecraft:packed_ice", + "id": 174 + }, + { + "name": "minecraft:packed_mud", + "id": -477 + }, + { + "name": "minecraft:painting", + "id": 364 + }, + { + "name": "minecraft:panda_spawn_egg", + "id": 499 + }, + { + "name": "minecraft:paper", + "id": 394 + }, + { + "name": "minecraft:parrot_spawn_egg", + "id": 488 + }, + { + "name": "minecraft:pearlescent_froglight", + "id": -469 + }, + { + "name": "minecraft:peony", + "id": -867 + }, + { + "name": "minecraft:petrified_oak_slab", + "id": -902 + }, + { + "name": "minecraft:phantom_membrane", + "id": 590 + }, + { + "name": "minecraft:phantom_spawn_egg", + "id": 496 + }, + { + "name": "minecraft:pig_spawn_egg", + "id": 446 + }, + { + "name": "minecraft:piglin_banner_pattern", + "id": 603 + }, + { + "name": "minecraft:piglin_brute_spawn_egg", + "id": 509 + }, + { + "name": "minecraft:piglin_spawn_egg", + "id": 507 + }, + { + "name": "minecraft:pillager_spawn_egg", + "id": 501 + }, + { + "name": "minecraft:pink_candle", + "id": -419 + }, + { + "name": "minecraft:pink_candle_cake", + "id": -436 + }, + { + "name": "minecraft:pink_carpet", + "id": -602 + }, + { + "name": "minecraft:pink_concrete", + "id": -633 + }, + { + "name": "minecraft:pink_concrete_powder", + "id": -714 + }, + { + "name": "minecraft:pink_dye", + "id": 412 + }, + { + "name": "minecraft:pink_glazed_terracotta", + "id": 226 + }, + { + "name": "minecraft:pink_petals", + "id": -549 + }, + { + "name": "minecraft:pink_shulker_box", + "id": -618 + }, + { + "name": "minecraft:pink_stained_glass", + "id": -678 + }, + { + "name": "minecraft:pink_stained_glass_pane", + "id": -648 + }, + { + "name": "minecraft:pink_terracotta", + "id": -729 + }, + { + "name": "minecraft:pink_tulip", + "id": -836 + }, + { + "name": "minecraft:pink_wool", + "id": -566 + }, + { + "name": "minecraft:piston", + "id": 33 + }, + { + "name": "minecraft:piston_arm_collision", + "id": 34 + }, + { + "name": "minecraft:pitcher_crop", + "id": -574 + }, + { + "name": "minecraft:pitcher_plant", + "id": -612 + }, + { + "name": "minecraft:pitcher_pod", + "id": 301 + }, + { + "name": "minecraft:planks", + "id": 739 + }, + { + "name": "minecraft:plenty_pottery_sherd", + "id": 691 + }, + { + "name": "minecraft:podzol", + "id": 243 + }, + { + "name": "minecraft:pointed_dripstone", + "id": -308 + }, + { + "name": "minecraft:poisonous_potato", + "id": 286 + }, + { + "name": "minecraft:polar_bear_spawn_egg", + "id": 482 + }, + { + "name": "minecraft:polished_andesite", + "id": -595 + }, + { + "name": "minecraft:polished_andesite_stairs", + "id": -174 + }, + { + "name": "minecraft:polished_basalt", + "id": -235 + }, + { + "name": "minecraft:polished_blackstone", + "id": -291 + }, + { + "name": "minecraft:polished_blackstone_brick_double_slab", + "id": -285 + }, + { + "name": "minecraft:polished_blackstone_brick_slab", + "id": -284 + }, + { + "name": "minecraft:polished_blackstone_brick_stairs", + "id": -275 + }, + { + "name": "minecraft:polished_blackstone_brick_wall", + "id": -278 + }, + { + "name": "minecraft:polished_blackstone_bricks", + "id": -274 + }, + { + "name": "minecraft:polished_blackstone_button", + "id": -296 + }, + { + "name": "minecraft:polished_blackstone_double_slab", + "id": -294 + }, + { + "name": "minecraft:polished_blackstone_pressure_plate", + "id": -295 + }, + { + "name": "minecraft:polished_blackstone_slab", + "id": -293 + }, + { + "name": "minecraft:polished_blackstone_stairs", + "id": -292 + }, + { + "name": "minecraft:polished_blackstone_wall", + "id": -297 + }, + { + "name": "minecraft:polished_deepslate", + "id": -383 + }, + { + "name": "minecraft:polished_deepslate_double_slab", + "id": -397 + }, + { + "name": "minecraft:polished_deepslate_slab", + "id": -384 + }, + { + "name": "minecraft:polished_deepslate_stairs", + "id": -385 + }, + { + "name": "minecraft:polished_deepslate_wall", + "id": -386 + }, + { + "name": "minecraft:polished_diorite", + "id": -593 + }, + { + "name": "minecraft:polished_diorite_stairs", + "id": -173 + }, + { + "name": "minecraft:polished_granite", + "id": -591 + }, + { + "name": "minecraft:polished_granite_stairs", + "id": -172 + }, + { + "name": "minecraft:polished_tuff", + "id": -748 + }, + { + "name": "minecraft:polished_tuff_double_slab", + "id": -750 + }, + { + "name": "minecraft:polished_tuff_slab", + "id": -749 + }, + { + "name": "minecraft:polished_tuff_stairs", + "id": -751 + }, + { + "name": "minecraft:polished_tuff_wall", + "id": -752 + }, + { + "name": "minecraft:popped_chorus_fruit", + "id": 575 + }, + { + "name": "minecraft:poppy", + "id": 38 + }, + { + "name": "minecraft:porkchop", + "id": 266 + }, + { + "name": "minecraft:portal", + "id": 90 + }, + { + "name": "minecraft:potato", + "id": 284 + }, + { + "name": "minecraft:potatoes", + "id": 142 + }, + { + "name": "minecraft:potion", + "id": 435 + }, + { + "name": "minecraft:powder_snow", + "id": -306 + }, + { + "name": "minecraft:powder_snow_bucket", + "id": 375 + }, + { + "name": "minecraft:powered_comparator", + "id": 150 + }, + { + "name": "minecraft:powered_repeater", + "id": 94 + }, + { + "name": "minecraft:prismarine", + "id": 168 + }, + { + "name": "minecraft:prismarine_bricks_stairs", + "id": -4 + }, + { + "name": "minecraft:prismarine_crystals", + "id": 565 + }, + { + "name": "minecraft:prismarine_shard", + "id": 581 + }, + { + "name": "minecraft:prismarine_stairs", + "id": -2 + }, + { + "name": "minecraft:prize_pottery_sherd", + "id": 692 + }, + { + "name": "minecraft:pufferfish", + "id": 271 + }, + { + "name": "minecraft:pufferfish_bucket", + "id": 374 + }, + { + "name": "minecraft:pufferfish_spawn_egg", + "id": 491 + }, + { + "name": "minecraft:pumpkin", + "id": 86 + }, + { + "name": "minecraft:pumpkin_pie", + "id": 288 + }, + { + "name": "minecraft:pumpkin_seeds", + "id": 296 + }, + { + "name": "minecraft:pumpkin_stem", + "id": 104 + }, + { + "name": "minecraft:purple_candle", + "id": -423 + }, + { + "name": "minecraft:purple_candle_cake", + "id": -440 + }, + { + "name": "minecraft:purple_carpet", + "id": -606 + }, + { + "name": "minecraft:purple_concrete", + "id": -637 + }, + { + "name": "minecraft:purple_concrete_powder", + "id": -718 + }, + { + "name": "minecraft:purple_dye", + "id": 408 + }, + { + "name": "minecraft:purple_glazed_terracotta", + "id": 219 + }, + { + "name": "minecraft:purple_shulker_box", + "id": -622 + }, + { + "name": "minecraft:purple_stained_glass", + "id": -682 + }, + { + "name": "minecraft:purple_stained_glass_pane", + "id": -652 + }, + { + "name": "minecraft:purple_terracotta", + "id": -733 + }, + { + "name": "minecraft:purple_wool", + "id": -564 + }, + { + "name": "minecraft:purpur_block", + "id": 201 + }, + { + "name": "minecraft:purpur_stairs", + "id": 203 + }, + { + "name": "minecraft:quartz", + "id": 540 + }, + { + "name": "minecraft:quartz_block", + "id": 155 + }, + { + "name": "minecraft:quartz_bricks", + "id": -304 + }, + { + "name": "minecraft:quartz_ore", + "id": 153 + }, + { + "name": "minecraft:quartz_slab", + "id": -876 + }, + { + "name": "minecraft:quartz_stairs", + "id": 156 + }, + { + "name": "minecraft:rabbit", + "id": 292 + }, + { + "name": "minecraft:rabbit_foot", + "id": 544 + }, + { + "name": "minecraft:rabbit_hide", + "id": 545 + }, + { + "name": "minecraft:rabbit_spawn_egg", + "id": 468 + }, + { + "name": "minecraft:rabbit_stew", + "id": 294 + }, + { + "name": "minecraft:rail", + "id": 66 + }, + { + "name": "minecraft:raiser_armor_trim_smithing_template", + "id": 713 + }, + { + "name": "minecraft:rapid_fertilizer", + "id": 616 + }, + { + "name": "minecraft:ravager_spawn_egg", + "id": 503 + }, + { + "name": "minecraft:raw_copper", + "id": 523 + }, + { + "name": "minecraft:raw_copper_block", + "id": -452 + }, + { + "name": "minecraft:raw_gold", + "id": 522 + }, + { + "name": "minecraft:raw_gold_block", + "id": -453 + }, + { + "name": "minecraft:raw_iron", + "id": 521 + }, + { + "name": "minecraft:raw_iron_block", + "id": -451 + }, + { + "name": "minecraft:recovery_compass", + "id": 665 + }, + { + "name": "minecraft:red_candle", + "id": -427 + }, + { + "name": "minecraft:red_candle_cake", + "id": -444 + }, + { + "name": "minecraft:red_carpet", + "id": -610 + }, + { + "name": "minecraft:red_concrete", + "id": -641 + }, + { + "name": "minecraft:red_concrete_powder", + "id": -722 + }, + { + "name": "minecraft:red_dye", + "id": 404 + }, + { + "name": "minecraft:red_flower", + "id": 737 + }, + { + "name": "minecraft:red_glazed_terracotta", + "id": 234 + }, + { + "name": "minecraft:red_mushroom", + "id": 40 + }, + { + "name": "minecraft:red_mushroom_block", + "id": 100 + }, + { + "name": "minecraft:red_nether_brick", + "id": 215 + }, + { + "name": "minecraft:red_nether_brick_stairs", + "id": -184 + }, + { + "name": "minecraft:red_sandstone", + "id": 179 + }, + { + "name": "minecraft:red_sandstone_stairs", + "id": 180 + }, + { + "name": "minecraft:red_shulker_box", + "id": -626 + }, + { + "name": "minecraft:red_stained_glass", + "id": -686 + }, + { + "name": "minecraft:red_stained_glass_pane", + "id": -656 + }, + { + "name": "minecraft:red_terracotta", + "id": -737 + }, + { + "name": "minecraft:red_tulip", + "id": -833 + }, + { + "name": "minecraft:red_wool", + "id": -556 + }, + { + "name": "minecraft:redstone", + "id": 380 + }, + { + "name": "minecraft:redstone_block", + "id": 152 + }, + { + "name": "minecraft:redstone_lamp", + "id": 123 + }, + { + "name": "minecraft:redstone_ore", + "id": 73 + }, + { + "name": "minecraft:redstone_torch", + "id": 76 + }, + { + "name": "minecraft:redstone_wire", + "id": 55 + }, + { + "name": "minecraft:reinforced_deepslate", + "id": -466 + }, + { + "name": "minecraft:repeater", + "id": 427 + }, + { + "name": "minecraft:repeating_command_block", + "id": 188 + }, + { + "name": "minecraft:reserved6", + "id": 255 + }, + { + "name": "minecraft:respawn_anchor", + "id": -272 + }, + { + "name": "minecraft:rib_armor_trim_smithing_template", + "id": 709 + }, + { + "name": "minecraft:rose_bush", + "id": -866 + }, + { + "name": "minecraft:rotten_flesh", + "id": 281 + }, + { + "name": "minecraft:saddle", + "id": 378 + }, + { + "name": "minecraft:salmon", + "id": 269 + }, + { + "name": "minecraft:salmon_bucket", + "id": 372 + }, + { + "name": "minecraft:salmon_spawn_egg", + "id": 492 + }, + { + "name": "minecraft:sand", + "id": 12 + }, + { + "name": "minecraft:sandstone", + "id": 24 + }, + { + "name": "minecraft:sandstone_slab", + "id": -872 + }, + { + "name": "minecraft:sandstone_stairs", + "id": 128 + }, + { + "name": "minecraft:sapling", + "id": 732 + }, + { + "name": "minecraft:scaffolding", + "id": -165 + }, + { + "name": "minecraft:scrape_pottery_sherd", + "id": 693 + }, + { + "name": "minecraft:sculk", + "id": -458 + }, + { + "name": "minecraft:sculk_catalyst", + "id": -460 + }, + { + "name": "minecraft:sculk_sensor", + "id": -307 + }, + { + "name": "minecraft:sculk_shrieker", + "id": -461 + }, + { + "name": "minecraft:sculk_vein", + "id": -459 + }, + { + "name": "minecraft:sea_lantern", + "id": 169 + }, + { + "name": "minecraft:sea_pickle", + "id": -156 + }, + { + "name": "minecraft:seagrass", + "id": -130 + }, + { + "name": "minecraft:sentry_armor_trim_smithing_template", + "id": 700 + }, + { + "name": "minecraft:shaper_armor_trim_smithing_template", + "id": 714 + }, + { + "name": "minecraft:sheaf_pottery_sherd", + "id": 694 + }, + { + "name": "minecraft:shears", + "id": 429 + }, + { + "name": "minecraft:sheep_spawn_egg", + "id": 447 + }, + { + "name": "minecraft:shelter_pottery_sherd", + "id": 695 + }, + { + "name": "minecraft:shield", + "id": 362 + }, + { + "name": "minecraft:short_grass", + "id": 31 + }, + { + "name": "minecraft:shroomlight", + "id": -230 + }, + { + "name": "minecraft:shulker_box", + "id": 747 + }, + { + "name": "minecraft:shulker_shell", + "id": 582 + }, + { + "name": "minecraft:shulker_spawn_egg", + "id": 479 + }, + { + "name": "minecraft:silence_armor_trim_smithing_template", + "id": 711 + }, + { + "name": "minecraft:silver_glazed_terracotta", + "id": 228 + }, + { + "name": "minecraft:silverfish_spawn_egg", + "id": 452 + }, + { + "name": "minecraft:skeleton_horse_spawn_egg", + "id": 477 + }, + { + "name": "minecraft:skeleton_spawn_egg", + "id": 453 + }, + { + "name": "minecraft:skull", + "id": 532 + }, + { + "name": "minecraft:skull_banner_pattern", + "id": 599 + }, + { + "name": "minecraft:skull_pottery_sherd", + "id": 696 + }, + { + "name": "minecraft:slime", + "id": 165 + }, + { + "name": "minecraft:slime_ball", + "id": 396 + }, + { + "name": "minecraft:slime_spawn_egg", + "id": 454 + }, + { + "name": "minecraft:small_amethyst_bud", + "id": -332 + }, + { + "name": "minecraft:small_dripleaf_block", + "id": -336 + }, + { + "name": "minecraft:smithing_table", + "id": -202 + }, + { + "name": "minecraft:smoker", + "id": -198 + }, + { + "name": "minecraft:smooth_basalt", + "id": -377 + }, + { + "name": "minecraft:smooth_quartz_stairs", + "id": -185 + }, + { + "name": "minecraft:smooth_red_sandstone_stairs", + "id": -176 + }, + { + "name": "minecraft:smooth_sandstone_stairs", + "id": -177 + }, + { + "name": "minecraft:smooth_stone", + "id": -183 + }, + { + "name": "minecraft:smooth_stone_slab", + "id": 44 + }, + { + "name": "minecraft:sniffer_egg", + "id": -596 + }, + { + "name": "minecraft:sniffer_spawn_egg", + "id": 510 + }, + { + "name": "minecraft:snort_pottery_sherd", + "id": 697 + }, + { + "name": "minecraft:snout_armor_trim_smithing_template", + "id": 708 + }, + { + "name": "minecraft:snow", + "id": 80 + }, + { + "name": "minecraft:snow_golem_spawn_egg", + "id": 516 + }, + { + "name": "minecraft:snow_layer", + "id": 78 + }, + { + "name": "minecraft:snowball", + "id": 381 + }, + { + "name": "minecraft:soul_campfire", + "id": 641 + }, + { + "name": "minecraft:soul_fire", + "id": -237 + }, + { + "name": "minecraft:soul_lantern", + "id": -269 + }, + { + "name": "minecraft:soul_sand", + "id": 88 + }, + { + "name": "minecraft:soul_soil", + "id": -236 + }, + { + "name": "minecraft:soul_torch", + "id": -268 + }, + { + "name": "minecraft:sparkler", + "id": 619 + }, + { + "name": "minecraft:spawn_egg", + "id": 757 + }, + { + "name": "minecraft:spider_eye", + "id": 282 + }, + { + "name": "minecraft:spider_spawn_egg", + "id": 455 + }, + { + "name": "minecraft:spire_armor_trim_smithing_template", + "id": 710 + }, + { + "name": "minecraft:splash_potion", + "id": 577 + }, + { + "name": "minecraft:sponge", + "id": 19 + }, + { + "name": "minecraft:spore_blossom", + "id": -321 + }, + { + "name": "minecraft:spruce_boat", + "id": 386 + }, + { + "name": "minecraft:spruce_button", + "id": -144 + }, + { + "name": "minecraft:spruce_chest_boat", + "id": 660 + }, + { + "name": "minecraft:spruce_door", + "id": 569 + }, + { + "name": "minecraft:spruce_double_slab", + "id": -809 + }, + { + "name": "minecraft:spruce_fence", + "id": -579 + }, + { + "name": "minecraft:spruce_fence_gate", + "id": 183 + }, + { + "name": "minecraft:spruce_hanging_sign", + "id": -501 + }, + { + "name": "minecraft:spruce_leaves", + "id": -800 + }, + { + "name": "minecraft:spruce_log", + "id": -569 + }, + { + "name": "minecraft:spruce_planks", + "id": -739 + }, + { + "name": "minecraft:spruce_pressure_plate", + "id": -154 + }, + { + "name": "minecraft:spruce_sapling", + "id": -825 + }, + { + "name": "minecraft:spruce_sign", + "id": 592 + }, + { + "name": "minecraft:spruce_slab", + "id": -804 + }, + { + "name": "minecraft:spruce_stairs", + "id": 134 + }, + { + "name": "minecraft:spruce_standing_sign", + "id": -181 + }, + { + "name": "minecraft:spruce_trapdoor", + "id": -149 + }, + { + "name": "minecraft:spruce_wall_sign", + "id": -182 + }, + { + "name": "minecraft:spruce_wood", + "id": -814 + }, + { + "name": "minecraft:spyglass", + "id": 644 + }, + { + "name": "minecraft:squid_spawn_egg", + "id": 459 + }, + { + "name": "minecraft:stained_glass", + "id": 745 + }, + { + "name": "minecraft:stained_glass_pane", + "id": 746 + }, + { + "name": "minecraft:stained_hardened_clay", + "id": 719 + }, + { + "name": "minecraft:standing_banner", + "id": 176 + }, + { + "name": "minecraft:standing_sign", + "id": 63 + }, + { + "name": "minecraft:stick", + "id": 327 + }, + { + "name": "minecraft:sticky_piston", + "id": 29 + }, + { + "name": "minecraft:sticky_piston_arm_collision", + "id": -217 + }, + { + "name": "minecraft:stone", + "id": 1 + }, + { + "name": "minecraft:stone_axe", + "id": 321 + }, + { + "name": "minecraft:stone_block_slab", + "id": 736 + }, + { + "name": "minecraft:stone_block_slab2", + "id": 182 + }, + { + "name": "minecraft:stone_block_slab3", + "id": -162 + }, + { + "name": "minecraft:stone_block_slab4", + "id": -166 + }, + { + "name": "minecraft:stone_brick_slab", + "id": -875 + }, + { + "name": "minecraft:stone_brick_stairs", + "id": 109 + }, + { + "name": "minecraft:stone_button", + "id": 77 + }, + { + "name": "minecraft:stone_hoe", + "id": 337 + }, + { + "name": "minecraft:stone_pickaxe", + "id": 320 + }, + { + "name": "minecraft:stone_pressure_plate", + "id": 70 + }, + { + "name": "minecraft:stone_shovel", + "id": 319 + }, + { + "name": "minecraft:stone_stairs", + "id": 67 + }, + { + "name": "minecraft:stone_sword", + "id": 318 + }, + { + "name": "minecraft:stonebrick", + "id": 98 + }, + { + "name": "minecraft:stonecutter", + "id": 245 + }, + { + "name": "minecraft:stonecutter_block", + "id": -197 + }, + { + "name": "minecraft:stray_spawn_egg", + "id": 471 + }, + { + "name": "minecraft:strider_spawn_egg", + "id": 505 + }, + { + "name": "minecraft:string", + "id": 333 + }, + { + "name": "minecraft:stripped_acacia_log", + "id": -8 + }, + { + "name": "minecraft:stripped_acacia_wood", + "id": -823 + }, + { + "name": "minecraft:stripped_bamboo_block", + "id": -528 + }, + { + "name": "minecraft:stripped_birch_log", + "id": -6 + }, + { + "name": "minecraft:stripped_birch_wood", + "id": -821 + }, + { + "name": "minecraft:stripped_cherry_log", + "id": -535 + }, + { + "name": "minecraft:stripped_cherry_wood", + "id": -545 + }, + { + "name": "minecraft:stripped_crimson_hyphae", + "id": -300 + }, + { + "name": "minecraft:stripped_crimson_stem", + "id": -240 + }, + { + "name": "minecraft:stripped_dark_oak_log", + "id": -9 + }, + { + "name": "minecraft:stripped_dark_oak_wood", + "id": -824 + }, + { + "name": "minecraft:stripped_jungle_log", + "id": -7 + }, + { + "name": "minecraft:stripped_jungle_wood", + "id": -822 + }, + { + "name": "minecraft:stripped_mangrove_log", + "id": -485 + }, + { + "name": "minecraft:stripped_mangrove_wood", + "id": -498 + }, + { + "name": "minecraft:stripped_oak_log", + "id": -10 + }, + { + "name": "minecraft:stripped_oak_wood", + "id": -819 + }, + { + "name": "minecraft:stripped_spruce_log", + "id": -5 + }, + { + "name": "minecraft:stripped_spruce_wood", + "id": -820 + }, + { + "name": "minecraft:stripped_warped_hyphae", + "id": -301 + }, + { + "name": "minecraft:stripped_warped_stem", + "id": -241 + }, + { + "name": "minecraft:structure_block", + "id": 252 + }, + { + "name": "minecraft:structure_void", + "id": 217 + }, + { + "name": "minecraft:sugar", + "id": 424 + }, + { + "name": "minecraft:sugar_cane", + "id": 393 + }, + { + "name": "minecraft:sunflower", + "id": 175 + }, + { + "name": "minecraft:suspicious_gravel", + "id": -573 + }, + { + "name": "minecraft:suspicious_sand", + "id": -529 + }, + { + "name": "minecraft:suspicious_stew", + "id": 608 + }, + { + "name": "minecraft:sweet_berries", + "id": 291 + }, + { + "name": "minecraft:sweet_berry_bush", + "id": -207 + }, + { + "name": "minecraft:tadpole_bucket", + "id": 649 + }, + { + "name": "minecraft:tadpole_spawn_egg", + "id": 648 + }, + { + "name": "minecraft:tall_grass", + "id": -864 + }, + { + "name": "minecraft:tallgrass", + "id": 741 + }, + { + "name": "minecraft:target", + "id": -239 + }, + { + "name": "minecraft:tide_armor_trim_smithing_template", + "id": 707 + }, + { + "name": "minecraft:tinted_glass", + "id": -334 + }, + { + "name": "minecraft:tnt", + "id": 46 + }, + { + "name": "minecraft:tnt_minecart", + "id": 541 + }, + { + "name": "minecraft:torch", + "id": 50 + }, + { + "name": "minecraft:torchflower", + "id": -568 + }, + { + "name": "minecraft:torchflower_crop", + "id": -567 + }, + { + "name": "minecraft:torchflower_seeds", + "id": 300 + }, + { + "name": "minecraft:totem_of_undying", + "id": 584 + }, + { + "name": "minecraft:trader_llama_spawn_egg", + "id": 667 + }, + { + "name": "minecraft:trapdoor", + "id": 96 + }, + { + "name": "minecraft:trapped_chest", + "id": 146 + }, + { + "name": "minecraft:trial_key", + "id": 259 + }, + { + "name": "minecraft:trial_spawner", + "id": -315 + }, + { + "name": "minecraft:trident", + "id": 562 + }, + { + "name": "minecraft:trip_wire", + "id": 132 + }, + { + "name": "minecraft:tripwire_hook", + "id": 131 + }, + { + "name": "minecraft:tropical_fish", + "id": 270 + }, + { + "name": "minecraft:tropical_fish_bucket", + "id": 373 + }, + { + "name": "minecraft:tropical_fish_spawn_egg", + "id": 489 + }, + { + "name": "minecraft:tube_coral", + "id": -131 + }, + { + "name": "minecraft:tube_coral_block", + "id": -132 + }, + { + "name": "minecraft:tube_coral_fan", + "id": -133 + }, + { + "name": "minecraft:tuff", + "id": -333 + }, + { + "name": "minecraft:tuff_brick_double_slab", + "id": -756 + }, + { + "name": "minecraft:tuff_brick_slab", + "id": -755 + }, + { + "name": "minecraft:tuff_brick_stairs", + "id": -757 + }, + { + "name": "minecraft:tuff_brick_wall", + "id": -758 + }, + { + "name": "minecraft:tuff_bricks", + "id": -754 + }, + { + "name": "minecraft:tuff_double_slab", + "id": -745 + }, + { + "name": "minecraft:tuff_slab", + "id": -744 + }, + { + "name": "minecraft:tuff_stairs", + "id": -746 + }, + { + "name": "minecraft:tuff_wall", + "id": -747 + }, + { + "name": "minecraft:turtle_egg", + "id": -159 + }, + { + "name": "minecraft:turtle_helmet", + "id": 589 + }, + { + "name": "minecraft:turtle_scute", + "id": 588 + }, + { + "name": "minecraft:turtle_spawn_egg", + "id": 495 + }, + { + "name": "minecraft:twisting_vines", + "id": -287 + }, + { + "name": "minecraft:underwater_torch", + "id": 239 + }, + { + "name": "minecraft:undyed_shulker_box", + "id": 205 + }, + { + "name": "minecraft:unknown", + "id": -305 + }, + { + "name": "minecraft:unlit_redstone_torch", + "id": 75 + }, + { + "name": "minecraft:unpowered_comparator", + "id": 149 + }, + { + "name": "minecraft:unpowered_repeater", + "id": 93 + }, + { + "name": "minecraft:vault", + "id": -314 + }, + { + "name": "minecraft:verdant_froglight", + "id": -470 + }, + { + "name": "minecraft:vex_armor_trim_smithing_template", + "id": 706 + }, + { + "name": "minecraft:vex_spawn_egg", + "id": 486 + }, + { + "name": "minecraft:villager_spawn_egg", + "id": 458 + }, + { + "name": "minecraft:vindicator_spawn_egg", + "id": 484 + }, + { + "name": "minecraft:vine", + "id": 106 + }, + { + "name": "minecraft:wall_banner", + "id": 177 + }, + { + "name": "minecraft:wall_sign", + "id": 68 + }, + { + "name": "minecraft:wandering_trader_spawn_egg", + "id": 502 + }, + { + "name": "minecraft:ward_armor_trim_smithing_template", + "id": 704 + }, + { + "name": "minecraft:warden_spawn_egg", + "id": 651 + }, + { + "name": "minecraft:warped_button", + "id": -261 + }, + { + "name": "minecraft:warped_door", + "id": 636 + }, + { + "name": "minecraft:warped_double_slab", + "id": -267 + }, + { + "name": "minecraft:warped_fence", + "id": -257 + }, + { + "name": "minecraft:warped_fence_gate", + "id": -259 + }, + { + "name": "minecraft:warped_fungus", + "id": -229 + }, + { + "name": "minecraft:warped_fungus_on_a_stick", + "id": 637 + }, + { + "name": "minecraft:warped_hanging_sign", + "id": -507 + }, + { + "name": "minecraft:warped_hyphae", + "id": -298 + }, + { + "name": "minecraft:warped_nylium", + "id": -233 + }, + { + "name": "minecraft:warped_planks", + "id": -243 + }, + { + "name": "minecraft:warped_pressure_plate", + "id": -263 + }, + { + "name": "minecraft:warped_roots", + "id": -224 + }, + { + "name": "minecraft:warped_sign", + "id": 634 + }, + { + "name": "minecraft:warped_slab", + "id": -265 + }, + { + "name": "minecraft:warped_stairs", + "id": -255 + }, + { + "name": "minecraft:warped_standing_sign", + "id": -251 + }, + { + "name": "minecraft:warped_stem", + "id": -226 + }, + { + "name": "minecraft:warped_trapdoor", + "id": -247 + }, + { + "name": "minecraft:warped_wall_sign", + "id": -253 + }, + { + "name": "minecraft:warped_wart_block", + "id": -227 + }, + { + "name": "minecraft:water", + "id": 9 + }, + { + "name": "minecraft:water_bucket", + "id": 369 + }, + { + "name": "minecraft:waterlily", + "id": 111 + }, + { + "name": "minecraft:waxed_chiseled_copper", + "id": -764 + }, + { + "name": "minecraft:waxed_copper", + "id": -344 + }, + { + "name": "minecraft:waxed_copper_bulb", + "id": -780 + }, + { + "name": "minecraft:waxed_copper_door", + "id": -788 + }, + { + "name": "minecraft:waxed_copper_grate", + "id": -772 + }, + { + "name": "minecraft:waxed_copper_trapdoor", + "id": -796 + }, + { + "name": "minecraft:waxed_cut_copper", + "id": -351 + }, + { + "name": "minecraft:waxed_cut_copper_slab", + "id": -365 + }, + { + "name": "minecraft:waxed_cut_copper_stairs", + "id": -358 + }, + { + "name": "minecraft:waxed_double_cut_copper_slab", + "id": -372 + }, + { + "name": "minecraft:waxed_exposed_chiseled_copper", + "id": -765 + }, + { + "name": "minecraft:waxed_exposed_copper", + "id": -345 + }, + { + "name": "minecraft:waxed_exposed_copper_bulb", + "id": -781 + }, + { + "name": "minecraft:waxed_exposed_copper_door", + "id": -789 + }, + { + "name": "minecraft:waxed_exposed_copper_grate", + "id": -773 + }, + { + "name": "minecraft:waxed_exposed_copper_trapdoor", + "id": -797 + }, + { + "name": "minecraft:waxed_exposed_cut_copper", + "id": -352 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_slab", + "id": -366 + }, + { + "name": "minecraft:waxed_exposed_cut_copper_stairs", + "id": -359 + }, + { + "name": "minecraft:waxed_exposed_double_cut_copper_slab", + "id": -373 + }, + { + "name": "minecraft:waxed_oxidized_chiseled_copper", + "id": -766 + }, + { + "name": "minecraft:waxed_oxidized_copper", + "id": -446 + }, + { + "name": "minecraft:waxed_oxidized_copper_bulb", + "id": -783 + }, + { + "name": "minecraft:waxed_oxidized_copper_door", + "id": -791 + }, + { + "name": "minecraft:waxed_oxidized_copper_grate", + "id": -775 + }, + { + "name": "minecraft:waxed_oxidized_copper_trapdoor", + "id": -799 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper", + "id": -447 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_slab", + "id": -449 + }, + { + "name": "minecraft:waxed_oxidized_cut_copper_stairs", + "id": -448 + }, + { + "name": "minecraft:waxed_oxidized_double_cut_copper_slab", + "id": -450 + }, + { + "name": "minecraft:waxed_weathered_chiseled_copper", + "id": -767 + }, + { + "name": "minecraft:waxed_weathered_copper", + "id": -346 + }, + { + "name": "minecraft:waxed_weathered_copper_bulb", + "id": -782 + }, + { + "name": "minecraft:waxed_weathered_copper_door", + "id": -790 + }, + { + "name": "minecraft:waxed_weathered_copper_grate", + "id": -774 + }, + { + "name": "minecraft:waxed_weathered_copper_trapdoor", + "id": -798 + }, + { + "name": "minecraft:waxed_weathered_cut_copper", + "id": -353 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_slab", + "id": -367 + }, + { + "name": "minecraft:waxed_weathered_cut_copper_stairs", + "id": -360 + }, + { + "name": "minecraft:waxed_weathered_double_cut_copper_slab", + "id": -374 + }, + { + "name": "minecraft:wayfinder_armor_trim_smithing_template", + "id": 712 + }, + { + "name": "minecraft:weathered_chiseled_copper", + "id": -762 + }, + { + "name": "minecraft:weathered_copper", + "id": -342 + }, + { + "name": "minecraft:weathered_copper_bulb", + "id": -778 + }, + { + "name": "minecraft:weathered_copper_door", + "id": -786 + }, + { + "name": "minecraft:weathered_copper_grate", + "id": -770 + }, + { + "name": "minecraft:weathered_copper_trapdoor", + "id": -794 + }, + { + "name": "minecraft:weathered_cut_copper", + "id": -349 + }, + { + "name": "minecraft:weathered_cut_copper_slab", + "id": -363 + }, + { + "name": "minecraft:weathered_cut_copper_stairs", + "id": -356 + }, + { + "name": "minecraft:weathered_double_cut_copper_slab", + "id": -370 + }, + { + "name": "minecraft:web", + "id": 30 + }, + { + "name": "minecraft:weeping_vines", + "id": -231 + }, + { + "name": "minecraft:wheat", + "id": 341 + }, + { + "name": "minecraft:wheat_seeds", + "id": 295 + }, + { + "name": "minecraft:white_candle", + "id": -413 + }, + { + "name": "minecraft:white_candle_cake", + "id": -430 + }, + { + "name": "minecraft:white_carpet", + "id": 171 + }, + { + "name": "minecraft:white_concrete", + "id": 236 + }, + { + "name": "minecraft:white_concrete_powder", + "id": 237 + }, + { + "name": "minecraft:white_dye", + "id": 418 + }, + { + "name": "minecraft:white_glazed_terracotta", + "id": 220 + }, + { + "name": "minecraft:white_shulker_box", + "id": 218 + }, + { + "name": "minecraft:white_stained_glass", + "id": 241 + }, + { + "name": "minecraft:white_stained_glass_pane", + "id": 160 + }, + { + "name": "minecraft:white_terracotta", + "id": 159 + }, + { + "name": "minecraft:white_tulip", + "id": -835 + }, + { + "name": "minecraft:white_wool", + "id": 35 + }, + { + "name": "minecraft:wild_armor_trim_smithing_template", + "id": 703 + }, + { + "name": "minecraft:wind_charge", + "id": 260 + }, + { + "name": "minecraft:witch_spawn_egg", + "id": 461 + }, + { + "name": "minecraft:wither_rose", + "id": -216 + }, + { + "name": "minecraft:wither_skeleton_spawn_egg", + "id": 474 + }, + { + "name": "minecraft:wither_spawn_egg", + "id": 518 + }, + { + "name": "minecraft:wolf_armor", + "id": 722 + }, + { + "name": "minecraft:wolf_spawn_egg", + "id": 448 + }, + { + "name": "minecraft:wood", + "id": 748 + }, + { + "name": "minecraft:wooden_axe", + "id": 317 + }, + { + "name": "minecraft:wooden_button", + "id": 143 + }, + { + "name": "minecraft:wooden_door", + "id": 366 + }, + { + "name": "minecraft:wooden_hoe", + "id": 336 + }, + { + "name": "minecraft:wooden_pickaxe", + "id": 316 + }, + { + "name": "minecraft:wooden_pressure_plate", + "id": 72 + }, + { + "name": "minecraft:wooden_shovel", + "id": 315 + }, + { + "name": "minecraft:wooden_slab", + "id": 735 + }, + { + "name": "minecraft:wooden_sword", + "id": 314 + }, + { + "name": "minecraft:wool", + "id": 725 + }, + { + "name": "minecraft:writable_book", + "id": 526 + }, + { + "name": "minecraft:written_book", + "id": 527 + }, + { + "name": "minecraft:yellow_candle", + "id": -417 + }, + { + "name": "minecraft:yellow_candle_cake", + "id": -434 + }, + { + "name": "minecraft:yellow_carpet", + "id": -600 + }, + { + "name": "minecraft:yellow_concrete", + "id": -631 + }, + { + "name": "minecraft:yellow_concrete_powder", + "id": -712 + }, + { + "name": "minecraft:yellow_dye", + "id": 414 + }, + { + "name": "minecraft:yellow_flower", + "id": 37 + }, + { + "name": "minecraft:yellow_glazed_terracotta", + "id": 224 + }, + { + "name": "minecraft:yellow_shulker_box", + "id": -616 + }, + { + "name": "minecraft:yellow_stained_glass", + "id": -676 + }, + { + "name": "minecraft:yellow_stained_glass_pane", + "id": -646 + }, + { + "name": "minecraft:yellow_terracotta", + "id": -727 + }, + { + "name": "minecraft:yellow_wool", + "id": -558 + }, + { + "name": "minecraft:zoglin_spawn_egg", + "id": 508 + }, + { + "name": "minecraft:zombie_horse_spawn_egg", + "id": 478 + }, + { + "name": "minecraft:zombie_pigman_spawn_egg", + "id": 457 + }, + { + "name": "minecraft:zombie_spawn_egg", + "id": 456 + }, + { + "name": "minecraft:zombie_villager_spawn_egg", + "id": 487 + } +] \ No newline at end of file diff --git a/src/pocketmine/resources/vanilla_OLD/.gitattributes b/src/pocketmine/resources/vanilla_OLD/.gitattributes new file mode 100644 index 00000000..e106df7d --- /dev/null +++ b/src/pocketmine/resources/vanilla_OLD/.gitattributes @@ -0,0 +1,30 @@ +# Auto detect text files and perform LF normalization +* text=auto +*.php text eol=lf +*.sh text eol=lf +*.txt text eol=lf +*.properties text eol=lf +*.json text eol=lf +*.bat text eol=crlf +*.cmd text eol=crlf +*.ps1 text eol=crlf + +# Custom for Visual Studio +*.cs diff=csharp +*.sln merge=union +*.csproj merge=union +*.vbproj merge=union +*.fsproj merge=union +*.dbproj merge=union + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/src/pocketmine/resources/vanilla/.minify_json.php b/src/pocketmine/resources/vanilla_OLD/.minify_json.php similarity index 100% rename from src/pocketmine/resources/vanilla/.minify_json.php rename to src/pocketmine/resources/vanilla_OLD/.minify_json.php diff --git a/src/pocketmine/resources/vanilla/LICENSE b/src/pocketmine/resources/vanilla_OLD/LICENSE similarity index 100% rename from src/pocketmine/resources/vanilla/LICENSE rename to src/pocketmine/resources/vanilla_OLD/LICENSE diff --git a/src/pocketmine/resources/vanilla/README.md b/src/pocketmine/resources/vanilla_OLD/README.md similarity index 100% rename from src/pocketmine/resources/vanilla/README.md rename to src/pocketmine/resources/vanilla_OLD/README.md diff --git a/src/pocketmine/resources/vanilla/banner_patterns.json b/src/pocketmine/resources/vanilla_OLD/banner_patterns.json similarity index 100% rename from src/pocketmine/resources/vanilla/banner_patterns.json rename to src/pocketmine/resources/vanilla_OLD/banner_patterns.json diff --git a/src/pocketmine/resources/vanilla/biome_definitions.nbt b/src/pocketmine/resources/vanilla_OLD/biome_definitions.nbt similarity index 100% rename from src/pocketmine/resources/vanilla/biome_definitions.nbt rename to src/pocketmine/resources/vanilla_OLD/biome_definitions.nbt diff --git a/src/pocketmine/resources/vanilla/biome_id_map.json b/src/pocketmine/resources/vanilla_OLD/biome_id_map.json similarity index 100% rename from src/pocketmine/resources/vanilla/biome_id_map.json rename to src/pocketmine/resources/vanilla_OLD/biome_id_map.json diff --git a/src/pocketmine/resources/vanilla/block_id_map.json b/src/pocketmine/resources/vanilla_OLD/block_id_map.json similarity index 100% rename from src/pocketmine/resources/vanilla/block_id_map.json rename to src/pocketmine/resources/vanilla_OLD/block_id_map.json diff --git a/src/pocketmine/resources/vanilla/canonical_block_states.nbt b/src/pocketmine/resources/vanilla_OLD/canonical_block_states.nbt similarity index 100% rename from src/pocketmine/resources/vanilla/canonical_block_states.nbt rename to src/pocketmine/resources/vanilla_OLD/canonical_block_states.nbt diff --git a/src/pocketmine/resources/vanilla/composer.json b/src/pocketmine/resources/vanilla_OLD/composer.json similarity index 100% rename from src/pocketmine/resources/vanilla/composer.json rename to src/pocketmine/resources/vanilla_OLD/composer.json diff --git a/src/pocketmine/resources/vanilla/creativeitems.json b/src/pocketmine/resources/vanilla_OLD/creativeitems.json similarity index 100% rename from src/pocketmine/resources/vanilla/creativeitems.json rename to src/pocketmine/resources/vanilla_OLD/creativeitems.json diff --git a/src/pocketmine/resources/vanilla/entity_id_map.json b/src/pocketmine/resources/vanilla_OLD/entity_id_map.json similarity index 100% rename from src/pocketmine/resources/vanilla/entity_id_map.json rename to src/pocketmine/resources/vanilla_OLD/entity_id_map.json diff --git a/src/pocketmine/resources/vanilla/entity_identifiers.nbt b/src/pocketmine/resources/vanilla_OLD/entity_identifiers.nbt similarity index 100% rename from src/pocketmine/resources/vanilla/entity_identifiers.nbt rename to src/pocketmine/resources/vanilla_OLD/entity_identifiers.nbt diff --git a/src/pocketmine/resources/vanilla/item_id_map.json b/src/pocketmine/resources/vanilla_OLD/item_id_map.json similarity index 100% rename from src/pocketmine/resources/vanilla/item_id_map.json rename to src/pocketmine/resources/vanilla_OLD/item_id_map.json diff --git a/src/pocketmine/resources/vanilla/level_sound_id_map.json b/src/pocketmine/resources/vanilla_OLD/level_sound_id_map.json similarity index 100% rename from src/pocketmine/resources/vanilla/level_sound_id_map.json rename to src/pocketmine/resources/vanilla_OLD/level_sound_id_map.json diff --git a/src/pocketmine/resources/vanilla/particle_id_map.json b/src/pocketmine/resources/vanilla_OLD/particle_id_map.json similarity index 100% rename from src/pocketmine/resources/vanilla/particle_id_map.json rename to src/pocketmine/resources/vanilla_OLD/particle_id_map.json diff --git a/src/pocketmine/resources/vanilla/r12_block_states.json b/src/pocketmine/resources/vanilla_OLD/r12_block_states.json similarity index 100% rename from src/pocketmine/resources/vanilla/r12_block_states.json rename to src/pocketmine/resources/vanilla_OLD/r12_block_states.json diff --git a/src/pocketmine/resources/vanilla/r12_to_current_block_map.bin b/src/pocketmine/resources/vanilla_OLD/r12_to_current_block_map.bin similarity index 100% rename from src/pocketmine/resources/vanilla/r12_to_current_block_map.bin rename to src/pocketmine/resources/vanilla_OLD/r12_to_current_block_map.bin diff --git a/src/pocketmine/resources/vanilla/r16_to_current_item_map.json b/src/pocketmine/resources/vanilla_OLD/r16_to_current_item_map.json similarity index 100% rename from src/pocketmine/resources/vanilla/r16_to_current_item_map.json rename to src/pocketmine/resources/vanilla_OLD/r16_to_current_item_map.json diff --git a/src/pocketmine/resources/vanilla_OLD/recipes.json b/src/pocketmine/resources/vanilla_OLD/recipes.json new file mode 100644 index 00000000..0647aad0 --- /dev/null +++ b/src/pocketmine/resources/vanilla_OLD/recipes.json @@ -0,0 +1,49988 @@ +{ + "potion_container_change": [ + { + "ingredient": { + "id": 289 + }, + "input_item_id": 373, + "output_item_id": 438 + }, + { + "ingredient": { + "id": 437 + }, + "input_item_id": 438, + "output_item_id": 441 + } + ], + "potion_type": [ + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 12 + }, + "output": { + "id": 373, + "damage": 13 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 14 + }, + "output": { + "id": 373, + "damage": 15 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 17 + }, + "output": { + "id": 373, + "damage": 18 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 19 + }, + "output": { + "id": 373, + "damage": 20 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 25 + }, + "output": { + "id": 373, + "damage": 26 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 28 + }, + "output": { + "id": 373, + "damage": 29 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 31 + }, + "output": { + "id": 373, + "damage": 32 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 34 + }, + "output": { + "id": 373, + "damage": 35 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 37 + }, + "output": { + "id": 373, + "damage": 38 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 40 + }, + "output": { + "id": 373, + "damage": 41 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 5 + }, + "output": { + "id": 373, + "damage": 6 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 7 + }, + "output": { + "id": 373, + "damage": 8 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373, + "damage": 9 + }, + "output": { + "id": 373, + "damage": 10 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 1 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 12 + }, + "output": { + "id": 438, + "damage": 13 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 14 + }, + "output": { + "id": 438, + "damage": 15 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 17 + }, + "output": { + "id": 438, + "damage": 18 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 19 + }, + "output": { + "id": 438, + "damage": 20 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 25 + }, + "output": { + "id": 438, + "damage": 26 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 28 + }, + "output": { + "id": 438, + "damage": 29 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 31 + }, + "output": { + "id": 438, + "damage": 32 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 34 + }, + "output": { + "id": 438, + "damage": 35 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 37 + }, + "output": { + "id": 438, + "damage": 38 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 40 + }, + "output": { + "id": 438, + "damage": 41 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 5 + }, + "output": { + "id": 438, + "damage": 6 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 7 + }, + "output": { + "id": 438, + "damage": 8 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438, + "damage": 9 + }, + "output": { + "id": 438, + "damage": 10 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 1 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 12 + }, + "output": { + "id": 441, + "damage": 13 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 14 + }, + "output": { + "id": 441, + "damage": 15 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 17 + }, + "output": { + "id": 441, + "damage": 18 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 19 + }, + "output": { + "id": 441, + "damage": 20 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 25 + }, + "output": { + "id": 441, + "damage": 26 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 28 + }, + "output": { + "id": 441, + "damage": 29 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 31 + }, + "output": { + "id": 441, + "damage": 32 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 34 + }, + "output": { + "id": 441, + "damage": 35 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 37 + }, + "output": { + "id": 441, + "damage": 38 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 40 + }, + "output": { + "id": 441, + "damage": 41 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 5 + }, + "output": { + "id": 441, + "damage": 6 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 7 + }, + "output": { + "id": 441, + "damage": 8 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441, + "damage": 9 + }, + "output": { + "id": 441, + "damage": 10 + } + }, + { + "ingredient": { + "id": 331 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 1 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 14 + }, + "output": { + "id": 373, + "damage": 16 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 17 + }, + "output": { + "id": 373, + "damage": 42 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 21 + }, + "output": { + "id": 373, + "damage": 22 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 23 + }, + "output": { + "id": 373, + "damage": 24 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 25 + }, + "output": { + "id": 373, + "damage": 27 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 28 + }, + "output": { + "id": 373, + "damage": 30 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 31 + }, + "output": { + "id": 373, + "damage": 33 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 37 + }, + "output": { + "id": 373, + "damage": 39 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373, + "damage": 9 + }, + "output": { + "id": 373, + "damage": 11 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 3 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 14 + }, + "output": { + "id": 438, + "damage": 16 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 17 + }, + "output": { + "id": 438, + "damage": 42 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 21 + }, + "output": { + "id": 438, + "damage": 22 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 23 + }, + "output": { + "id": 438, + "damage": 24 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 25 + }, + "output": { + "id": 438, + "damage": 27 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 28 + }, + "output": { + "id": 438, + "damage": 30 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 31 + }, + "output": { + "id": 438, + "damage": 33 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 37 + }, + "output": { + "id": 438, + "damage": 39 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438, + "damage": 9 + }, + "output": { + "id": 438, + "damage": 11 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 3 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 14 + }, + "output": { + "id": 441, + "damage": 16 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 17 + }, + "output": { + "id": 441, + "damage": 42 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 21 + }, + "output": { + "id": 441, + "damage": 22 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 23 + }, + "output": { + "id": 441, + "damage": 24 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 25 + }, + "output": { + "id": 441, + "damage": 27 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 28 + }, + "output": { + "id": 441, + "damage": 30 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 31 + }, + "output": { + "id": 441, + "damage": 33 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 37 + }, + "output": { + "id": 441, + "damage": 39 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441, + "damage": 9 + }, + "output": { + "id": 441, + "damage": 11 + } + }, + { + "ingredient": { + "id": 348 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 3 + } + }, + { + "ingredient": { + "id": 353 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 14 + } + }, + { + "ingredient": { + "id": 353 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 1 + } + }, + { + "ingredient": { + "id": 353 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 14 + } + }, + { + "ingredient": { + "id": 353 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 1 + } + }, + { + "ingredient": { + "id": 353 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 14 + } + }, + { + "ingredient": { + "id": 353 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 1 + } + }, + { + "ingredient": { + "id": 370 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 28 + } + }, + { + "ingredient": { + "id": 370 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 1 + } + }, + { + "ingredient": { + "id": 370 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 28 + } + }, + { + "ingredient": { + "id": 370 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 1 + } + }, + { + "ingredient": { + "id": 370 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 28 + } + }, + { + "ingredient": { + "id": 370 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 1 + } + }, + { + "ingredient": { + "id": 372 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 4 + } + }, + { + "ingredient": { + "id": 372 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 4 + } + }, + { + "ingredient": { + "id": 372 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 4 + } + }, + { + "ingredient": { + "id": 375 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 25 + } + }, + { + "ingredient": { + "id": 375 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 1 + } + }, + { + "ingredient": { + "id": 375 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 25 + } + }, + { + "ingredient": { + "id": 375 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 1 + } + }, + { + "ingredient": { + "id": 375 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 25 + } + }, + { + "ingredient": { + "id": 375 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 1 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 10 + }, + "output": { + "id": 373, + "damage": 18 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 14 + }, + "output": { + "id": 373, + "damage": 17 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 15 + }, + "output": { + "id": 373, + "damage": 18 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 1 + }, + "output": { + "id": 373, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 21 + }, + "output": { + "id": 373, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 22 + }, + "output": { + "id": 373, + "damage": 24 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 25 + }, + "output": { + "id": 373, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 26 + }, + "output": { + "id": 373, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 27 + }, + "output": { + "id": 373, + "damage": 24 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 2 + }, + "output": { + "id": 373, + "damage": 35 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 31 + }, + "output": { + "id": 373, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 32 + }, + "output": { + "id": 373, + "damage": 35 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 33 + }, + "output": { + "id": 373, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 3 + }, + "output": { + "id": 373, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 5 + }, + "output": { + "id": 373, + "damage": 7 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 6 + }, + "output": { + "id": 373, + "damage": 8 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373, + "damage": 9 + }, + "output": { + "id": 373, + "damage": 17 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 10 + }, + "output": { + "id": 438, + "damage": 18 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 14 + }, + "output": { + "id": 438, + "damage": 17 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 15 + }, + "output": { + "id": 438, + "damage": 18 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 1 + }, + "output": { + "id": 438, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 21 + }, + "output": { + "id": 438, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 22 + }, + "output": { + "id": 438, + "damage": 24 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 25 + }, + "output": { + "id": 438, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 26 + }, + "output": { + "id": 438, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 27 + }, + "output": { + "id": 438, + "damage": 24 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 2 + }, + "output": { + "id": 438, + "damage": 35 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 31 + }, + "output": { + "id": 438, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 32 + }, + "output": { + "id": 438, + "damage": 35 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 33 + }, + "output": { + "id": 438, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 3 + }, + "output": { + "id": 438, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 5 + }, + "output": { + "id": 438, + "damage": 7 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 6 + }, + "output": { + "id": 438, + "damage": 8 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438, + "damage": 9 + }, + "output": { + "id": 438, + "damage": 17 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 10 + }, + "output": { + "id": 441, + "damage": 18 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 14 + }, + "output": { + "id": 441, + "damage": 17 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 15 + }, + "output": { + "id": 441, + "damage": 18 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 1 + }, + "output": { + "id": 441, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 21 + }, + "output": { + "id": 441, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 22 + }, + "output": { + "id": 441, + "damage": 24 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 25 + }, + "output": { + "id": 441, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 26 + }, + "output": { + "id": 441, + "damage": 23 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 27 + }, + "output": { + "id": 441, + "damage": 24 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 2 + }, + "output": { + "id": 441, + "damage": 35 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 31 + }, + "output": { + "id": 441, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 32 + }, + "output": { + "id": 441, + "damage": 35 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 33 + }, + "output": { + "id": 441, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 3 + }, + "output": { + "id": 441, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 34 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 5 + }, + "output": { + "id": 441, + "damage": 7 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 6 + }, + "output": { + "id": 441, + "damage": 8 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441, + "damage": 9 + }, + "output": { + "id": 441, + "damage": 17 + } + }, + { + "ingredient": { + "id": 376 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 34 + } + }, + { + "ingredient": { + "id": 377 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 31 + } + }, + { + "ingredient": { + "id": 377 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 1 + } + }, + { + "ingredient": { + "id": 377 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 31 + } + }, + { + "ingredient": { + "id": 377 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 1 + } + }, + { + "ingredient": { + "id": 377 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 31 + } + }, + { + "ingredient": { + "id": 377 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 1 + } + }, + { + "ingredient": { + "id": 378 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 12 + } + }, + { + "ingredient": { + "id": 378 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 1 + } + }, + { + "ingredient": { + "id": 378 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 12 + } + }, + { + "ingredient": { + "id": 378 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 1 + } + }, + { + "ingredient": { + "id": 378 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 12 + } + }, + { + "ingredient": { + "id": 378 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 1 + } + }, + { + "ingredient": { + "id": 382 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 21 + } + }, + { + "ingredient": { + "id": 382 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 1 + } + }, + { + "ingredient": { + "id": 382 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 21 + } + }, + { + "ingredient": { + "id": 382 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 1 + } + }, + { + "ingredient": { + "id": 382 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 21 + } + }, + { + "ingredient": { + "id": 382 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 1 + } + }, + { + "ingredient": { + "id": 396 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 5 + } + }, + { + "ingredient": { + "id": 396 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 5 + } + }, + { + "ingredient": { + "id": 396 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 5 + } + }, + { + "ingredient": { + "id": 414 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 9 + } + }, + { + "ingredient": { + "id": 414 + }, + "input": { + "id": 373 + }, + "output": { + "id": 373, + "damage": 1 + } + }, + { + "ingredient": { + "id": 414 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 9 + } + }, + { + "ingredient": { + "id": 414 + }, + "input": { + "id": 438 + }, + "output": { + "id": 438, + "damage": 1 + } + }, + { + "ingredient": { + "id": 414 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 9 + } + }, + { + "ingredient": { + "id": 414 + }, + "input": { + "id": 441 + }, + "output": { + "id": 441, + "damage": 1 + } + }, + { + "ingredient": { + "id": 462 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 19 + } + }, + { + "ingredient": { + "id": 462 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 19 + } + }, + { + "ingredient": { + "id": 462 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 19 + } + }, + { + "ingredient": { + "id": 469 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 37 + } + }, + { + "ingredient": { + "id": 469 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 37 + } + }, + { + "ingredient": { + "id": 469 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 37 + } + }, + { + "ingredient": { + "id": 470 + }, + "input": { + "id": 373, + "damage": 4 + }, + "output": { + "id": 373, + "damage": 40 + } + }, + { + "ingredient": { + "id": 470 + }, + "input": { + "id": 438, + "damage": 4 + }, + "output": { + "id": 438, + "damage": 40 + } + }, + { + "ingredient": { + "id": 470 + }, + "input": { + "id": 441, + "damage": 4 + }, + "output": { + "id": 441, + "damage": 40 + } + } + ], + "shaped": [ + { + "block": "crafting_table", + "input": { + "A": { + "id": -10, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -10, + "damage": -1 + } + }, + "output": [ + { + "id": -212, + "damage": 8, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -10, + "damage": -1 + } + }, + "output": [ + { + "id": 5, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -139, + "damage": -1 + } + }, + "output": [ + { + "id": 464, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -155, + "damage": -1 + }, + "B": { + "id": 50, + "damage": -1 + } + }, + "output": [ + { + "id": 91 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -163, + "damage": -1 + }, + "B": { + "id": 287, + "damage": -1 + } + }, + "output": [ + { + "id": -165, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "ABA", + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -163 + } + }, + "output": [ + { + "id": 280 + } + ], + "priority": 2, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -183 + } + }, + "output": [ + { + "id": 44, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 10 + } + }, + "output": [ + { + "id": 5, + "damage": 2, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 11 + } + }, + "output": [ + { + "id": 5, + "damage": 3, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 12 + } + }, + "output": [ + { + "id": 5, + "damage": 4, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 13 + } + }, + "output": [ + { + "id": 5, + "damage": 5, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 1 + } + }, + "output": [ + { + "id": 5, + "damage": 1, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 2 + } + }, + "output": [ + { + "id": 5, + "damage": 2, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 3 + } + }, + "output": [ + { + "id": 5, + "damage": 3, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 4 + } + }, + "output": [ + { + "id": 5, + "damage": 4, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 5 + } + }, + "output": [ + { + "id": 5, + "damage": 5, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 8 + } + }, + "output": [ + { + "id": 5, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212, + "damage": 9 + } + }, + "output": [ + { + "id": 5, + "damage": 1, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -212 + } + }, + "output": [ + { + "id": 5, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -225, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -225, + "damage": -1 + } + }, + "output": [ + { + "id": -242, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -225, + "damage": -1 + } + }, + "output": [ + { + "id": -299, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -226, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -226, + "damage": -1 + } + }, + "output": [ + { + "id": -243, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -226, + "damage": -1 + } + }, + "output": [ + { + "id": -298, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -234, + "damage": -1 + } + }, + "output": [ + { + "id": -235, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -240, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -240, + "damage": -1 + } + }, + "output": [ + { + "id": -242, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -240, + "damage": -1 + } + }, + "output": [ + { + "id": -300, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -241, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -241, + "damage": -1 + } + }, + "output": [ + { + "id": -243, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -241, + "damage": -1 + } + }, + "output": [ + { + "id": -301, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 264, + "damage": -1 + } + }, + "output": [ + { + "id": 84 + } + ], + "priority": 2, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 513 + } + ], + "priority": 2, + "shape": [ + "ABA", + "AAA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": -256, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 268 + } + ], + "priority": 2, + "shape": [ + "A", + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 269 + } + ], + "priority": 2, + "shape": [ + "A", + "B", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 270 + } + ], + "priority": 2, + "shape": [ + "AAA", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 271 + } + ], + "priority": 2, + "shape": [ + "AA", + "AB", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 290 + } + ], + "priority": 2, + "shape": [ + "AA ", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 753, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 25 + } + ], + "priority": 2, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 340, + "damage": -1 + } + }, + "output": [ + { + "id": 47 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 4, + "damage": -1 + }, + "C": { + "id": 265, + "damage": -1 + }, + "D": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 33, + "damage": 1 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BCB", + "BDB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + }, + "B": { + "id": 736, + "damage": -1 + } + }, + "output": [ + { + "id": -219 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -246, + "count": 2 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -254, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -260 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -262 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -264, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 280, + "count": 4 + } + ], + "priority": 2, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 281, + "count": 4 + } + ], + "priority": 2, + "shape": [ + "A A", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 54 + } + ], + "priority": 2, + "shape": [ + "AAA", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 58 + } + ], + "priority": 2, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 755, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 264, + "damage": -1 + } + }, + "output": [ + { + "id": 84 + } + ], + "priority": 2, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 513 + } + ], + "priority": 2, + "shape": [ + "ABA", + "AAA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": -257, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 268 + } + ], + "priority": 2, + "shape": [ + "A", + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 269 + } + ], + "priority": 2, + "shape": [ + "A", + "B", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 270 + } + ], + "priority": 2, + "shape": [ + "AAA", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 271 + } + ], + "priority": 2, + "shape": [ + "AA", + "AB", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 290 + } + ], + "priority": 2, + "shape": [ + "AA ", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 754, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 25 + } + ], + "priority": 2, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 340, + "damage": -1 + } + }, + "output": [ + { + "id": 47 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 4, + "damage": -1 + }, + "C": { + "id": 265, + "damage": -1 + }, + "D": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 33, + "damage": 1 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BCB", + "BDB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + }, + "B": { + "id": 736, + "damage": -1 + } + }, + "output": [ + { + "id": -219 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -247, + "count": 2 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -255, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -261 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -263 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -265, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 280, + "count": 4 + } + ], + "priority": 2, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 281, + "count": 4 + } + ], + "priority": 2, + "shape": [ + "A A", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 54 + } + ], + "priority": 2, + "shape": [ + "AAA", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 58 + } + ], + "priority": 2, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 756, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -264, + "damage": -1 + }, + "B": { + "id": 47, + "damage": -1 + } + }, + "output": [ + { + "id": -194 + } + ], + "priority": 2, + "shape": [ + "AAA", + " B ", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -264, + "damage": -1 + } + }, + "output": [ + { + "id": -213 + } + ], + "priority": 2, + "shape": [ + "A A", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -265, + "damage": -1 + }, + "B": { + "id": 47, + "damage": -1 + } + }, + "output": [ + { + "id": -194 + } + ], + "priority": 2, + "shape": [ + "AAA", + " B ", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -265, + "damage": -1 + } + }, + "output": [ + { + "id": -213 + } + ], + "priority": 2, + "shape": [ + "A A", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -270, + "damage": -1 + } + }, + "output": [ + { + "id": 742, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 272 + } + ], + "priority": 2, + "shape": [ + "A", + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 273 + } + ], + "priority": 2, + "shape": [ + "A", + "B", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 274 + } + ], + "priority": 2, + "shape": [ + "AAA", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 275 + } + ], + "priority": 2, + "shape": [ + "AA", + "AB", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 291 + } + ], + "priority": 2, + "shape": [ + "AA", + " B", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + } + }, + "output": [ + { + "id": -276, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + } + }, + "output": [ + { + "id": -277, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + } + }, + "output": [ + { + "id": -282, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + } + }, + "output": [ + { + "id": -291, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -273, + "damage": -1 + } + }, + "output": [ + { + "id": 61 + } + ], + "priority": 2, + "shape": [ + "AAA", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -274, + "damage": -1 + } + }, + "output": [ + { + "id": -275, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -274, + "damage": -1 + } + }, + "output": [ + { + "id": -278, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -274, + "damage": -1 + } + }, + "output": [ + { + "id": -284, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -289, + "damage": -1 + }, + "B": { + "id": 89, + "damage": -1 + } + }, + "output": [ + { + "id": -272 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -291, + "damage": -1 + } + }, + "output": [ + { + "id": -274, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -291, + "damage": -1 + } + }, + "output": [ + { + "id": -292, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -291, + "damage": -1 + } + }, + "output": [ + { + "id": -293, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -291, + "damage": -1 + } + }, + "output": [ + { + "id": -295 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -291, + "damage": -1 + } + }, + "output": [ + { + "id": -296 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -291, + "damage": -1 + } + }, + "output": [ + { + "id": -297, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -293, + "damage": -1 + } + }, + "output": [ + { + "id": -279 + } + ], + "priority": 0, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -298, + "damage": -1 + } + }, + "output": [ + { + "id": -243, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -299, + "damage": -1 + } + }, + "output": [ + { + "id": -242, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -300, + "damage": -1 + } + }, + "output": [ + { + "id": -242, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -301, + "damage": -1 + } + }, + "output": [ + { + "id": -243, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -5, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -5, + "damage": -1 + } + }, + "output": [ + { + "id": -212, + "damage": 9, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -5, + "damage": -1 + } + }, + "output": [ + { + "id": 5, + "damage": 1, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -6, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -6, + "damage": -1 + } + }, + "output": [ + { + "id": -212, + "damage": 10, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -6, + "damage": -1 + } + }, + "output": [ + { + "id": 5, + "damage": 2, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -7, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -7, + "damage": -1 + } + }, + "output": [ + { + "id": -212, + "damage": 11, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -7, + "damage": -1 + } + }, + "output": [ + { + "id": 5, + "damage": 3, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -8, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -8, + "damage": -1 + } + }, + "output": [ + { + "id": -212, + "damage": 12, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -8, + "damage": -1 + } + }, + "output": [ + { + "id": 5, + "damage": 4, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -9, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -9, + "damage": -1 + } + }, + "output": [ + { + "id": -212, + "damage": 13, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -9, + "damage": -1 + } + }, + "output": [ + { + "id": 5, + "damage": 5, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 1 + } + }, + "output": [ + { + "id": -162, + "damage": 6, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 1 + } + }, + "output": [ + { + "id": -169, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 1 + } + }, + "output": [ + { + "id": 1, + "damage": 2, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 1 + } + }, + "output": [ + { + "id": 139, + "damage": 2, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 2 + } + }, + "output": [ + { + "id": -162, + "damage": 7, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 2 + } + }, + "output": [ + { + "id": -172, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 3 + } + }, + "output": [ + { + "id": -162, + "damage": 4, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 3 + } + }, + "output": [ + { + "id": -170, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 3 + } + }, + "output": [ + { + "id": 1, + "damage": 4, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 3 + } + }, + "output": [ + { + "id": 139, + "damage": 3, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 4 + } + }, + "output": [ + { + "id": -162, + "damage": 5, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 4 + } + }, + "output": [ + { + "id": -173, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 5 + } + }, + "output": [ + { + "id": -162, + "damage": 3, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 5 + } + }, + "output": [ + { + "id": -171, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 5 + } + }, + "output": [ + { + "id": 1, + "damage": 6, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 5 + } + }, + "output": [ + { + "id": 139, + "damage": 4, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 6 + } + }, + "output": [ + { + "id": -162, + "damage": 2, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1, + "damage": 6 + } + }, + "output": [ + { + "id": -174, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 10 + } + }, + "output": [ + { + "id": 160, + "damage": 5, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 11 + } + }, + "output": [ + { + "id": 160, + "damage": 4, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 12 + } + }, + "output": [ + { + "id": 160, + "damage": 3, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 13 + } + }, + "output": [ + { + "id": 160, + "damage": 2, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 14 + } + }, + "output": [ + { + "id": 160, + "damage": 1, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 16 + } + }, + "output": [ + { + "id": 160, + "damage": 15, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 17 + } + }, + "output": [ + { + "id": 160, + "damage": 12, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 18 + } + }, + "output": [ + { + "id": 160, + "damage": 11, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 19 + } + }, + "output": [ + { + "id": 160, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 1 + } + }, + "output": [ + { + "id": 160, + "damage": 14, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 2 + } + }, + "output": [ + { + "id": 160, + "damage": 13, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 5 + } + }, + "output": [ + { + "id": 160, + "damage": 10, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 6 + } + }, + "output": [ + { + "id": 160, + "damage": 9, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 7 + } + }, + "output": [ + { + "id": 160, + "damage": 8, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 8 + } + }, + "output": [ + { + "id": 160, + "damage": 7, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 102, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 9 + } + }, + "output": [ + { + "id": 160, + "damage": 6, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 112, + "damage": -1 + }, + "B": { + "id": 405, + "damage": -1 + } + }, + "output": [ + { + "id": 113, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 112, + "damage": -1 + } + }, + "output": [ + { + "id": 114, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 112, + "damage": -1 + } + }, + "output": [ + { + "id": 139, + "damage": 9, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 112 + } + }, + "output": [ + { + "id": 44, + "damage": 7, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 12, + "damage": 1 + } + }, + "output": [ + { + "id": 179 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 121, + "damage": -1 + } + }, + "output": [ + { + "id": 206, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 12 + } + }, + "output": [ + { + "id": 24 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 133, + "damage": -1 + } + }, + "output": [ + { + "id": 388, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 152, + "damage": -1 + } + }, + "output": [ + { + "id": 331, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 155, + "damage": 3 + } + }, + "output": [ + { + "id": -166, + "damage": 1, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 155, + "damage": 3 + } + }, + "output": [ + { + "id": -185, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 155 + } + }, + "output": [ + { + "id": -304 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 155 + } + }, + "output": [ + { + "id": 155, + "damage": 2, + "count": 2 + } + ], + "priority": 0, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 155 + } + }, + "output": [ + { + "id": 156, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 155 + } + }, + "output": [ + { + "id": 44, + "damage": 6, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 158, + "damage": -1 + }, + "B": { + "id": 47, + "damage": -1 + } + }, + "output": [ + { + "id": -194 + } + ], + "priority": 0, + "shape": [ + "AAA", + " B ", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 158, + "damage": -1 + } + }, + "output": [ + { + "id": -213 + } + ], + "priority": 0, + "shape": [ + "A A", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 162, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 162, + "damage": 1 + } + }, + "output": [ + { + "id": -212, + "damage": 5, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 162, + "damage": 1 + } + }, + "output": [ + { + "id": 5, + "damage": 5, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 162 + } + }, + "output": [ + { + "id": -212, + "damage": 4, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 162 + } + }, + "output": [ + { + "id": 5, + "damage": 4, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 165, + "damage": -1 + } + }, + "output": [ + { + "id": 341, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 168, + "damage": 1 + } + }, + "output": [ + { + "id": -3, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 168, + "damage": 1 + } + }, + "output": [ + { + "id": 182, + "damage": 3, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 168, + "damage": 2 + } + }, + "output": [ + { + "id": -4, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 168, + "damage": 2 + } + }, + "output": [ + { + "id": 182, + "damage": 4, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 168 + } + }, + "output": [ + { + "id": -2, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 168 + } + }, + "output": [ + { + "id": 139, + "damage": 11, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 168 + } + }, + "output": [ + { + "id": 182, + "damage": 2, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + } + }, + "output": [ + { + "id": -198 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17, + "damage": 1 + } + }, + "output": [ + { + "id": -212, + "damage": 1, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17, + "damage": 1 + } + }, + "output": [ + { + "id": 5, + "damage": 1, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17, + "damage": 2 + } + }, + "output": [ + { + "id": -212, + "damage": 2, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17, + "damage": 2 + } + }, + "output": [ + { + "id": 5, + "damage": 2, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17, + "damage": 3 + } + }, + "output": [ + { + "id": -212, + "damage": 3, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17, + "damage": 3 + } + }, + "output": [ + { + "id": 5, + "damage": 3, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 170, + "damage": -1 + } + }, + "output": [ + { + "id": 296, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 10 + } + }, + "output": [ + { + "id": 171, + "damage": 5, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 11 + } + }, + "output": [ + { + "id": 171, + "damage": 4, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 12 + } + }, + "output": [ + { + "id": 171, + "damage": 3, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 13 + } + }, + "output": [ + { + "id": 171, + "damage": 2, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 14 + } + }, + "output": [ + { + "id": 171, + "damage": 1, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 16 + } + }, + "output": [ + { + "id": 171, + "damage": 15, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 17 + } + }, + "output": [ + { + "id": 171, + "damage": 12, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 18 + } + }, + "output": [ + { + "id": 171, + "damage": 11, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 1 + } + }, + "output": [ + { + "id": 171, + "damage": 14, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 2 + } + }, + "output": [ + { + "id": 171, + "damage": 13, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 5 + } + }, + "output": [ + { + "id": 171, + "damage": 10, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 6 + } + }, + "output": [ + { + "id": 171, + "damage": 9, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 7 + } + }, + "output": [ + { + "id": 171, + "damage": 8, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 8 + } + }, + "output": [ + { + "id": 171, + "damage": 7, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 171 + }, + "B": { + "id": 351, + "damage": 9 + } + }, + "output": [ + { + "id": 171, + "damage": 6, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 10 + } + }, + "output": [ + { + "id": 159, + "damage": 5, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 11 + } + }, + "output": [ + { + "id": 159, + "damage": 4, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 12 + } + }, + "output": [ + { + "id": 159, + "damage": 3, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 13 + } + }, + "output": [ + { + "id": 159, + "damage": 2, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 14 + } + }, + "output": [ + { + "id": 159, + "damage": 1, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 15 + } + }, + "output": [ + { + "id": 159, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 16 + } + }, + "output": [ + { + "id": 159, + "damage": 15, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 17 + } + }, + "output": [ + { + "id": 159, + "damage": 12, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 18 + } + }, + "output": [ + { + "id": 159, + "damage": 11, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 19 + } + }, + "output": [ + { + "id": 159, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 1 + } + }, + "output": [ + { + "id": 159, + "damage": 14, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 2 + } + }, + "output": [ + { + "id": 159, + "damage": 13, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 3 + } + }, + "output": [ + { + "id": 159, + "damage": 12, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 4 + } + }, + "output": [ + { + "id": 159, + "damage": 11, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 5 + } + }, + "output": [ + { + "id": 159, + "damage": 10, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 6 + } + }, + "output": [ + { + "id": 159, + "damage": 9, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 7 + } + }, + "output": [ + { + "id": 159, + "damage": 8, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 8 + } + }, + "output": [ + { + "id": 159, + "damage": 7, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 9 + } + }, + "output": [ + { + "id": 159, + "damage": 6, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 172, + "damage": -1 + }, + "B": { + "id": 351 + } + }, + "output": [ + { + "id": 159, + "damage": 15, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 173, + "damage": -1 + } + }, + "output": [ + { + "id": 263, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 174, + "damage": -1 + } + }, + "output": [ + { + "id": -11 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 179, + "damage": 1 + } + }, + "output": [ + { + "id": 182, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 179, + "damage": 2 + } + }, + "output": [ + { + "id": -166, + "damage": 4, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 179, + "damage": 3 + } + }, + "output": [ + { + "id": -162, + "damage": 1, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 179, + "damage": 3 + } + }, + "output": [ + { + "id": -176, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 179 + } + }, + "output": [ + { + "id": 139, + "damage": 12, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 179 + } + }, + "output": [ + { + "id": 179, + "damage": 2, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 179 + } + }, + "output": [ + { + "id": 180, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 179 + } + }, + "output": [ + { + "id": 182, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17 + } + }, + "output": [ + { + "id": -212, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 17 + } + }, + "output": [ + { + "id": 5, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 182, + "damage": 1 + } + }, + "output": [ + { + "id": 201, + "damage": 2 + } + ], + "priority": 50, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 182 + } + }, + "output": [ + { + "id": 179, + "damage": 1 + } + ], + "priority": 50, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1 + } + }, + "output": [ + { + "id": -166, + "damage": 2, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1 + } + }, + "output": [ + { + "id": -180, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1 + } + }, + "output": [ + { + "id": 70 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1 + } + }, + "output": [ + { + "id": 77 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 1 + } + }, + "output": [ + { + "id": 98, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 10 + } + }, + "output": [ + { + "id": 241, + "damage": 5, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 11 + } + }, + "output": [ + { + "id": 241, + "damage": 4, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 12 + } + }, + "output": [ + { + "id": 241, + "damage": 3, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 13 + } + }, + "output": [ + { + "id": 241, + "damage": 2, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 14 + } + }, + "output": [ + { + "id": 241, + "damage": 1, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 15 + } + }, + "output": [ + { + "id": 241, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 16 + } + }, + "output": [ + { + "id": 241, + "damage": 15, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 17 + } + }, + "output": [ + { + "id": 241, + "damage": 12, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 18 + } + }, + "output": [ + { + "id": 241, + "damage": 11, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 19 + } + }, + "output": [ + { + "id": 241, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 1 + } + }, + "output": [ + { + "id": 241, + "damage": 14, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 2 + } + }, + "output": [ + { + "id": 241, + "damage": 13, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 3 + } + }, + "output": [ + { + "id": 241, + "damage": 12, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 4 + } + }, + "output": [ + { + "id": 241, + "damage": 11, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 5 + } + }, + "output": [ + { + "id": 241, + "damage": 10, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 6 + } + }, + "output": [ + { + "id": 241, + "damage": 9, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 7 + } + }, + "output": [ + { + "id": 241, + "damage": 8, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 8 + } + }, + "output": [ + { + "id": 241, + "damage": 7, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 9 + } + }, + "output": [ + { + "id": 241, + "damage": 6, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 351 + } + }, + "output": [ + { + "id": 241, + "damage": 15, + "count": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 381, + "damage": -1 + }, + "C": { + "id": 370, + "damage": -1 + } + }, + "output": [ + { + "id": 426 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "ACA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 399, + "damage": -1 + }, + "C": { + "id": 49, + "damage": -1 + } + }, + "output": [ + { + "id": 138 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 406, + "damage": -1 + }, + "C": { + "id": -264, + "damage": -1 + } + }, + "output": [ + { + "id": 151 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + }, + "B": { + "id": 406, + "damage": -1 + }, + "C": { + "id": -265, + "damage": -1 + } + }, + "output": [ + { + "id": 151 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + } + }, + "output": [ + { + "id": 102, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20, + "damage": -1 + } + }, + "output": [ + { + "id": 374, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "A A", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 201, + "damage": -1 + } + }, + "output": [ + { + "id": 203, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 201 + } + }, + "output": [ + { + "id": 182, + "damage": 1, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 206, + "damage": -1 + } + }, + "output": [ + { + "id": -178, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 206, + "damage": -1 + } + }, + "output": [ + { + "id": 139, + "damage": 10, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 206 + } + }, + "output": [ + { + "id": -162, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 20 + }, + "B": { + "id": 406, + "damage": -1 + }, + "C": { + "id": 158, + "damage": -1 + } + }, + "output": [ + { + "id": 151 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 215, + "damage": -1 + } + }, + "output": [ + { + "id": -184, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 215, + "damage": -1 + } + }, + "output": [ + { + "id": 139, + "damage": 13, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 215 + } + }, + "output": [ + { + "id": 182, + "damage": 7, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 22, + "damage": -1 + } + }, + "output": [ + { + "id": 351, + "damage": 4, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 24, + "damage": 1 + } + }, + "output": [ + { + "id": 44, + "damage": 1, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 24, + "damage": 2 + } + }, + "output": [ + { + "id": -166, + "damage": 3, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 24, + "damage": 3 + } + }, + "output": [ + { + "id": -177, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 24, + "damage": 3 + } + }, + "output": [ + { + "id": 182, + "damage": 6, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 10 + } + }, + "output": [ + { + "id": 160, + "damage": 10, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 11 + } + }, + "output": [ + { + "id": 160, + "damage": 11, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 12 + } + }, + "output": [ + { + "id": 160, + "damage": 12, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 13 + } + }, + "output": [ + { + "id": 160, + "damage": 13, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 14 + } + }, + "output": [ + { + "id": 160, + "damage": 14, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 15 + } + }, + "output": [ + { + "id": 160, + "damage": 15, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 1 + } + }, + "output": [ + { + "id": 160, + "damage": 1, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 2 + } + }, + "output": [ + { + "id": 160, + "damage": 2, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 3 + } + }, + "output": [ + { + "id": 160, + "damage": 3, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 4 + } + }, + "output": [ + { + "id": 160, + "damage": 4, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 5 + } + }, + "output": [ + { + "id": 160, + "damage": 5, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 6 + } + }, + "output": [ + { + "id": 160, + "damage": 6, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 7 + } + }, + "output": [ + { + "id": 160, + "damage": 7, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 8 + } + }, + "output": [ + { + "id": 160, + "damage": 8, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241, + "damage": 9 + } + }, + "output": [ + { + "id": 160, + "damage": 9, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 241 + } + }, + "output": [ + { + "id": 160, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 24 + } + }, + "output": [ + { + "id": 128, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 24 + } + }, + "output": [ + { + "id": 139, + "damage": 5, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 24 + } + }, + "output": [ + { + "id": 24, + "damage": 2, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 24 + } + }, + "output": [ + { + "id": 44, + "damage": 1, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 10 + } + }, + "output": [ + { + "id": 262, + "damage": 11, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 11 + } + }, + "output": [ + { + "id": 262, + "damage": 12, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 12 + } + }, + "output": [ + { + "id": 262, + "damage": 13, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 13 + } + }, + "output": [ + { + "id": 262, + "damage": 14, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 14 + } + }, + "output": [ + { + "id": 262, + "damage": 15, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 15 + } + }, + "output": [ + { + "id": 262, + "damage": 16, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 16 + } + }, + "output": [ + { + "id": 262, + "damage": 17, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 17 + } + }, + "output": [ + { + "id": 262, + "damage": 18, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 18 + } + }, + "output": [ + { + "id": 262, + "damage": 19, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 19 + } + }, + "output": [ + { + "id": 262, + "damage": 20, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 20 + } + }, + "output": [ + { + "id": 262, + "damage": 21, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 21 + } + }, + "output": [ + { + "id": 262, + "damage": 22, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 22 + } + }, + "output": [ + { + "id": 262, + "damage": 23, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 23 + } + }, + "output": [ + { + "id": 262, + "damage": 24, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 24 + } + }, + "output": [ + { + "id": 262, + "damage": 25, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 25 + } + }, + "output": [ + { + "id": 262, + "damage": 26, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 26 + } + }, + "output": [ + { + "id": 262, + "damage": 27, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 27 + } + }, + "output": [ + { + "id": 262, + "damage": 28, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 28 + } + }, + "output": [ + { + "id": 262, + "damage": 29, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 29 + } + }, + "output": [ + { + "id": 262, + "damage": 30, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 30 + } + }, + "output": [ + { + "id": 262, + "damage": 31, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 31 + } + }, + "output": [ + { + "id": 262, + "damage": 32, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 32 + } + }, + "output": [ + { + "id": 262, + "damage": 33, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 33 + } + }, + "output": [ + { + "id": 262, + "damage": 34, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 34 + } + }, + "output": [ + { + "id": 262, + "damage": 35, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 35 + } + }, + "output": [ + { + "id": 262, + "damage": 36, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 36 + } + }, + "output": [ + { + "id": 262, + "damage": 37, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 37 + } + }, + "output": [ + { + "id": 262, + "damage": 38, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 38 + } + }, + "output": [ + { + "id": 262, + "damage": 39, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 39 + } + }, + "output": [ + { + "id": 262, + "damage": 40, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 40 + } + }, + "output": [ + { + "id": 262, + "damage": 41, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 41 + } + }, + "output": [ + { + "id": 262, + "damage": 42, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 42 + } + }, + "output": [ + { + "id": 262, + "damage": 43, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 5 + } + }, + "output": [ + { + "id": 262, + "damage": 6, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 6 + } + }, + "output": [ + { + "id": 262, + "damage": 7, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 7 + } + }, + "output": [ + { + "id": 262, + "damage": 8, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 8 + } + }, + "output": [ + { + "id": 262, + "damage": 9, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 262 + }, + "B": { + "id": 441, + "damage": 9 + } + }, + "output": [ + { + "id": 262, + "damage": 10, + "count": 8 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 263, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 50, + "count": 4 + } + ], + "priority": 50, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 263, + "damage": 1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 50, + "count": 4 + } + ], + "priority": 50, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 263 + }, + "B": { + "id": 280, + "damage": -1 + }, + "C": { + "id": -236, + "damage": -1 + } + }, + "output": [ + { + "id": -268, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 263 + }, + "B": { + "id": 280, + "damage": -1 + }, + "C": { + "id": 88, + "damage": -1 + } + }, + "output": [ + { + "id": -268, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 263 + } + }, + "output": [ + { + "id": 173 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 276 + } + ], + "priority": 0, + "shape": [ + "A", + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 277 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 278 + } + ], + "priority": 0, + "shape": [ + "AAA", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 279 + } + ], + "priority": 0, + "shape": [ + "AA", + "AB", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 293 + } + ], + "priority": 0, + "shape": [ + "AA", + " B", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + } + }, + "output": [ + { + "id": 310 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + } + }, + "output": [ + { + "id": 311 + } + ], + "priority": 0, + "shape": [ + "A A", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + } + }, + "output": [ + { + "id": 312 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + } + }, + "output": [ + { + "id": 313 + } + ], + "priority": 0, + "shape": [ + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 264, + "damage": -1 + } + }, + "output": [ + { + "id": 57 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -202 + } + ], + "priority": 2, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -202 + } + ], + "priority": 2, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 1, + "damage": -1 + } + }, + "output": [ + { + "id": -197 + } + ], + "priority": 0, + "shape": [ + " A ", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + }, + "C": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 131 + } + ], + "priority": 2, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + }, + "C": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 131 + } + ], + "priority": 2, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + }, + "C": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 131, + "count": 2 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + }, + "C": { + "id": 76, + "damage": -1 + } + }, + "output": [ + { + "id": 126, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 256 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 257 + } + ], + "priority": 0, + "shape": [ + "AAA", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 258 + } + ], + "priority": 0, + "shape": [ + "AA", + "AB", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 267 + } + ], + "priority": 0, + "shape": [ + "A", + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 292 + } + ], + "priority": 0, + "shape": [ + "AA", + " B", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 66, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "A A", + "ABA", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 345 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": -202 + } + ], + "priority": 0, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 54, + "damage": -1 + } + }, + "output": [ + { + "id": 410 + } + ], + "priority": 0, + "shape": [ + "A A", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 61, + "damage": -1 + }, + "C": { + "id": -183, + "damage": -1 + } + }, + "output": [ + { + "id": -196 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + }, + "B": { + "id": 70, + "damage": -1 + }, + "C": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 28, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "A A", + "ABA", + "ACA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 101, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 148 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 167 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 306 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 307 + } + ], + "priority": 0, + "shape": [ + "A A", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 308 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 309 + } + ], + "priority": 0, + "shape": [ + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 325 + } + ], + "priority": 0, + "shape": [ + "A A", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 328 + } + ], + "priority": 0, + "shape": [ + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 330, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 359 + } + ], + "priority": 0, + "shape": [ + " A", + "A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 380 + } + ], + "priority": 0, + "shape": [ + "A A", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 42 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 452, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + }, + "B": { + "id": 260, + "damage": -1 + } + }, + "output": [ + { + "id": 322 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + }, + "C": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 27, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "A A", + "ABA", + "ACA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 283 + } + ], + "priority": 0, + "shape": [ + "A", + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 284 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 285 + } + ], + "priority": 0, + "shape": [ + "AAA", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 286 + } + ], + "priority": 0, + "shape": [ + "AA", + "AB", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 294 + } + ], + "priority": 0, + "shape": [ + "AA", + " B", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + }, + "B": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 347 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + } + }, + "output": [ + { + "id": 147 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + } + }, + "output": [ + { + "id": 314 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + } + }, + "output": [ + { + "id": 315 + } + ], + "priority": 0, + "shape": [ + "A A", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + } + }, + "output": [ + { + "id": 316 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + } + }, + "output": [ + { + "id": 317 + } + ], + "priority": 0, + "shape": [ + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + } + }, + "output": [ + { + "id": 371, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 266, + "damage": -1 + } + }, + "output": [ + { + "id": 41 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -162, + "damage": -1 + }, + "C": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 2, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -162, + "damage": -1 + }, + "C": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 2, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -166, + "damage": -1 + }, + "C": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 2, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -166, + "damage": -1 + }, + "C": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 2, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -166, + "damage": 2 + }, + "C": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 0, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -10, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -212, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -225, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -226, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -240, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -241, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -5, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -6, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -7, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -8, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": -9, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": 162, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -236, + "damage": -1 + }, + "C": { + "id": 17, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 1, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -258 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -259 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -264, + "damage": -1 + } + }, + "output": [ + { + "id": -203 + } + ], + "priority": 2, + "shape": [ + "ABA", + "A A", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": -265, + "damage": -1 + } + }, + "output": [ + { + "id": -203 + } + ], + "priority": 2, + "shape": [ + "ABA", + "A A", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 158, + "damage": -1 + } + }, + "output": [ + { + "id": -203 + } + ], + "priority": 0, + "shape": [ + "ABA", + "A A", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 182, + "damage": -1 + }, + "C": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 2, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 182, + "damage": -1 + }, + "C": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 2, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": -10, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": -212, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": -5, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": -6, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": -7, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": -8, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": -9, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": 162, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263, + "damage": 1 + }, + "C": { + "id": 17, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -10, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -212, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -225, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -226, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -240, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -241, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -5, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -6, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -7, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -8, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": -9, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": 162, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 263 + }, + "C": { + "id": 17, + "damage": -1 + } + }, + "output": [ + { + "id": 720 + } + ], + "priority": 1, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 265, + "damage": -1 + }, + "C": { + "id": 287, + "damage": -1 + }, + "D": { + "id": 131, + "damage": -1 + } + }, + "output": [ + { + "id": 471 + } + ], + "priority": 0, + "shape": [ + "ABA", + "CDC", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 287, + "damage": -1 + } + }, + "output": [ + { + "id": 261 + } + ], + "priority": 0, + "shape": [ + " AB", + "A B", + " AB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 287, + "damage": -1 + } + }, + "output": [ + { + "id": 346 + } + ], + "priority": 0, + "shape": [ + " A", + " AB", + "A B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 334, + "damage": -1 + } + }, + "output": [ + { + "id": 389 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 35, + "damage": -1 + } + }, + "output": [ + { + "id": 321 + } + ], + "priority": 50, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 4, + "damage": -1 + } + }, + "output": [ + { + "id": 69 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 44, + "damage": -1 + }, + "C": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 2, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 44, + "damage": -1 + }, + "C": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -195 + } + ], + "priority": 2, + "shape": [ + "ABA", + "C C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 44 + } + }, + "output": [ + { + "id": 425 + } + ], + "priority": 0, + "shape": [ + "AAA", + " A ", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 5, + "damage": 1 + } + }, + "output": [ + { + "id": 183 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 5, + "damage": 2 + } + }, + "output": [ + { + "id": 184 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 5, + "damage": 3 + } + }, + "output": [ + { + "id": 185 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 5, + "damage": 4 + } + }, + "output": [ + { + "id": 187 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 5, + "damage": 5 + } + }, + "output": [ + { + "id": 186 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 5 + } + }, + "output": [ + { + "id": 107 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -10, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -212, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -225, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -226, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -240, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -241, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -5, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -6, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -7, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -8, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": -9, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": 162, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 2, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + }, + "B": { + "id": 88, + "damage": -1 + }, + "C": { + "id": 17, + "damage": -1 + } + }, + "output": [ + { + "id": 801 + } + ], + "priority": 1, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 65, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "A A", + "AAA", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 287, + "damage": -1 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -204 + } + ], + "priority": 2, + "shape": [ + "AA", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 287, + "damage": -1 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -204 + } + ], + "priority": 2, + "shape": [ + "AA", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 287, + "damage": -1 + }, + "B": { + "id": 341, + "damage": -1 + } + }, + "output": [ + { + "id": 420, + "count": 2 + } + ], + "priority": 0, + "shape": [ + "AA ", + "AB ", + " A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 287, + "damage": -1 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": -204 + } + ], + "priority": 0, + "shape": [ + "AA", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 287, + "damage": -1 + } + }, + "output": [ + { + "id": 35 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 289, + "damage": -1 + }, + "B": { + "id": 12, + "damage": -1 + } + }, + "output": [ + { + "id": 46 + } + ], + "priority": 0, + "shape": [ + "ABA", + "BAB", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 296, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 3 + } + }, + "output": [ + { + "id": 357, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 296, + "damage": -1 + } + }, + "output": [ + { + "id": 170 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 296, + "damage": -1 + } + }, + "output": [ + { + "id": 297 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 318, + "damage": -1 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -201 + } + ], + "priority": 2, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 318, + "damage": -1 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -201 + } + ], + "priority": 2, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 318, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + }, + "C": { + "id": 288, + "damage": -1 + } + }, + "output": [ + { + "id": 262, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 318, + "damage": -1 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": -201 + } + ], + "priority": 0, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 325, + "damage": 1 + }, + "B": { + "id": 353, + "damage": -1 + }, + "C": { + "id": 344, + "damage": -1 + }, + "D": { + "id": 296, + "damage": -1 + } + }, + "output": [ + { + "id": 354 + }, + { + "id": 325, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BCB", + "DDD" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 331, + "damage": -1 + }, + "B": { + "id": 170, + "damage": -1 + } + }, + "output": [ + { + "id": -239 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 331, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 76 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 331, + "damage": -1 + }, + "B": { + "id": 89, + "damage": -1 + } + }, + "output": [ + { + "id": 123 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 152 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 332, + "damage": -1 + } + }, + "output": [ + { + "id": 80 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 334, + "damage": -1 + } + }, + "output": [ + { + "id": 298 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 334, + "damage": -1 + } + }, + "output": [ + { + "id": 299 + } + ], + "priority": 0, + "shape": [ + "A A", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 334, + "damage": -1 + } + }, + "output": [ + { + "id": 300 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 334, + "damage": -1 + } + }, + "output": [ + { + "id": 301 + } + ], + "priority": 0, + "shape": [ + "A A", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 334, + "damage": -1 + } + }, + "output": [ + { + "id": 416 + } + ], + "priority": 0, + "shape": [ + "A A", + "AAA", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 336, + "damage": -1 + } + }, + "output": [ + { + "id": 390 + } + ], + "priority": 0, + "shape": [ + "A A", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 336, + "damage": -1 + } + }, + "output": [ + { + "id": 45 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 337, + "damage": -1 + } + }, + "output": [ + { + "id": 82 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 338, + "damage": -1 + } + }, + "output": [ + { + "id": 339, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 338, + "damage": -1 + } + }, + "output": [ + { + "id": 353 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 339, + "damage": -1 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": -200 + } + ], + "priority": 2, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 339, + "damage": -1 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": -200 + } + ], + "priority": 2, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 339, + "damage": -1 + }, + "B": { + "id": 345, + "damage": -1 + } + }, + "output": [ + { + "id": 395, + "damage": 2 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 339, + "damage": -1 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": -200 + } + ], + "priority": 0, + "shape": [ + "AA", + "BB", + "BB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 339, + "damage": -1 + } + }, + "output": [ + { + "id": 395 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 340, + "damage": -1 + }, + "B": { + "id": 264, + "damage": -1 + }, + "C": { + "id": 49, + "damage": -1 + } + }, + "output": [ + { + "id": 116 + } + ], + "priority": 0, + "shape": [ + " A ", + "BCB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 341, + "damage": -1 + }, + "B": { + "id": 33, + "damage": -1 + } + }, + "output": [ + { + "id": 29, + "damage": 1 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 341, + "damage": -1 + } + }, + "output": [ + { + "id": 165 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 346, + "damage": -1 + }, + "B": { + "id": -229, + "damage": -1 + } + }, + "output": [ + { + "id": 757 + } + ], + "priority": 0, + "shape": [ + "A ", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 346, + "damage": -1 + }, + "B": { + "id": 391, + "damage": -1 + } + }, + "output": [ + { + "id": 398 + } + ], + "priority": 0, + "shape": [ + "A ", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 348, + "damage": -1 + } + }, + "output": [ + { + "id": 89 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 10 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 10 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 10 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 5 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 10 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 10 + } + }, + "output": [ + { + "id": 171, + "damage": 10, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 11 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 11 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 11 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 4 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 11 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 11 + } + }, + "output": [ + { + "id": 171, + "damage": 11, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 12 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 12 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 12 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 12 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 12 + } + }, + "output": [ + { + "id": 171, + "damage": 12, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 13 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 13 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 13 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 2 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 13 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 13 + } + }, + "output": [ + { + "id": 171, + "damage": 13, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 14 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 14 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 14 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 1 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 14 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 14 + } + }, + "output": [ + { + "id": 171, + "damage": 14, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 15 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 15 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 15 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 15 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 15 + } + }, + "output": [ + { + "id": 171, + "damage": 15, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 1 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 1 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 14 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 1 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 1 + } + }, + "output": [ + { + "id": 171, + "damage": 1, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 2 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 2 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 2 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 13 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 2 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 2 + } + }, + "output": [ + { + "id": 171, + "damage": 2, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 3 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 3 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 3 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 12 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 3 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 3 + } + }, + "output": [ + { + "id": 171, + "damage": 3, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 4 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 4 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 4 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 11 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 4 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 4 + } + }, + "output": [ + { + "id": 171, + "damage": 4, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 5 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 5 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 5 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 10 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 5 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 5 + } + }, + "output": [ + { + "id": 171, + "damage": 5, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 6 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 6 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 6 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 9 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 6 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 6 + } + }, + "output": [ + { + "id": 171, + "damage": 6, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 7 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 7 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 7 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 7 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 7 + } + }, + "output": [ + { + "id": 171, + "damage": 7, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 8 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 8 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 8 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 7 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 8 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 8 + } + }, + "output": [ + { + "id": 171, + "damage": 8, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 9 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 9 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 9 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 9 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35, + "damage": 9 + } + }, + "output": [ + { + "id": 171, + "damage": 9, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 351, + "damage": 15 + } + }, + "output": [ + { + "id": 216 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 351, + "damage": 4 + } + }, + "output": [ + { + "id": 22 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35 + }, + "B": { + "id": -242, + "damage": -1 + } + }, + "output": [ + { + "id": 355 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35 + }, + "B": { + "id": -243, + "damage": -1 + } + }, + "output": [ + { + "id": 355 + } + ], + "priority": 2, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35 + }, + "B": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 355 + } + ], + "priority": 1, + "shape": [ + "AAA", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 35 + } + }, + "output": [ + { + "id": 171, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 360, + "damage": -1 + } + }, + "output": [ + { + "id": 103 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 360, + "damage": -1 + } + }, + "output": [ + { + "id": 362 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 369, + "damage": -1 + }, + "B": { + "id": -273, + "damage": -1 + } + }, + "output": [ + { + "id": 379 + } + ], + "priority": 2, + "shape": [ + " A ", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 369, + "damage": -1 + }, + "B": { + "id": 4, + "damage": -1 + } + }, + "output": [ + { + "id": 379 + } + ], + "priority": 0, + "shape": [ + " A ", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 369, + "damage": -1 + }, + "B": { + "id": 433, + "damage": -1 + } + }, + "output": [ + { + "id": 208, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 371, + "damage": -1 + }, + "B": { + "id": 360, + "damage": -1 + } + }, + "output": [ + { + "id": 382 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 371, + "damage": -1 + }, + "B": { + "id": 391, + "damage": -1 + } + }, + "output": [ + { + "id": 396 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 371, + "damage": -1 + } + }, + "output": [ + { + "id": 266 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 372, + "damage": -1 + } + }, + "output": [ + { + "id": 214 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 378, + "damage": -1 + } + }, + "output": [ + { + "id": 213 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 388, + "damage": -1 + } + }, + "output": [ + { + "id": 133 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 3 + }, + "B": { + "id": 13, + "damage": -1 + } + }, + "output": [ + { + "id": 3, + "damage": 1, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AB", + "BA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 261, + "damage": -1 + }, + "C": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 23, + "damage": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "ACA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 272 + } + ], + "priority": 0, + "shape": [ + "A", + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 273 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 274 + } + ], + "priority": 0, + "shape": [ + "AAA", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 275 + } + ], + "priority": 0, + "shape": [ + "AA", + "AB", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 291 + } + ], + "priority": 0, + "shape": [ + "AA", + " B", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 331, + "damage": -1 + }, + "C": { + "id": 406, + "damage": -1 + } + }, + "output": [ + { + "id": 251 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBC", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 125, + "damage": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + }, + "B": { + "id": 406, + "damage": -1 + } + }, + "output": [ + { + "id": 1, + "damage": 3, + "count": 2 + } + ], + "priority": 0, + "shape": [ + "AB", + "BA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + } + }, + "output": [ + { + "id": 139, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + } + }, + "output": [ + { + "id": 61 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4, + "damage": -1 + } + }, + "output": [ + { + "id": 67, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 405, + "damage": -1 + }, + "B": { + "id": 372, + "damage": -1 + } + }, + "output": [ + { + "id": 215 + } + ], + "priority": 0, + "shape": [ + "AB", + "BA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 405, + "damage": -1 + } + }, + "output": [ + { + "id": 112 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 406, + "damage": -1 + } + }, + "output": [ + { + "id": 155 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 409, + "damage": -1 + }, + "B": { + "id": 351, + "damage": 16 + } + }, + "output": [ + { + "id": 168, + "damage": 1 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 409, + "damage": -1 + }, + "B": { + "id": 351 + } + }, + "output": [ + { + "id": 168, + "damage": 1 + } + ], + "priority": 1, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 409, + "damage": -1 + }, + "B": { + "id": 422, + "damage": -1 + } + }, + "output": [ + { + "id": 169 + } + ], + "priority": 0, + "shape": [ + "ABA", + "BBB", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 409, + "damage": -1 + } + }, + "output": [ + { + "id": 168, + "damage": 2 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 409, + "damage": -1 + } + }, + "output": [ + { + "id": 168 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 41, + "damage": -1 + } + }, + "output": [ + { + "id": 266, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 410, + "damage": -1 + }, + "B": { + "id": 328, + "damage": -1 + } + }, + "output": [ + { + "id": 408 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 415, + "damage": -1 + } + }, + "output": [ + { + "id": 334 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 42, + "damage": -1 + }, + "B": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 145 + } + ], + "priority": 0, + "shape": [ + "AAA", + " B ", + "BBB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 42, + "damage": -1 + } + }, + "output": [ + { + "id": 265, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 433, + "damage": -1 + } + }, + "output": [ + { + "id": 201, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 44, + "damage": 1 + } + }, + "output": [ + { + "id": 24, + "damage": 1 + } + ], + "priority": 50, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 44, + "damage": 5 + } + }, + "output": [ + { + "id": 98, + "damage": 3 + } + ], + "priority": 50, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 44, + "damage": 6 + } + }, + "output": [ + { + "id": 155, + "damage": 1 + } + ], + "priority": 50, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 44, + "damage": 7 + } + }, + "output": [ + { + "id": -302 + } + ], + "priority": 0, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 445, + "damage": -1 + }, + "B": { + "id": 54, + "damage": -1 + } + }, + "output": [ + { + "id": 205 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 45, + "damage": -1 + } + }, + "output": [ + { + "id": 108, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 45, + "damage": -1 + } + }, + "output": [ + { + "id": 139, + "damage": 6, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 452, + "damage": -1 + }, + "B": { + "id": -268, + "damage": -1 + } + }, + "output": [ + { + "id": -269 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 452, + "damage": -1 + }, + "B": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 758 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 452, + "damage": -1 + }, + "B": { + "id": 50, + "damage": -1 + } + }, + "output": [ + { + "id": -208 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 452, + "damage": -1 + } + }, + "output": [ + { + "id": 265 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 45 + } + }, + "output": [ + { + "id": 44, + "damage": 4, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 464, + "damage": -1 + } + }, + "output": [ + { + "id": -139 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 465, + "damage": -1 + }, + "B": { + "id": 467, + "damage": -1 + } + }, + "output": [ + { + "id": -157 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 468, + "damage": -1 + } + }, + "output": [ + { + "id": 469 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 46 + }, + "B": { + "id": 328, + "damage": -1 + } + }, + "output": [ + { + "id": 407 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 48, + "damage": -1 + } + }, + "output": [ + { + "id": -179, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 48, + "damage": -1 + } + }, + "output": [ + { + "id": 139, + "damage": 1, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 48 + } + }, + "output": [ + { + "id": 182, + "damage": 5, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 49, + "damage": -1 + }, + "B": { + "id": 381, + "damage": -1 + } + }, + "output": [ + { + "id": 130 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 4 + } + }, + "output": [ + { + "id": 44, + "damage": 3, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 264, + "damage": -1 + } + }, + "output": [ + { + "id": 84 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 265, + "damage": -1 + } + }, + "output": [ + { + "id": 513 + } + ], + "priority": 0, + "shape": [ + "ABA", + "AAA", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 268 + } + ], + "priority": 0, + "shape": [ + "A", + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 269 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 270 + } + ], + "priority": 0, + "shape": [ + "AAA", + " B ", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 271 + } + ], + "priority": 0, + "shape": [ + "AA", + "AB", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 290 + } + ], + "priority": 0, + "shape": [ + "AA", + " B", + " B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 25 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 340, + "damage": -1 + } + }, + "output": [ + { + "id": 47 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 4 + }, + "C": { + "id": 265, + "damage": -1 + }, + "D": { + "id": 331, + "damage": -1 + } + }, + "output": [ + { + "id": 33, + "damage": 1 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BCB", + "BDB" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + }, + "B": { + "id": 736, + "damage": -1 + } + }, + "output": [ + { + "id": -219 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 280, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A", + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 281, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A A", + " A " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 54 + } + ], + "priority": 0, + "shape": [ + "AAA", + "A A", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": -1 + } + }, + "output": [ + { + "id": 58 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + }, + "B": { + "id": 269, + "damage": -1 + } + }, + "output": [ + { + "id": 333, + "damage": 1 + } + ], + "priority": 0, + "shape": [ + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 472, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 85, + "damage": 1, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + } + }, + "output": [ + { + "id": -144 + } + ], + "priority": 50, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + } + }, + "output": [ + { + "id": -149, + "count": 2 + } + ], + "priority": 50, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + } + }, + "output": [ + { + "id": -154 + } + ], + "priority": 50, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + } + }, + "output": [ + { + "id": 134, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + } + }, + "output": [ + { + "id": 134, + "count": 4 + } + ], + "priority": 50, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + } + }, + "output": [ + { + "id": 158, + "damage": 1, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 1 + } + }, + "output": [ + { + "id": 427, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + }, + "B": { + "id": 269, + "damage": -1 + } + }, + "output": [ + { + "id": 333, + "damage": 2 + } + ], + "priority": 0, + "shape": [ + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 473, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 85, + "damage": 2, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + } + }, + "output": [ + { + "id": -141 + } + ], + "priority": 50, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + } + }, + "output": [ + { + "id": -146, + "count": 2 + } + ], + "priority": 50, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + } + }, + "output": [ + { + "id": -151 + } + ], + "priority": 50, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + } + }, + "output": [ + { + "id": 135, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + } + }, + "output": [ + { + "id": 135, + "count": 4 + } + ], + "priority": 50, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + } + }, + "output": [ + { + "id": 158, + "damage": 2, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 2 + } + }, + "output": [ + { + "id": 428, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + }, + "B": { + "id": 269, + "damage": -1 + } + }, + "output": [ + { + "id": 333, + "damage": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 474, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 85, + "damage": 3, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + } + }, + "output": [ + { + "id": -143 + } + ], + "priority": 50, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + } + }, + "output": [ + { + "id": -148, + "count": 2 + } + ], + "priority": 50, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + } + }, + "output": [ + { + "id": -153 + } + ], + "priority": 50, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + } + }, + "output": [ + { + "id": 136, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + } + }, + "output": [ + { + "id": 136, + "count": 4 + } + ], + "priority": 50, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + } + }, + "output": [ + { + "id": 158, + "damage": 3, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 3 + } + }, + "output": [ + { + "id": 429, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + }, + "B": { + "id": 269, + "damage": -1 + } + }, + "output": [ + { + "id": 333, + "damage": 4 + } + ], + "priority": 0, + "shape": [ + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 475, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 85, + "damage": 4, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + } + }, + "output": [ + { + "id": -140 + } + ], + "priority": 50, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + } + }, + "output": [ + { + "id": -145, + "count": 2 + } + ], + "priority": 50, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + } + }, + "output": [ + { + "id": -150 + } + ], + "priority": 50, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + } + }, + "output": [ + { + "id": 158, + "damage": 4, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + } + }, + "output": [ + { + "id": 163, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + } + }, + "output": [ + { + "id": 163, + "count": 4 + } + ], + "priority": 50, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 4 + } + }, + "output": [ + { + "id": 430, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + }, + "B": { + "id": 269, + "damage": -1 + } + }, + "output": [ + { + "id": 333, + "damage": 5 + } + ], + "priority": 0, + "shape": [ + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 476, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 85, + "damage": 5, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + } + }, + "output": [ + { + "id": -142 + } + ], + "priority": 50, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + } + }, + "output": [ + { + "id": -147, + "count": 2 + } + ], + "priority": 50, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + } + }, + "output": [ + { + "id": -152 + } + ], + "priority": 50, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + } + }, + "output": [ + { + "id": 158, + "damage": 5, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + } + }, + "output": [ + { + "id": 164, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + } + }, + "output": [ + { + "id": 164, + "count": 4 + } + ], + "priority": 50, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5, + "damage": 5 + } + }, + "output": [ + { + "id": 431, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 54, + "damage": -1 + }, + "B": { + "id": 328, + "damage": -1 + } + }, + "output": [ + { + "id": 342 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 57, + "damage": -1 + } + }, + "output": [ + { + "id": 264, + "count": 9 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + }, + "B": { + "id": 269, + "damage": -1 + } + }, + "output": [ + { + "id": 333 + } + ], + "priority": 0, + "shape": [ + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 323, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + " B " + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + }, + "B": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 85, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ABA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + } + }, + "output": [ + { + "id": 143 + } + ], + "priority": 50, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + } + }, + "output": [ + { + "id": 158, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + } + }, + "output": [ + { + "id": 324, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + } + }, + "output": [ + { + "id": 53, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + } + }, + "output": [ + { + "id": 53, + "count": 4 + } + ], + "priority": 50, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + } + }, + "output": [ + { + "id": 72 + } + ], + "priority": 50, + "shape": [ + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 5 + } + }, + "output": [ + { + "id": 96, + "count": 2 + } + ], + "priority": 50, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 736, + "damage": -1 + } + }, + "output": [ + { + "id": -221 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 737, + "damage": -1 + } + }, + "output": [ + { + "id": -220 + }, + { + "id": 374, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "AA", + "AA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 737, + "damage": -1 + } + }, + "output": [ + { + "id": 353, + "count": 3 + }, + { + "id": 374 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 742, + "damage": -1 + } + }, + "output": [ + { + "id": -270 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 76, + "damage": -1 + }, + "B": { + "id": 331, + "damage": -1 + }, + "C": { + "id": 1 + } + }, + "output": [ + { + "id": 356 + } + ], + "priority": 0, + "shape": [ + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 76, + "damage": -1 + }, + "B": { + "id": 406, + "damage": -1 + }, + "C": { + "id": 1 + } + }, + "output": [ + { + "id": 404 + } + ], + "priority": 0, + "shape": [ + " A ", + "ABA", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 79, + "damage": -1 + } + }, + "output": [ + { + "id": 174 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 80, + "damage": -1 + } + }, + "output": [ + { + "id": 78, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 86, + "damage": -1 + } + }, + "output": [ + { + "id": 361, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 98, + "damage": 1 + } + }, + "output": [ + { + "id": -166, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 98, + "damage": 1 + } + }, + "output": [ + { + "id": -175, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 98, + "damage": 1 + } + }, + "output": [ + { + "id": 139, + "damage": 8, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 98, + "damage": 3 + }, + "B": { + "id": 742, + "damage": -1 + } + }, + "output": [ + { + "id": -222 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 98 + } + }, + "output": [ + { + "id": 109, + "count": 4 + } + ], + "priority": 0, + "shape": [ + "A ", + "AA ", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 98 + } + }, + "output": [ + { + "id": 139, + "damage": 7, + "count": 6 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 98 + } + }, + "output": [ + { + "id": 44, + "damage": 5, + "count": 6 + } + ], + "priority": 50, + "shape": [ + "AAA" + ] + } + ], + "shaped_chemistry": [ + { + "block": "crafting_table", + "input": { + "A": { + "id": -22 + }, + "B": { + "id": 46 + } + }, + "output": [ + { + "id": 46, + "damage": 2 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": -23 + }, + "B": { + "id": 50 + } + }, + "output": [ + { + "id": 239 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 10 + } + }, + "output": [ + { + "id": 254, + "damage": 5, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 11 + } + }, + "output": [ + { + "id": 254, + "damage": 4, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 12 + } + }, + "output": [ + { + "id": 254, + "damage": 3, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 13 + } + }, + "output": [ + { + "id": 254, + "damage": 2, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 1, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 15 + } + }, + "output": [ + { + "id": 254, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 16 + } + }, + "output": [ + { + "id": 254, + "damage": 15, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 17 + } + }, + "output": [ + { + "id": 254, + "damage": 12, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 18 + } + }, + "output": [ + { + "id": 254, + "damage": 11, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 19 + } + }, + "output": [ + { + "id": 254, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 1 + } + }, + "output": [ + { + "id": 254, + "damage": 14, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 2 + } + }, + "output": [ + { + "id": 254, + "damage": 13, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 3 + } + }, + "output": [ + { + "id": 254, + "damage": 12, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 4 + } + }, + "output": [ + { + "id": 254, + "damage": 11, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 5 + } + }, + "output": [ + { + "id": 254, + "damage": 10, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 6 + } + }, + "output": [ + { + "id": 254, + "damage": 9, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 7 + } + }, + "output": [ + { + "id": 254, + "damage": 8, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 8 + } + }, + "output": [ + { + "id": 254, + "damage": 7, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351, + "damage": 9 + } + }, + "output": [ + { + "id": 254, + "damage": 6, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + }, + "B": { + "id": 351 + } + }, + "output": [ + { + "id": 254, + "damage": 15, + "count": 8 + } + ], + "priority": 0, + "shape": [ + "AAA", + "ABA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 253 + } + }, + "output": [ + { + "id": 190, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 10 + } + }, + "output": [ + { + "id": 191, + "damage": 10, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 11 + } + }, + "output": [ + { + "id": 191, + "damage": 11, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 11 + } + }, + "output": [ + { + "id": 191, + "damage": 11, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 12 + } + }, + "output": [ + { + "id": 191, + "damage": 12, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 12 + } + }, + "output": [ + { + "id": 191, + "damage": 12, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 13 + } + }, + "output": [ + { + "id": 191, + "damage": 13, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 14, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 15 + } + }, + "output": [ + { + "id": 191, + "damage": 15, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 15 + } + }, + "output": [ + { + "id": 191, + "damage": 15, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 1 + } + }, + "output": [ + { + "id": 191, + "damage": 1, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 2 + } + }, + "output": [ + { + "id": 191, + "damage": 2, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 3 + } + }, + "output": [ + { + "id": 191, + "damage": 3, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 4 + } + }, + "output": [ + { + "id": 191, + "damage": 4, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 5 + } + }, + "output": [ + { + "id": 191, + "damage": 5, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 6 + } + }, + "output": [ + { + "id": 191, + "damage": 6, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 7 + } + }, + "output": [ + { + "id": 191, + "damage": 7, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 8 + } + }, + "output": [ + { + "id": 191, + "damage": 8, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254, + "damage": 9 + } + }, + "output": [ + { + "id": 191, + "damage": 9, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254 + } + }, + "output": [ + { + "id": 191, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 254 + } + }, + "output": [ + { + "id": 191, + "count": 16 + } + ], + "priority": 0, + "shape": [ + "AAA", + "AAA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 102 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 190, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 10 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 10, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 11 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 11, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 11 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 11, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 12 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 12, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 12 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 12, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 13 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 13, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 14 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 14, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 15 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 15, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 15 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 15, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 1 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 1, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 2 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 2, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 3 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 3, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 4 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 4, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 5 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 5, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 6 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 6, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 7 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 7, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 8 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 8, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160, + "damage": 9 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "damage": 9, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 160 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 191, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 20 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 253, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 10 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 10, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 11 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 11, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 11 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 11, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 12 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 12, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 12 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 12, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 13 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 13, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 14 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 14, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 15 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 15, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 15 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 15, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 1 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 1, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 2 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 2, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 3 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 3, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 4 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 4, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 5 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 5, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 6 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 6, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 7 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 7, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 8 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 8, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241, + "damage": 9 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "damage": 9, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 13 + }, + "B": { + "id": 241 + }, + "C": { + "id": 499, + "damage": 14 + } + }, + "output": [ + { + "id": 254, + "count": 3 + } + ], + "priority": 0, + "shape": [ + "AAA", + "BBB", + "CCC" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 10 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 10 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 11 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 11 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 12 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 12 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 13 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 13 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 14 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 14 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 17 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 18 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 4 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 19 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 15 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 1 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 1 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 2 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 2 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 5 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 5 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 6 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 6 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 8 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 8 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 16 + }, + "B": { + "id": 499, + "damage": 35 + }, + "C": { + "id": 351, + "damage": 9 + }, + "D": { + "id": 499, + "damage": 10 + } + }, + "output": [ + { + "id": 166, + "damage": 9 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 21 + }, + "B": { + "id": -23 + }, + "C": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 442, + "damage": 5 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 21 + }, + "B": { + "id": 50 + } + }, + "output": [ + { + "id": 204, + "damage": 8 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 22 + }, + "B": { + "id": -23 + }, + "C": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 442, + "damage": 1 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 22 + }, + "B": { + "id": 50 + } + }, + "output": [ + { + "id": 202 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 23 + }, + "B": { + "id": -23 + }, + "C": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 442, + "damage": 4 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 23 + }, + "B": { + "id": 50 + } + }, + "output": [ + { + "id": 204 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 24 + }, + "B": { + "id": -23 + }, + "C": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 442, + "damage": 2 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 24 + }, + "B": { + "id": 50 + } + }, + "output": [ + { + "id": 202, + "damage": 8 + } + ], + "priority": 0, + "shape": [ + "A", + "B" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 25 + }, + "B": { + "id": -23 + }, + "C": { + "id": 280, + "damage": -1 + } + }, + "output": [ + { + "id": 442, + "damage": 14 + } + ], + "priority": 0, + "shape": [ + "A", + "B", + "C" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 10 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 5 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 11 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 4 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 12 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 3 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 13 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 2 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 14 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 1 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 15 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 16 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 15 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 17 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 12 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 18 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 11 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 19 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 1 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 14 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 2 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 13 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 3 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 12 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 4 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 11 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 5 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 10 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 6 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 9 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 7 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 8 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 8 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 7 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351, + "damage": 9 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 6 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + }, + { + "block": "crafting_table", + "input": { + "A": { + "id": 499, + "damage": 30 + }, + "B": { + "id": 351 + }, + "C": { + "id": -13 + }, + "D": { + "id": 420, + "damage": -1 + } + }, + "output": [ + { + "id": 448, + "damage": 15 + } + ], + "priority": 0, + "shape": [ + "ABA", + "ACA", + "ADA" + ] + } + ], + "shapeless": [ + { + "block": "cartography_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 345, + "damage": -1 + } + ], + "output": [ + { + "id": 395, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "cartography_table", + "input": [ + { + "id": 339, + "damage": -1 + } + ], + "output": [ + { + "id": 395 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": -216, + "damage": -1 + } + ], + "output": [ + { + "id": 351, + "damage": 16 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": -220, + "damage": -1 + }, + { + "id": 374, + "damage": -1 + }, + { + "id": 374, + "damage": -1 + }, + { + "id": 374, + "damage": -1 + }, + { + "id": 374, + "damage": -1 + } + ], + "output": [ + { + "id": 737, + "count": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 1, + "damage": 3 + }, + { + "id": 4, + "damage": -1 + } + ], + "output": [ + { + "id": 1, + "damage": 5, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 1, + "damage": 3 + }, + { + "id": 406, + "damage": -1 + } + ], + "output": [ + { + "id": 1, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 175, + "damage": 1 + } + ], + "output": [ + { + "id": 351, + "damage": 13, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 175, + "damage": 4 + } + ], + "output": [ + { + "id": 351, + "damage": 1, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 175, + "damage": 5 + } + ], + "output": [ + { + "id": 351, + "damage": 9, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 175 + } + ], + "output": [ + { + "id": 351, + "damage": 11, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 216, + "damage": -1 + } + ], + "output": [ + { + "id": 351, + "damage": 15, + "count": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 265, + "damage": -1 + }, + { + "id": 318, + "damage": -1 + } + ], + "output": [ + { + "id": 259 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 281, + "damage": -1 + }, + { + "id": 393, + "damage": -1 + }, + { + "id": 391, + "damage": -1 + }, + { + "id": 39, + "damage": -1 + }, + { + "id": 412, + "damage": -1 + } + ], + "output": [ + { + "id": 413 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 281, + "damage": -1 + }, + { + "id": 393, + "damage": -1 + }, + { + "id": 391, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 412, + "damage": -1 + } + ], + "output": [ + { + "id": 413 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 281, + "damage": -1 + }, + { + "id": 457, + "damage": -1 + }, + { + "id": 457, + "damage": -1 + }, + { + "id": 457, + "damage": -1 + }, + { + "id": 457, + "damage": -1 + }, + { + "id": 457, + "damage": -1 + }, + { + "id": 457, + "damage": -1 + } + ], + "output": [ + { + "id": 459 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 402, + "damage": 10, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 402, + "damage": 11, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 402, + "damage": 12, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 402, + "damage": 13, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 402, + "damage": 14, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 402, + "damage": 15, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 402, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 402, + "damage": 3, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 402, + "damage": 4, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 402, + "damage": 15, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 402, + "damage": 1, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 402, + "damage": 2, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 402, + "damage": 3, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 402, + "damage": 4, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 402, + "damage": 5, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 402, + "damage": 6, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 402, + "damage": 7, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 402, + "damage": 8, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 402, + "damage": 9, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 289, + "damage": -1 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 402, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d\/wA=" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 30, + "damage": -1 + } + ], + "output": [ + { + "id": 287, + "count": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 106, + "damage": -1 + } + ], + "output": [ + { + "id": 434, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + }, + { + "id": 402, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + } + ], + "output": [ + { + "id": 401, + "count": 3, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 38, + "damage": 8 + } + ], + "output": [ + { + "id": 434, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 397, + "damage": 1 + } + ], + "output": [ + { + "id": 434, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 397, + "damage": 4 + } + ], + "output": [ + { + "id": 434 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 45, + "damage": -1 + } + ], + "output": [ + { + "id": 434, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339, + "damage": -1 + }, + { + "id": 466, + "damage": -1 + } + ], + "output": [ + { + "id": 434, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 339 + }, + { + "id": 339 + }, + { + "id": 339 + }, + { + "id": 334 + } + ], + "output": [ + { + "id": 340 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 340, + "damage": -1 + }, + { + "id": 351 + }, + { + "id": 288, + "damage": -1 + } + ], + "output": [ + { + "id": 386 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 5, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 10 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 4, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 11 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 3, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 12 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 2, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 13 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 1, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 14 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "count": 8 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 19 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 15, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 351, + "damage": 15 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 7, + "count": 3 + } + ], + "priority": 7 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 8, + "count": 2 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 351, + "damage": 19 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 7, + "count": 3 + } + ], + "priority": 3 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 8, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 16 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 12, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 17 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 11, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 12, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 12, + "count": 2 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 13, + "count": 4 + } + ], + "priority": 6 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 13, + "count": 4 + } + ], + "priority": 4 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 351, + "damage": 13, + "count": 3 + } + ], + "priority": 2 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 351, + "damage": 5, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 351, + "damage": 6, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 18 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 19 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 14, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 351, + "damage": 14, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 9, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 9, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 1 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 13, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 10, + "count": 2 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 10, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 2 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 12, + "count": 8 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 351, + "damage": 17 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 11, + "count": 8 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 12, + "count": 2 + } + ], + "priority": 4 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 12, + "count": 2 + } + ], + "priority": 3 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 13, + "count": 4 + } + ], + "priority": 8 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 13, + "count": 4 + } + ], + "priority": 7 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 351, + "damage": 13, + "count": 3 + } + ], + "priority": 5 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 351, + "damage": 5, + "count": 2 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 351, + "damage": 6, + "count": 2 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 351, + "damage": 18 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 10, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 351, + "damage": 13, + "count": 2 + } + ], + "priority": 3 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 5 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 9, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 6 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 8, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 7 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 7, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 7, + "count": 2 + } + ], + "priority": 6 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 7, + "count": 2 + } + ], + "priority": 4 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 8 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 6, + "count": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351, + "damage": 9 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 12 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + }, + { + "id": 13, + "damage": -1 + } + ], + "output": [ + { + "id": 237, + "damage": 15, + "count": 8 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 351, + "damage": 15 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 7, + "count": 3 + } + ], + "priority": 8 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 351, + "damage": 8, + "count": 2 + } + ], + "priority": 3 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 351, + "damage": 19 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 7, + "count": 3 + } + ], + "priority": 5 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 351, + "damage": 8, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + }, + { + "id": 35 + } + ], + "output": [ + { + "id": 35, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 351 + } + ], + "output": [ + { + "id": 351, + "damage": 16 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 352, + "damage": -1 + } + ], + "output": [ + { + "id": 351, + "damage": 15, + "count": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 10 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 11 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 12 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 13 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 14 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 15 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 1 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 2 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 3 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 4 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 5 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 6 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 7 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 8 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355, + "damage": 9 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 355, + "damage": 5 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 355, + "damage": 4 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 355, + "damage": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 355, + "damage": 2 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 355, + "damage": 1 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 355, + "damage": 14 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 355, + "damage": 13 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 355, + "damage": 12 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 355, + "damage": 11 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 355, + "damage": 10 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 355, + "damage": 9 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 355, + "damage": 8 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 355, + "damage": 7 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 355, + "damage": 6 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 355 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 355, + "damage": 15 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 368, + "damage": -1 + }, + { + "id": 377, + "damage": -1 + } + ], + "output": [ + { + "id": 381 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 369, + "damage": -1 + } + ], + "output": [ + { + "id": 377, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 375, + "damage": -1 + }, + { + "id": 39, + "damage": -1 + }, + { + "id": 353, + "damage": -1 + } + ], + "output": [ + { + "id": 376 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 377, + "damage": -1 + }, + { + "id": 263, + "damage": -1 + }, + { + "id": 289, + "damage": -1 + } + ], + "output": [ + { + "id": 385, + "count": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 377, + "damage": -1 + }, + { + "id": 263, + "damage": 1 + }, + { + "id": 289, + "damage": -1 + } + ], + "output": [ + { + "id": 385, + "count": 3 + } + ], + "priority": 50 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 377, + "damage": -1 + }, + { + "id": 341, + "damage": -1 + } + ], + "output": [ + { + "id": 378 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 37 + } + ], + "output": [ + { + "id": 351, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 10 + } + ], + "output": [ + { + "id": 351, + "damage": 19 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 1 + } + ], + "output": [ + { + "id": 351, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 2 + } + ], + "output": [ + { + "id": 351, + "damage": 13 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 3 + } + ], + "output": [ + { + "id": 351, + "damage": 7 + } + ], + "priority": 2 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 4 + } + ], + "output": [ + { + "id": 351, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 5 + } + ], + "output": [ + { + "id": 351, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 6 + } + ], + "output": [ + { + "id": 351, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 7 + } + ], + "output": [ + { + "id": 351, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 8 + } + ], + "output": [ + { + "id": 351, + "damage": 7 + } + ], + "priority": 1 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38, + "damage": 9 + } + ], + "output": [ + { + "id": 351, + "damage": 18 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 38 + } + ], + "output": [ + { + "id": 351, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": -216, + "damage": -1 + } + ], + "output": [ + { + "id": 734, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 37, + "damage": -1 + } + ], + "output": [ + { + "id": 734, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 10 + } + ], + "output": [ + { + "id": 734, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 1 + } + ], + "output": [ + { + "id": 734, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 2 + } + ], + "output": [ + { + "id": 734, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 3 + } + ], + "output": [ + { + "id": 734, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 4 + } + ], + "output": [ + { + "id": 734, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 5 + } + ], + "output": [ + { + "id": 734, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 6 + } + ], + "output": [ + { + "id": 734, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 7 + } + ], + "output": [ + { + "id": 734, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 8 + } + ], + "output": [ + { + "id": 734, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38, + "damage": 9 + } + ], + "output": [ + { + "id": 734, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + }, + { + "id": 38 + } + ], + "output": [ + { + "id": 734 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 39, + "damage": -1 + }, + { + "id": 40, + "damage": -1 + }, + { + "id": 281, + "damage": -1 + } + ], + "output": [ + { + "id": 282 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 395, + "damage": 1 + }, + { + "id": 345, + "damage": -1 + } + ], + "output": [ + { + "id": 395, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 395 + }, + { + "id": 345, + "damage": -1 + } + ], + "output": [ + { + "id": 395, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 4, + "damage": -1 + }, + { + "id": 106, + "damage": -1 + } + ], + "output": [ + { + "id": 48 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 457, + "damage": -1 + } + ], + "output": [ + { + "id": 351, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 54, + "damage": -1 + }, + { + "id": 131, + "damage": -1 + } + ], + "output": [ + { + "id": 146 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 752, + "damage": -1 + }, + { + "id": 752, + "damage": -1 + }, + { + "id": 752, + "damage": -1 + }, + { + "id": 752, + "damage": -1 + }, + { + "id": 266, + "damage": -1 + }, + { + "id": 266, + "damage": -1 + }, + { + "id": 266, + "damage": -1 + }, + { + "id": 266, + "damage": -1 + } + ], + "output": [ + { + "id": 742 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 86, + "damage": -1 + }, + { + "id": 353, + "damage": -1 + }, + { + "id": 344, + "damage": -1 + } + ], + "output": [ + { + "id": 400 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 98 + }, + { + "id": 106, + "damage": -1 + } + ], + "output": [ + { + "id": 98, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -183 + } + ], + "output": [ + { + "id": 44, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -234, + "damage": -1 + } + ], + "output": [ + { + "id": -235 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -274 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -275 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -276 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -277 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -278 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -279 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -282, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -284, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -291 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -292 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -293, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -273, + "damage": -1 + } + ], + "output": [ + { + "id": -297 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -274, + "damage": -1 + } + ], + "output": [ + { + "id": -275 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -274, + "damage": -1 + } + ], + "output": [ + { + "id": -278 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -274, + "damage": -1 + } + ], + "output": [ + { + "id": -284, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -291, + "damage": -1 + } + ], + "output": [ + { + "id": -274 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -291, + "damage": -1 + } + ], + "output": [ + { + "id": -275 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -291, + "damage": -1 + } + ], + "output": [ + { + "id": -278 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -291, + "damage": -1 + } + ], + "output": [ + { + "id": -279 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -291, + "damage": -1 + } + ], + "output": [ + { + "id": -284, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -291, + "damage": -1 + } + ], + "output": [ + { + "id": -292 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -291, + "damage": -1 + } + ], + "output": [ + { + "id": -293, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": -291, + "damage": -1 + } + ], + "output": [ + { + "id": -297 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 1 + } + ], + "output": [ + { + "id": -162, + "damage": 6, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 1 + } + ], + "output": [ + { + "id": -162, + "damage": 7, + "count": 2 + } + ], + "priority": 4 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 1 + } + ], + "output": [ + { + "id": -169 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 1 + } + ], + "output": [ + { + "id": -172 + } + ], + "priority": 5 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 1 + } + ], + "output": [ + { + "id": 1, + "damage": 2 + } + ], + "priority": 3 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 1 + } + ], + "output": [ + { + "id": 139, + "damage": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 2 + } + ], + "output": [ + { + "id": -162, + "damage": 7, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 2 + } + ], + "output": [ + { + "id": -172 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 3 + } + ], + "output": [ + { + "id": -162, + "damage": 4, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 3 + } + ], + "output": [ + { + "id": -162, + "damage": 5, + "count": 2 + } + ], + "priority": 4 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 3 + } + ], + "output": [ + { + "id": -170 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 3 + } + ], + "output": [ + { + "id": -173 + } + ], + "priority": 5 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 3 + } + ], + "output": [ + { + "id": 1, + "damage": 4 + } + ], + "priority": 3 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 3 + } + ], + "output": [ + { + "id": 139, + "damage": 3 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 4 + } + ], + "output": [ + { + "id": -162, + "damage": 5, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 4 + } + ], + "output": [ + { + "id": -173 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 5 + } + ], + "output": [ + { + "id": -162, + "damage": 2, + "count": 2 + } + ], + "priority": 4 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 5 + } + ], + "output": [ + { + "id": -162, + "damage": 3, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 5 + } + ], + "output": [ + { + "id": -171 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 5 + } + ], + "output": [ + { + "id": -174 + } + ], + "priority": 5 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 5 + } + ], + "output": [ + { + "id": 1, + "damage": 6 + } + ], + "priority": 3 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 5 + } + ], + "output": [ + { + "id": 139, + "damage": 4 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 6 + } + ], + "output": [ + { + "id": -162, + "damage": 2, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1, + "damage": 6 + } + ], + "output": [ + { + "id": -174 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 112, + "damage": -1 + } + ], + "output": [ + { + "id": -302 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 112 + } + ], + "output": [ + { + "id": 114 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 112 + } + ], + "output": [ + { + "id": 139, + "damage": 9 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 112 + } + ], + "output": [ + { + "id": 44, + "damage": 7, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 121 + } + ], + "output": [ + { + "id": -162, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 121 + } + ], + "output": [ + { + "id": -178 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 121 + } + ], + "output": [ + { + "id": 139, + "damage": 10 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 121 + } + ], + "output": [ + { + "id": 206 + } + ], + "priority": 3 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 155, + "damage": 3 + } + ], + "output": [ + { + "id": -166, + "damage": 1, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 155, + "damage": 3 + } + ], + "output": [ + { + "id": -185 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 155 + } + ], + "output": [ + { + "id": -304 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 155 + } + ], + "output": [ + { + "id": 155, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 155 + } + ], + "output": [ + { + "id": 155, + "damage": 2 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 155 + } + ], + "output": [ + { + "id": 156 + } + ], + "priority": 3 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 155 + } + ], + "output": [ + { + "id": 44, + "damage": 6, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 168, + "damage": 1 + } + ], + "output": [ + { + "id": -3 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 168, + "damage": 1 + } + ], + "output": [ + { + "id": 182, + "damage": 3, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 168, + "damage": 2 + } + ], + "output": [ + { + "id": -4 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 168, + "damage": 2 + } + ], + "output": [ + { + "id": 182, + "damage": 4, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 168 + } + ], + "output": [ + { + "id": -2 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 168 + } + ], + "output": [ + { + "id": 139, + "damage": 11 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 168 + } + ], + "output": [ + { + "id": 182, + "damage": 2, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 179, + "damage": 3 + } + ], + "output": [ + { + "id": -162, + "damage": 1, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 179, + "damage": 3 + } + ], + "output": [ + { + "id": -176 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 179 + } + ], + "output": [ + { + "id": 139, + "damage": 12 + } + ], + "priority": 4 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 179 + } + ], + "output": [ + { + "id": 179, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 179 + } + ], + "output": [ + { + "id": 179, + "damage": 2 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 179 + } + ], + "output": [ + { + "id": 180 + } + ], + "priority": 3 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 179 + } + ], + "output": [ + { + "id": 182, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1 + } + ], + "output": [ + { + "id": -166, + "damage": 2, + "count": 2 + } + ], + "priority": 5 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1 + } + ], + "output": [ + { + "id": -180 + } + ], + "priority": 6 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1 + } + ], + "output": [ + { + "id": 109 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1 + } + ], + "output": [ + { + "id": 139, + "damage": 7 + } + ], + "priority": 3 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1 + } + ], + "output": [ + { + "id": 44, + "damage": 5, + "count": 2 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1 + } + ], + "output": [ + { + "id": 98, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 1 + } + ], + "output": [ + { + "id": 98 + } + ], + "priority": 4 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 201 + } + ], + "output": [ + { + "id": 182, + "damage": 1, + "count": 2 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 201 + } + ], + "output": [ + { + "id": 201, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 201 + } + ], + "output": [ + { + "id": 203 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 206 + } + ], + "output": [ + { + "id": -162, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 206 + } + ], + "output": [ + { + "id": -178 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 206 + } + ], + "output": [ + { + "id": 139, + "damage": 10 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 215 + } + ], + "output": [ + { + "id": -184 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 215 + } + ], + "output": [ + { + "id": 139, + "damage": 13 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 215 + } + ], + "output": [ + { + "id": 182, + "damage": 7, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 24, + "damage": 3 + } + ], + "output": [ + { + "id": -177 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 24, + "damage": 3 + } + ], + "output": [ + { + "id": 182, + "damage": 6, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 24 + } + ], + "output": [ + { + "id": 128 + } + ], + "priority": 3 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 24 + } + ], + "output": [ + { + "id": 139, + "damage": 5 + } + ], + "priority": 4 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 24 + } + ], + "output": [ + { + "id": 24, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 24 + } + ], + "output": [ + { + "id": 24, + "damage": 2 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 24 + } + ], + "output": [ + { + "id": 44, + "damage": 1, + "count": 2 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 45 + } + ], + "output": [ + { + "id": 108 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 45 + } + ], + "output": [ + { + "id": 139, + "damage": 6 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 45 + } + ], + "output": [ + { + "id": 44, + "damage": 4, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 48 + } + ], + "output": [ + { + "id": -179 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 48 + } + ], + "output": [ + { + "id": 139, + "damage": 1 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 48 + } + ], + "output": [ + { + "id": 182, + "damage": 5, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 4 + } + ], + "output": [ + { + "id": 139 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 4 + } + ], + "output": [ + { + "id": 44, + "damage": 3, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 4 + } + ], + "output": [ + { + "id": 67 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 98, + "damage": 1 + } + ], + "output": [ + { + "id": -166, + "count": 2 + } + ], + "priority": 0 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 98, + "damage": 1 + } + ], + "output": [ + { + "id": -175 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 98, + "damage": 1 + } + ], + "output": [ + { + "id": 139, + "damage": 8 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 98 + } + ], + "output": [ + { + "id": 109 + } + ], + "priority": 1 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 98 + } + ], + "output": [ + { + "id": 139, + "damage": 7 + } + ], + "priority": 2 + }, + { + "block": "stonecutter", + "input": [ + { + "id": 98 + } + ], + "output": [ + { + "id": 44, + "damage": 5, + "count": 2 + } + ], + "priority": 0 + } + ], + "shapeless_chemistry": [ + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 10 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 11 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 12 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 13 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 14 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 15 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 1 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 2 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 3 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 4 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 5 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 6 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 7 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 8 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 171, + "damage": 9 + } + ], + "output": [ + { + "id": 171 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 10 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 11 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 12 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 13 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 14 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 15 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 1 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 2 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 3 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 4 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 5 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 6 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 7 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 8 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 35, + "damage": 9 + } + ], + "output": [ + { + "id": 35 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 10 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 11 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 12 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 13 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 14 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 15 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 1 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 2 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 3 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 4 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 5 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 6 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 7 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 8 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 355, + "damage": 9 + } + ], + "output": [ + { + "id": 355 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 10 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 11 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 12 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 13 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 14 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 1 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 2 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 3 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 4 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 5 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 6 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 7 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 8 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446, + "damage": 9 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 451, + "damage": -1 + }, + { + "id": 446 + } + ], + "output": [ + { + "id": 446, + "damage": 15 + } + ], + "priority": 0 + } + ], + "shapeless_shulker_box": [ + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 205 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 10 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 11 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 12 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 13 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 14 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 15 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 1 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 2 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 3 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 4 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 5 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 6 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 7 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 8 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 15 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 19 + } + ], + "output": [ + { + "id": 218 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218, + "damage": 9 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 10 + } + ], + "output": [ + { + "id": 218, + "damage": 5 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 11 + } + ], + "output": [ + { + "id": 218, + "damage": 4 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 12 + } + ], + "output": [ + { + "id": 218, + "damage": 3 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 13 + } + ], + "output": [ + { + "id": 218, + "damage": 2 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 14 + } + ], + "output": [ + { + "id": 218, + "damage": 1 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 16 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 17 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 18 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 1 + } + ], + "output": [ + { + "id": 218, + "damage": 14 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 2 + } + ], + "output": [ + { + "id": 218, + "damage": 13 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 3 + } + ], + "output": [ + { + "id": 218, + "damage": 12 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 4 + } + ], + "output": [ + { + "id": 218, + "damage": 11 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 5 + } + ], + "output": [ + { + "id": 218, + "damage": 10 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 6 + } + ], + "output": [ + { + "id": 218, + "damage": 9 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 7 + } + ], + "output": [ + { + "id": 218, + "damage": 8 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 8 + } + ], + "output": [ + { + "id": 218, + "damage": 7 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351, + "damage": 9 + } + ], + "output": [ + { + "id": 218, + "damage": 6 + } + ], + "priority": 0 + }, + { + "block": "crafting_table", + "input": [ + { + "id": 218 + }, + { + "id": 351 + } + ], + "output": [ + { + "id": 218, + "damage": 15 + } + ], + "priority": 0 + } + ], + "smelting": [ + { + "block": "blast_furnace", + "input": { + "id": -271, + "damage": -1 + }, + "output": { + "id": 752 + } + }, + { + "block": "blast_furnace", + "input": { + "id": -288, + "damage": -1 + }, + "output": { + "id": 266 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 129, + "damage": -1 + }, + "output": { + "id": 388 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 14, + "damage": -1 + }, + "output": { + "id": 266 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 15, + "damage": -1 + }, + "output": { + "id": 265 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 153, + "damage": -1 + }, + "output": { + "id": 406 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 16, + "damage": -1 + }, + "output": { + "id": 263 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 21, + "damage": -1 + }, + "output": { + "id": 351, + "damage": 4 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 256, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 257, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 258, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 267, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 283, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 284, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 285, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 286, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 292, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 294, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 302 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 303 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 304 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 305 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 306 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 307 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 308 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 309 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 314 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 315 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 316 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 317 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 417, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 418, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 56, + "damage": -1 + }, + "output": { + "id": 264 + } + }, + { + "block": "blast_furnace", + "input": { + "id": 73, + "damage": -1 + }, + "output": { + "id": 331 + } + }, + { + "block": "campfire", + "input": { + "id": 319, + "damage": -1 + }, + "output": { + "id": 320 + } + }, + { + "block": "campfire", + "input": { + "id": 335, + "damage": -1 + }, + "output": { + "id": 464 + } + }, + { + "block": "campfire", + "input": { + "id": 349, + "damage": -1 + }, + "output": { + "id": 350 + } + }, + { + "block": "campfire", + "input": { + "id": 363, + "damage": -1 + }, + "output": { + "id": 364 + } + }, + { + "block": "campfire", + "input": { + "id": 365, + "damage": -1 + }, + "output": { + "id": 366 + } + }, + { + "block": "campfire", + "input": { + "id": 392, + "damage": -1 + }, + "output": { + "id": 393 + } + }, + { + "block": "campfire", + "input": { + "id": 411, + "damage": -1 + }, + "output": { + "id": 412 + } + }, + { + "block": "campfire", + "input": { + "id": 423, + "damage": -1 + }, + "output": { + "id": 424 + } + }, + { + "block": "campfire", + "input": { + "id": 460, + "damage": -1 + }, + "output": { + "id": 463 + } + }, + { + "block": "furnace", + "input": { + "id": -10, + "damage": -1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -156, + "damage": -1 + }, + "output": { + "id": 351, + "damage": 10 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 10 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 11 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 12 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 13 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 2 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 3 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 4 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 5 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 8 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212, + "damage": 9 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -212 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -271, + "damage": -1 + }, + "output": { + "id": 752 + } + }, + { + "block": "furnace", + "input": { + "id": -274, + "damage": -1 + }, + "output": { + "id": -280 + } + }, + { + "block": "furnace", + "input": { + "id": -288, + "damage": -1 + }, + "output": { + "id": 266 + } + }, + { + "block": "furnace", + "input": { + "id": -5, + "damage": -1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -6, + "damage": -1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -7, + "damage": -1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -8, + "damage": -1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": -9, + "damage": -1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": 112, + "damage": -1 + }, + "output": { + "id": -303 + } + }, + { + "block": "furnace", + "input": { + "id": 12, + "damage": -1 + }, + "output": { + "id": 20 + } + }, + { + "block": "furnace", + "input": { + "id": 129, + "damage": -1 + }, + "output": { + "id": 388 + } + }, + { + "block": "furnace", + "input": { + "id": 14, + "damage": -1 + }, + "output": { + "id": 266 + } + }, + { + "block": "furnace", + "input": { + "id": 15, + "damage": -1 + }, + "output": { + "id": 265 + } + }, + { + "block": "furnace", + "input": { + "id": 153, + "damage": -1 + }, + "output": { + "id": 406 + } + }, + { + "block": "furnace", + "input": { + "id": 155 + }, + "output": { + "id": 155, + "damage": 3 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 10 + }, + "output": { + "id": 219 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 11 + }, + "output": { + "id": 231 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 12 + }, + "output": { + "id": 232 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 13 + }, + "output": { + "id": 233 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 14 + }, + "output": { + "id": 234 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 15 + }, + "output": { + "id": 235 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 1 + }, + "output": { + "id": 221 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 2 + }, + "output": { + "id": 222 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 3 + }, + "output": { + "id": 223 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 4 + }, + "output": { + "id": 224 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 5 + }, + "output": { + "id": 225 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 6 + }, + "output": { + "id": 226 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 7 + }, + "output": { + "id": 227 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 8 + }, + "output": { + "id": 228 + } + }, + { + "block": "furnace", + "input": { + "id": 159, + "damage": 9 + }, + "output": { + "id": 229 + } + }, + { + "block": "furnace", + "input": { + "id": 159 + }, + "output": { + "id": 220 + } + }, + { + "block": "furnace", + "input": { + "id": 16, + "damage": -1 + }, + "output": { + "id": 263 + } + }, + { + "block": "furnace", + "input": { + "id": 162, + "damage": 1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": 162 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": 17, + "damage": 1 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": 17, + "damage": 2 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": 17, + "damage": 3 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": 179, + "damage": -1 + }, + "output": { + "id": 179, + "damage": 3 + } + }, + { + "block": "furnace", + "input": { + "id": 17 + }, + "output": { + "id": 263, + "damage": 1 + } + }, + { + "block": "furnace", + "input": { + "id": 19, + "damage": 1 + }, + "output": { + "id": 19 + } + }, + { + "block": "furnace", + "input": { + "id": 1 + }, + "output": { + "id": -183 + } + }, + { + "block": "furnace", + "input": { + "id": 21, + "damage": -1 + }, + "output": { + "id": 351, + "damage": 4 + } + }, + { + "block": "furnace", + "input": { + "id": 24, + "damage": -1 + }, + "output": { + "id": 24, + "damage": 3 + } + }, + { + "block": "furnace", + "input": { + "id": 256, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 257, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 258, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 267, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 283, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 284, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 285, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 286, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 292, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 294, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 302 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 303 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 304 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 305 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 306 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 307 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 308 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 309 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 314 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 315 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 316 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 317 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 319, + "damage": -1 + }, + "output": { + "id": 320 + } + }, + { + "block": "furnace", + "input": { + "id": 335, + "damage": -1 + }, + "output": { + "id": 464 + } + }, + { + "block": "furnace", + "input": { + "id": 337, + "damage": -1 + }, + "output": { + "id": 336 + } + }, + { + "block": "furnace", + "input": { + "id": 349, + "damage": -1 + }, + "output": { + "id": 350 + } + }, + { + "block": "furnace", + "input": { + "id": 363, + "damage": -1 + }, + "output": { + "id": 364 + } + }, + { + "block": "furnace", + "input": { + "id": 365, + "damage": -1 + }, + "output": { + "id": 366 + } + }, + { + "block": "furnace", + "input": { + "id": 392, + "damage": -1 + }, + "output": { + "id": 393 + } + }, + { + "block": "furnace", + "input": { + "id": 4, + "damage": -1 + }, + "output": { + "id": 1 + } + }, + { + "block": "furnace", + "input": { + "id": 411, + "damage": -1 + }, + "output": { + "id": 412 + } + }, + { + "block": "furnace", + "input": { + "id": 417, + "damage": -1 + }, + "output": { + "id": 452 + } + }, + { + "block": "furnace", + "input": { + "id": 418, + "damage": -1 + }, + "output": { + "id": 371 + } + }, + { + "block": "furnace", + "input": { + "id": 423, + "damage": -1 + }, + "output": { + "id": 424 + } + }, + { + "block": "furnace", + "input": { + "id": 432, + "damage": -1 + }, + "output": { + "id": 433 + } + }, + { + "block": "furnace", + "input": { + "id": 460, + "damage": -1 + }, + "output": { + "id": 463 + } + }, + { + "block": "furnace", + "input": { + "id": 56, + "damage": -1 + }, + "output": { + "id": 264 + } + }, + { + "block": "furnace", + "input": { + "id": 73, + "damage": -1 + }, + "output": { + "id": 331 + } + }, + { + "block": "furnace", + "input": { + "id": 81, + "damage": -1 + }, + "output": { + "id": 351, + "damage": 2 + } + }, + { + "block": "furnace", + "input": { + "id": 82, + "damage": -1 + }, + "output": { + "id": 172 + } + }, + { + "block": "furnace", + "input": { + "id": 87, + "damage": -1 + }, + "output": { + "id": 405 + } + }, + { + "block": "furnace", + "input": { + "id": 98 + }, + "output": { + "id": 98, + "damage": 2 + } + }, + { + "block": "smoker", + "input": { + "id": 319, + "damage": -1 + }, + "output": { + "id": 320 + } + }, + { + "block": "smoker", + "input": { + "id": 335, + "damage": -1 + }, + "output": { + "id": 464 + } + }, + { + "block": "smoker", + "input": { + "id": 349, + "damage": -1 + }, + "output": { + "id": 350 + } + }, + { + "block": "smoker", + "input": { + "id": 363, + "damage": -1 + }, + "output": { + "id": 364 + } + }, + { + "block": "smoker", + "input": { + "id": 365, + "damage": -1 + }, + "output": { + "id": 366 + } + }, + { + "block": "smoker", + "input": { + "id": 392, + "damage": -1 + }, + "output": { + "id": 393 + } + }, + { + "block": "smoker", + "input": { + "id": 411, + "damage": -1 + }, + "output": { + "id": 412 + } + }, + { + "block": "smoker", + "input": { + "id": 423, + "damage": -1 + }, + "output": { + "id": 424 + } + }, + { + "block": "smoker", + "input": { + "id": 460, + "damage": -1 + }, + "output": { + "id": 463 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 319, + "damage": -1 + }, + "output": { + "id": 320 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 335, + "damage": -1 + }, + "output": { + "id": 464 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 349, + "damage": -1 + }, + "output": { + "id": 350 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 363, + "damage": -1 + }, + "output": { + "id": 364 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 365, + "damage": -1 + }, + "output": { + "id": 366 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 392, + "damage": -1 + }, + "output": { + "id": 393 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 411, + "damage": -1 + }, + "output": { + "id": 412 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 423, + "damage": -1 + }, + "output": { + "id": 424 + } + }, + { + "block": "soul_campfire", + "input": { + "id": 460, + "damage": -1 + }, + "output": { + "id": 463 + } + } + ], + "special_hardcoded": [ + "00000000-0000-0000-0000-000000000001", + "00000000-0000-0000-0000-000000000002", + "442d85ed-8272-4543-a6f1-418f90ded05d", + "602234e4-cac1-4353-8bb7-b1ebff70024b", + "85939755-ba10-4d9d-a4cc-efb7a8e943c4", + "8b36268c-1829-483c-a0f1-993b7156a8f2", + "98c84b38-1085-46bd-b1ce-dd38c159e6cc", + "aecd2294-4b94-434b-8667-4499bb2c9327", + "b5c5d105-75a2-4076-af2b-923ea2bf4bf0", + "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d", + "d392b075-4ba1-40ae-8789-af868d56f6ce", + "d81aaeaf-e172-4440-9225-868df030d27b" + ] +} \ No newline at end of file diff --git a/src/pocketmine/resources/vanilla/required_item_list.json b/src/pocketmine/resources/vanilla_OLD/required_item_list.json similarity index 100% rename from src/pocketmine/resources/vanilla/required_item_list.json rename to src/pocketmine/resources/vanilla_OLD/required_item_list.json diff --git a/tests/phpstan/configs/actual-problems.neon b/tests/phpstan/configs/actual-problems.neon index 3c3c68ec..6d18a52f 100644 --- a/tests/phpstan/configs/actual-problems.neon +++ b/tests/phpstan/configs/actual-problems.neon @@ -3378,37 +3378,37 @@ parameters: - message: "#^Argument of an invalid type array\\\\|null supplied for foreach, only iterables are supported\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Cannot access offset string on mixed\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - - message: "#^Method pocketmine\\\\network\\\\mcpe\\\\convert\\\\RuntimeBlockMapping\\:\\:getBedrockKnownStates\\(\\) should return array\\ but returns array\\\\|null\\.$#" + message: "#^Method pocketmine\\\\network\\\\mcpe\\\\convert\\\\NetworkBlockMapping\\:\\:getBedrockKnownStates\\(\\) should return array\\ but returns array\\\\|null\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Offset mixed does not exist on array\\\\|null\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Parameter \\#1 \\$buffer of class pocketmine\\\\network\\\\mcpe\\\\NetworkBinaryStream constructor expects string, string\\|false given\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Parameter \\#1 \\$json of function json_decode expects string, string\\|false given\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - - message: "#^Parameter \\#2 \\$legacyId of static method pocketmine\\\\network\\\\mcpe\\\\convert\\\\RuntimeBlockMapping\\:\\:registerMapping\\(\\) expects int, mixed given\\.$#" + message: "#^Parameter \\#2 \\$legacyId of static method pocketmine\\\\network\\\\mcpe\\\\convert\\\\NetworkBlockMapping\\:\\:registerMapping\\(\\) expects int, mixed given\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Method pocketmine\\\\network\\\\mcpe\\\\encryption\\\\EncryptionUtils\\:\\:generateKey\\(\\) should return string but returns string\\|false\\.$#" diff --git a/tests/phpstan/configs/check-explicit-mixed-baseline.neon b/tests/phpstan/configs/check-explicit-mixed-baseline.neon index 9c749296..585565da 100644 --- a/tests/phpstan/configs/check-explicit-mixed-baseline.neon +++ b/tests/phpstan/configs/check-explicit-mixed-baseline.neon @@ -353,12 +353,12 @@ parameters: - message: "#^Cannot access offset string on mixed\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Offset mixed does not exist on array\\\\|null\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Property pocketmine\\\\network\\\\mcpe\\\\protocol\\\\AddActorPacket\\:\\:\\$metadata \\(array\\\\) does not accept array\\\\.$#" diff --git a/tests/phpstan/configs/l7-baseline.neon b/tests/phpstan/configs/l7-baseline.neon index 0f6f063c..36b62442 100644 --- a/tests/phpstan/configs/l7-baseline.neon +++ b/tests/phpstan/configs/l7-baseline.neon @@ -633,12 +633,12 @@ parameters: - message: "#^Parameter \\#1 \\$buffer of class pocketmine\\\\network\\\\mcpe\\\\NetworkBinaryStream constructor expects string, string\\|false given\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Parameter \\#1 \\$json of function json_decode expects string, string\\|false given\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Parameter \\#1 \\$str of method pocketmine\\\\utils\\\\BinaryStream\\:\\:put\\(\\) expects string, string\\|false given\\.$#" diff --git a/tests/phpstan/configs/l8-baseline.neon b/tests/phpstan/configs/l8-baseline.neon index 03641bb0..aec2ff95 100644 --- a/tests/phpstan/configs/l8-baseline.neon +++ b/tests/phpstan/configs/l8-baseline.neon @@ -1443,12 +1443,12 @@ parameters: - message: "#^Argument of an invalid type array\\\\|null supplied for foreach, only iterables are supported\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - - message: "#^Method pocketmine\\\\network\\\\mcpe\\\\convert\\\\RuntimeBlockMapping\\:\\:getBedrockKnownStates\\(\\) should return array\\ but returns array\\\\|null\\.$#" + message: "#^Method pocketmine\\\\network\\\\mcpe\\\\convert\\\\NetworkBlockMapping\\:\\:getBedrockKnownStates\\(\\) should return array\\ but returns array\\\\|null\\.$#" count: 1 - path: ../../../src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php + path: ../../../src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php - message: "#^Parameter \\#1 \\$eid of method pocketmine\\\\network\\\\mcpe\\\\NetworkBinaryStream\\:\\:putEntityUniqueId\\(\\) expects int, int\\|null given\\.$#" From 01776f0cd82479c3071ef9d6bf93fd9104c67821 Mon Sep 17 00:00:00 2001 From: vp817 Date: Thu, 8 Aug 2024 00:56:53 +0300 Subject: [PATCH 2/9] nearly done --- src/pocketmine/Server.php | 3 - src/pocketmine/item/Item.php | 37 +- src/pocketmine/item/ItemFactory.php | 3 +- src/pocketmine/item/ItemIds.php | 10 +- src/pocketmine/level/format/Chunk.php | 27 +- .../network/mcpe/NetworkBinaryStream.php | 24 +- .../mcpe/convert/NetworkBlockMapping.php | 9 +- .../mcpe/convert/NetworkItemMapping.php | 123 +- .../mcpe/protocol/LevelEventPacket.php | 2 +- .../types/UpdateSubChunkBlocksPacketEntry.php | 18 +- .../inventory/UseItemTransactionData.php | 14 +- .../resources/vanilla_OLD/.gitattributes | 30 - .../resources/vanilla_OLD/.minify_json.php | 32 - src/pocketmine/resources/vanilla_OLD/LICENSE | 121 - .../resources/vanilla_OLD/README.md | 63 - .../vanilla_OLD/banner_patterns.json | 320 - .../vanilla_OLD/biome_definitions.nbt | Bin 41676 -> 0 bytes .../resources/vanilla_OLD/biome_id_map.json | 88 - .../resources/vanilla_OLD/block_id_map.json | 555 - .../vanilla_OLD/canonical_block_states.nbt | Bin 1987586 -> 0 bytes .../resources/vanilla_OLD/composer.json | 7 - .../resources/vanilla_OLD/creativeitems.json | 4901 -- .../resources/vanilla_OLD/entity_id_map.json | 130 - .../vanilla_OLD/entity_identifiers.nbt | Bin 8314 -> 0 bytes .../resources/vanilla_OLD/item_id_map.json | 812 - .../vanilla_OLD/level_sound_id_map.json | 487 - .../vanilla_OLD/particle_id_map.json | 87 - .../vanilla_OLD/r12_block_states.json | 4235 -- .../vanilla_OLD/r12_to_current_block_map.bin | Bin 371060 -> 0 bytes .../vanilla_OLD/r16_to_current_item_map.json | 572 - .../resources/vanilla_OLD/recipes.json | 49988 ---------------- .../vanilla_OLD/required_item_list.json | 6398 -- 32 files changed, 112 insertions(+), 68984 deletions(-) delete mode 100644 src/pocketmine/resources/vanilla_OLD/.gitattributes delete mode 100644 src/pocketmine/resources/vanilla_OLD/.minify_json.php delete mode 100644 src/pocketmine/resources/vanilla_OLD/LICENSE delete mode 100644 src/pocketmine/resources/vanilla_OLD/README.md delete mode 100644 src/pocketmine/resources/vanilla_OLD/banner_patterns.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/biome_definitions.nbt delete mode 100644 src/pocketmine/resources/vanilla_OLD/biome_id_map.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/block_id_map.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/canonical_block_states.nbt delete mode 100644 src/pocketmine/resources/vanilla_OLD/composer.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/creativeitems.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/entity_id_map.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/entity_identifiers.nbt delete mode 100644 src/pocketmine/resources/vanilla_OLD/item_id_map.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/level_sound_id_map.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/particle_id_map.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/r12_block_states.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/r12_to_current_block_map.bin delete mode 100644 src/pocketmine/resources/vanilla_OLD/r16_to_current_item_map.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/recipes.json delete mode 100644 src/pocketmine/resources/vanilla_OLD/required_item_list.json diff --git a/src/pocketmine/Server.php b/src/pocketmine/Server.php index f1ddc8da..e05d0791 100644 --- a/src/pocketmine/Server.php +++ b/src/pocketmine/Server.php @@ -73,13 +73,11 @@ use pocketmine\nbt\tag\StringTag; use pocketmine\network\AdvancedSourceInterface; use pocketmine\network\CompressBatchedTask; -use pocketmine\network\mcpe\convert\NetworkBlockMapping; use pocketmine\network\mcpe\encryption\EncryptionContext; use pocketmine\network\mcpe\protocol\BatchPacket; use pocketmine\network\mcpe\protocol\DataPacket; use pocketmine\network\mcpe\protocol\PlayerListPacket; use pocketmine\network\mcpe\protocol\ProtocolInfo; -use pocketmine\network\mcpe\protocol\types\LegacySkinAdapter; use pocketmine\network\mcpe\protocol\types\PlayerListEntry; use pocketmine\network\mcpe\protocol\types\SkinAdapterSingleton; use pocketmine\network\mcpe\RakLibInterface; @@ -1607,7 +1605,6 @@ public function __construct(\ClassLoader $autoloader, \AttachableThreadedLogger Entity::init(); Tile::init(); - NetworkBlockMapping::init(); // TEMP FOR DEV USE BlockFactory::init(); Enchantment::init(); ItemFactory::init(); diff --git a/src/pocketmine/item/Item.php b/src/pocketmine/item/Item.php index fb1baa91..110ba9e3 100644 --- a/src/pocketmine/item/Item.php +++ b/src/pocketmine/item/Item.php @@ -36,7 +36,6 @@ use pocketmine\item\enchantment\Enchantment; use pocketmine\item\enchantment\EnchantmentInstance; use pocketmine\math\Vector3; -use pocketmine\nbt\BigEndianNBTStream; use pocketmine\nbt\LittleEndianNBTStream; use pocketmine\nbt\NBT; use pocketmine\nbt\tag\ByteTag; @@ -57,11 +56,9 @@ use function base64_encode; use function file_get_contents; use function get_class; -use function hex2bin; use function is_string; use function json_decode; use function strlen; -use const DIRECTORY_SEPARATOR; use const pocketmine\RESOURCE_PATH; class Item implements ItemIds, JsonSerializable{ @@ -76,6 +73,8 @@ class Item implements ItemIds, JsonSerializable{ /** @var LittleEndianNBTStream|null */ private static $cachedParser = null; + private int $block_network_id = NetworkBlockMapping::NO_NETWORK_ID; + private static function parseCompoundTag(string $tag) : CompoundTag{ if($tag === ""){ throw new InvalidArgumentException("No NBT data found in supplied string"); @@ -265,6 +264,16 @@ public function getCompoundTag() : string{ return $this->nbt !== null ? self::writeCompoundTag($this->nbt) : ""; } + public function setBlockNetworkId(int $value): void + { + $this->block_network_id = $value; + } + + public function getBlockNetworkId(): int + { + return $this->block_network_id; + } + /** * Returns whether this Item has a non-empty NBT. */ @@ -809,7 +818,7 @@ final public function __toString() : string{ * @return mixed[] * @phpstan-return array{id: int, damage?: int, count?: int, nbt_b64?: string} */ - final public function jsonSerialize() : array{ + final public function jsonSerialize() : array{ // todo: this should contain block network id but later since it's not used in betteraltay $data = [ "id" => $this->getId() ]; @@ -837,31 +846,31 @@ final public function jsonSerialize() : array{ * @phpstan-param array{ * id: int, * damage?: int, - * count?: int, * nbt?: string, - * nbt_hex?: string, * nbt_b64?: string + * block_states_b64?: string * } $data */ final public static function jsonDeserialize(array $data) : ?Item{ - $id = ItemTypeDictionary::getInstance()->fromStringId($data["id"]); + if(isset($data["block_state_b64"])){ + $nbtStream = new NetworkBinaryStream(base64_decode($data["block_state_b64"], true)); + $nbtRoot = $nbtStream->getNbtCompoundRoot(new LittleEndianNBTStream); + // todo: store the states as network states then in the item but that will be a work for later. + $block_network_id = $nbtRoot->getInt("network_id"); + } $nbt = ""; if(isset($data["nbt_b64"])){ $nbt = base64_decode($data["nbt_b64"], true); } - if (isset($data["block_state_b64"])) { - $nbt_stream = new NetworkBinaryStream(base64_decode($data["block_state_b64"], true)); - $nbt_root = $nbt_stream->getNbtCompoundRoot(new LittleEndianNBTStream); - $id = $nbt_root->getInt("block_id"); - } return ItemFactory::get( - (int) $id, + (int) ItemTypeDictionary::getInstance()->fromStringId($data["id"]), (int) ($data["damage"] ?? 0), (int) 1, - (string) $nbt + (string) $nbt, + (int) ($block_network_id ?? NetworkBlockMapping::NO_NETWORK_ID) ); } diff --git a/src/pocketmine/item/ItemFactory.php b/src/pocketmine/item/ItemFactory.php index 2df427f1..bdf78171 100644 --- a/src/pocketmine/item/ItemFactory.php +++ b/src/pocketmine/item/ItemFactory.php @@ -331,7 +331,7 @@ public static function registerItem(Item $item, bool $override = false){ * * @throws TypeError */ - public static function get(int $id, int $meta = 0, int $count = 1, $tags = null) : Item{ + public static function get(int $id, int $meta = 0, int $count = 1, $tags = null, int $block_network_id = 0) : Item{ if(!is_string($tags) and !($tags instanceof CompoundTag) and $tags !== null){ throw new TypeError("`tags` argument must be a string or CompoundTag instance, " . (is_object($tags) ? "instance of " . get_class($tags) : gettype($tags)) . " given"); } @@ -355,6 +355,7 @@ public static function get(int $id, int $meta = 0, int $count = 1, $tags = null) $item->setDamage($meta); $item->setCount($count); $item->setCompoundTag($tags); + $item->setBlockNetworkId($block_network_id); return $item; } diff --git a/src/pocketmine/item/ItemIds.php b/src/pocketmine/item/ItemIds.php index b775eb1c..20b853a4 100644 --- a/src/pocketmine/item/ItemIds.php +++ b/src/pocketmine/item/ItemIds.php @@ -51,7 +51,7 @@ interface ItemIds extends BlockIds{ public const DIAMOND_SHOVEL = 277; public const DIAMOND_PICKAXE = 278; public const DIAMOND_AXE = 279; - public const STICK = 280; + public const STICK = 327; public const BOWL = 281; public const MUSHROOM_STEW = 282; public const GOLDEN_SWORD = 283, GOLD_SWORD = 283; @@ -95,12 +95,12 @@ interface ItemIds extends BlockIds{ public const PAINTING = 321; public const GOLDEN_APPLE = 322; public const SIGN = 323; - public const OAK_DOOR = 324, WOODEN_DOOR = 324; + public const OAK_DOOR = 366, WOODEN_DOOR = 366; public const BUCKET = 325; public const MINECART = 328; public const SADDLE = 329; - public const IRON_DOOR = 330; + public const IRON_DOOR = 379; public const REDSTONE = 331, REDSTONE_DUST = 331; public const SNOWBALL = 332; public const BOAT = 333; @@ -136,7 +136,7 @@ interface ItemIds extends BlockIds{ public const BEEF = 363, RAW_BEEF = 363; public const COOKED_BEEF = 364, STEAK = 364; public const CHICKEN = 365, RAW_CHICKEN = 365; - public const COOKED_CHICKEN = 366; + public const COOKED_CHICKEN = 280; public const ROTTEN_FLESH = 367; public const ENDER_PEARL = 368; public const BLAZE_ROD = 369; @@ -149,7 +149,7 @@ interface ItemIds extends BlockIds{ public const FERMENTED_SPIDER_EYE = 376; public const BLAZE_POWDER = 377; public const MAGMA_CREAM = 378; - public const BREWING_STAND = 379; + public const BREWING_STAND = 440; public const CAULDRON = 380; public const ENDER_EYE = 381; public const GLISTERING_MELON = 382, SPECKLED_MELON = 382; diff --git a/src/pocketmine/level/format/Chunk.php b/src/pocketmine/level/format/Chunk.php index fad3f3af..2abb1bd8 100644 --- a/src/pocketmine/level/format/Chunk.php +++ b/src/pocketmine/level/format/Chunk.php @@ -31,9 +31,12 @@ use pocketmine\entity\Entity; use pocketmine\level\biome\Biome; use pocketmine\level\Level; +use pocketmine\nbt\LittleEndianNBTStream; +use pocketmine\nbt\NetworkLittleEndianNBTStream; use pocketmine\nbt\tag\CompoundTag; use pocketmine\nbt\tag\IntTag; use pocketmine\nbt\tag\StringTag; +use pocketmine\network\mcpe\NetworkBinaryStream; use pocketmine\network\mcpe\protocol\types\DimensionIds; use pocketmine\Player; use pocketmine\tile\Spawnable; @@ -911,20 +914,26 @@ public function networkSerializeTiles() : string{ } private function networkSerializeBiomesAsPalette() : string{ - /** @var string[]|null $biomeIdMap */ - static $biomeIdMap = null; - if($biomeIdMap === null){ - $biomeIdMapRaw = file_get_contents(RESOURCE_PATH . '/vanilla_OLD/biome_id_map.json'); // TODO: DO LATER - if($biomeIdMapRaw === false) throw new AssumptionFailedError(); - $biomeIdMapDecoded = json_decode($biomeIdMapRaw, true); - if(!is_array($biomeIdMapDecoded)) throw new AssumptionFailedError(); - $biomeIdMap = array_flip($biomeIdMapDecoded); + /** @var int|null $biomeCount */ + static $biomeCount = 0; + $finishedCountingBiomes = true; + if($biomeCount === 0 && !$finishedCountingBiomes){ + $biomeDefinitionsFile = file_get_contents(RESOURCE_PATH . "/vanilla/biome_definitions.dat"); + if($biomeDefinitionsFile === false){ + throw new AssumptionFailedError("Missing required resource file"); + } + $nbtStream = new NetworkBinaryStream($biomeDefinitionsFile); + foreach ($nbtStream->getNbtCompoundRoot(new NetworkLittleEndianNBTStream) as $biome) { + $biomeCount++; + } + $finishedCountingBiomes = true; } + $biomePalette = new PalettedBlockArray($this->getBiomeId(0, 0)); for($x = 0; $x < 16; ++$x){ for($z = 0; $z < 16; ++$z){ $biomeId = $this->getBiomeId($x, $z); - if(!isset($biomeIdMap[$biomeId])){ + if(!($biomeId < $biomeCount) || ($biomeCount > $biomeCount)){ //make sure we aren't sending bogus biomes - the 1.18.0 client crashes if we do this $biomeId = Biome::OCEAN; } diff --git a/src/pocketmine/network/mcpe/NetworkBinaryStream.php b/src/pocketmine/network/mcpe/NetworkBinaryStream.php index 9cd0a086..66be6c72 100644 --- a/src/pocketmine/network/mcpe/NetworkBinaryStream.php +++ b/src/pocketmine/network/mcpe/NetworkBinaryStream.php @@ -237,10 +237,10 @@ public function getItemStack(Closure $readExtraCrapInTheMiddle) : Item{ $readExtraCrapInTheMiddle($this); - $this->getVarInt(); + $blockNetworkId = $this->getVarInt(); $extraData = new NetworkBinaryStream($this->getString()); - return (static function() use ($extraData, $netId, $id, $meta, $cnt) : Item{ + return (static function() use ($extraData, $netId, $id, $meta, $cnt, $blockNetworkId) : Item{ $nbtLen = $extraData->getLShort(); /** @var CompoundTag|null $nbt */ @@ -299,7 +299,7 @@ public function getItemStack(Closure $readExtraCrapInTheMiddle) : Item{ } } } - return ItemFactory::get($id, $meta, $cnt, $nbt); + return ItemFactory::get($id, $meta, $cnt, $nbt, $blockNetworkId); })(); } @@ -322,14 +322,8 @@ public function putItemStack(Item $item, Closure $writeExtraCrapInTheMiddle) : v $writeExtraCrapInTheMiddle($this); - $blockNetworkId = 0; - $isBlockItem = $item->getId() < 256; - if($isBlockItem){ - $block = $item->getBlock(); - if($block->getId() !== BlockIds::AIR){ - $blockNetworkId = NetworkBlockMapping::toStaticNetworkId($block->getId(), $block->getDamage()); - } - } + $blockNetworkId = $item->getBlockNetworkId(); + $isBlockItem = $blockNetworkId > NetworkBlockMapping::NO_NETWORK_ID; $this->putVarInt($blockNetworkId); $nbt = null; @@ -855,10 +849,10 @@ protected function putStructureEditorData(StructureEditorData $structureEditorDa $this->putVarInt($structureEditorData->structureRedstoneSaveMove); } - public function getNbtRoot(?NBTStream $nbt_stream = null) : NamedTag{ + public function getNbtRoot(?NBTStream $nbtStream = null) : NamedTag{ $offset = $this->getOffset(); try{ - $result = (is_null($nbt_stream) ? new NetworkLittleEndianNBTStream() : $nbt_stream)->read($this->getBuffer(), false, $offset, 512); + $result = (is_null($nbtStream) ? new NetworkLittleEndianNBTStream() : $nbtStream)->read($this->getBuffer(), false, $offset, 512); assert($result instanceof NamedTag, "doMultiple is false so we should definitely have a NamedTag here"); return $result; }finally{ @@ -866,8 +860,8 @@ public function getNbtRoot(?NBTStream $nbt_stream = null) : NamedTag{ } } - public function getNbtCompoundRoot(?NBTStream $nbt_stream = null) : CompoundTag{ - $root = $this->getNbtRoot($nbt_stream); + public function getNbtCompoundRoot(?NBTStream $nbtStream = null) : CompoundTag{ + $root = $this->getNbtRoot($nbtStream); if(!($root instanceof CompoundTag)){ throw new UnexpectedValueException("Expected TAG_Compound root"); } diff --git a/src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php b/src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php index cf458a1a..63f0d2f1 100644 --- a/src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php +++ b/src/pocketmine/network/mcpe/convert/NetworkBlockMapping.php @@ -46,6 +46,8 @@ final class NetworkBlockMapping{ /** @var CompoundTag[]|null */ private static $bedrockKnownStates = null; + public const NO_NETWORK_ID = 0; + private function __construct(){ //NOOP } @@ -86,7 +88,7 @@ private static function setupBlockMappings(): void $oldName = ""; $legacyMeta = 0; foreach ($idToNetIdsMap as $name => $ids) { - if ($name !== $oldName) { + if ($name !== $oldName || $legacyMeta > 15) { // no >4 bits support in pm(according to the old code) $legacyMeta = 0; } @@ -99,11 +101,6 @@ private static function setupBlockMappings(): void throw new RuntimeException("No legacy ID matches $name"); } - if ($legacyMeta > 15) { // pm doesn't support >4 bits - $legacyMeta = 0; - continue; - } - self::registerMapping($netId, $legacyId, $legacyMeta); ++$legacyMeta; diff --git a/src/pocketmine/network/mcpe/convert/NetworkItemMapping.php b/src/pocketmine/network/mcpe/convert/NetworkItemMapping.php index 51a79aa3..827a1003 100644 --- a/src/pocketmine/network/mcpe/convert/NetworkItemMapping.php +++ b/src/pocketmine/network/mcpe/convert/NetworkItemMapping.php @@ -27,77 +27,25 @@ use pocketmine\utils\AssumptionFailedError; use pocketmine\utils\SingletonTrait; use UnexpectedValueException; -use function array_key_exists; use function file_get_contents; use function is_array; -use function is_numeric; -use function is_string; use function json_decode; use const pocketmine\RESOURCE_PATH; /** * This class handles translation between network item ID+metadata to PocketMine-MP internal ID+metadata and vice versa. */ -final class NetworkItemMapping{ // TODO: not finished and might need a fourth rewrite +final class NetworkItemMapping{ use SingletonTrait; - private array $mappedCoreToNetMap = []; - private array $netToMappedCoreMap = []; - private array $coreToNetMap = []; - private array $netToCoreMap = []; - private array $nonLegacyCoreToNetMap = []; - private array $netToNonLegacyCoreMap = []; + private array $mappedIdsToNetMap = []; + private array $netToMappedIdsMap = []; + private array $legacyToNetMap = []; + private array $netToCLegacyMap = []; + private array $nonLegacyToNetMap = []; + private array $netToNonLegacyMap = []; private static function make() : self{ - // $data = file_get_contents(RESOURCE_PATH . '/vanilla/r16_to_current_item_map.json'); - // if($data === false) throw new AssumptionFailedError("Missing required resource file"); - // $json = json_decode($data, true); - // if(!is_array($json) or !isset($json["simple"], $json["complex"]) || !is_array($json["simple"]) || !is_array($json["complex"])){ - // throw new AssumptionFailedError("Invalid item table format"); - // } - - // $legacyStringToIntMapRaw = file_get_contents(RESOURCE_PATH . '/vanilla/item_id_map.json'); - // if($legacyStringToIntMapRaw === false){ - // throw new AssumptionFailedError("Missing required resource file"); - // } - // $legacyStringToIntMap = json_decode($legacyStringToIntMapRaw, true); - // if(!is_array($legacyStringToIntMap)){ - // throw new AssumptionFailedError("Invalid mapping table format"); - // } - - // /** @phpstan-var array $simpleMappings */ - // $simpleMappings = []; - // foreach($json["simple"] as $oldId => $newId){ - // if(!is_string($oldId) || !is_string($newId)){ - // throw new AssumptionFailedError("Invalid item table format"); - // } - // if(!isset($legacyStringToIntMap[$oldId])){ - // //new item without a fixed legacy ID - we can't handle this right now - // continue; - // } - // $simpleMappings[$newId] = $legacyStringToIntMap[$oldId]; - // } - // foreach($legacyStringToIntMap as $stringId => $intId){ - // if(isset($simpleMappings[$stringId])){ - // throw new UnexpectedValueException("Old ID $stringId collides with new ID"); - // } - // $simpleMappings[$stringId] = $intId; - // } - - // /** @phpstan-var array $complexMappings */ - // $complexMappings = []; - // foreach($json["complex"] as $oldId => $map){ - // if(!is_string($oldId) || !is_array($map)){ - // throw new AssumptionFailedError("Invalid item table format"); - // } - // foreach($map as $meta => $newId){ - // if(!is_numeric($meta) || !is_string($newId)){ - // throw new AssumptionFailedError("Invalid item table format"); - // } - // $legacyStringToIntMap["minecraft:stone_block_slab"] = 44; - // $complexMappings[$newId] = [$legacyStringToIntMap[$oldId], (int) $meta]; - // } - // } $itemMappingsRaw = file_get_contents(RESOURCE_PATH . '/vanilla/item_mappings.json'); if($itemMappingsRaw === false) throw new AssumptionFailedError("Missing required resource file"); $itemMappings = json_decode($itemMappingsRaw, true); @@ -127,30 +75,30 @@ public function __construct(ItemTypeDictionary $dictionary, array $itemMappings, $meta = intval($meta); $legacyId = $legacyItemIds[$newStrId]; - if (!isset($this->mappedCoreToNetMap[$legacyId])) { - $this->mappedCoreToNetMap[$legacyId] = []; + if (!isset($this->mappedIdsToNetMap[$legacyId])) { + $this->mappedIdsToNetMap[$legacyId] = []; } - $this->mappedCoreToNetMap[$legacyId][$meta] = $netId; - $this->netToMappedCoreMap[$legacyId] = [$legacyId, $meta]; + $this->mappedIdsToNetMap[$legacyId][$meta] = $netId; + $this->netToMappedIdsMap[$legacyId] = [$legacyId, $meta]; } }elseif(isset($legacyItemIds[$stringId])) { - if (!isset($this->coreToNetMap[$netId])) { - $this->coreToNetMap[$netId] = []; + if (!isset($this->legacyToNetMap[$netId])) { + $this->legacyToNetMap[$netId] = []; } - $this->coreToNetMap[$legacyItemIds[$stringId]][0] = $netId; - $this->netToCoreMap[$netId] = [$legacyItemIds[$stringId], 0]; + $legacyId = $legacyItemIds[$stringId]; + + $this->legacyToNetMap[$legacyId] = $netId; + $this->netToCLegacyMap[$netId] = $legacyId; } else { - // var_dump("It is non legacy - todo"); - // continue; - if (!isset($this->nonLegacyCoreToNetMap[$netId])) { - $this->nonLegacyCoreToNetMap[$netId] = []; + if (!isset($this->nonLegacyToNetMap[$netId])) { + $this->nonLegacyToNetMap[$netId] = []; } - $this->nonLegacyCoreToNetMap[$netId][0] = $netId; - $this->netToNonLegacyCoreMap[$netId] = [$netId, 0]; - // $this->coreToNetMap[$netId][0] = []; + // todo: what nonesense is this, should wait until i found a good idea for it. + $this->nonLegacyToNetMap[$netId] = $netId; + $this->netToNonLegacyMap[$netId] = $netId; } } } @@ -163,18 +111,17 @@ public function toNetworkId(int $internalId, int $internalMeta) : array{ if($internalMeta === -1){ $internalMeta = 0x7fff; } - if (isset($this->mappedCoreToNetMap[$internalId][$internalMeta])) { - return [$this->mappedCoreToNetMap[$internalId][$internalMeta], 0]; + if (isset($this->mappedIdsToNetMap[$internalId][$internalMeta])) { + return [$this->mappedIdsToNetMap[$internalId][$internalMeta], 0]; } - if(isset($this->coreToNetMap[$internalId][$internalMeta])){ - return [$this->coreToNetMap[$internalId][$internalMeta], $internalMeta]; + if(isset($this->legacyToNetMap[$internalId])){ + return [$this->legacyToNetMap[$internalId], $internalMeta]; } - if (isset($this->nonLegacyCoreToNetMap[$internalId][$internalMeta])) { - return [$this->nonLegacyCoreToNetMap[$internalId][$internalMeta], 0]; + if (isset($this->nonLegacyToNetMap[$internalId])) { + return [$this->nonLegacyToNetMap[$internalId], $internalMeta]; } - // throw new InvalidArgumentException("Unmapped ID/metadata combination $internalId:$internalMeta"); - return [NetworkBlockMapping::toStaticNetworkId($internalId, $internalMeta), $internalMeta]; // TODO: HACK (in the rewrite this will be removed) + throw new InvalidArgumentException("Unmapped ID/metadata combination $internalId:$internalMeta"); } /** @@ -185,15 +132,15 @@ public function fromNetworkId(int $networkId, int $networkMeta, bool &$isMapped if($networkMeta !== 0){ throw new UnexpectedValueException("Unexpected non-zero network meta on complex item mapping"); } - if (isset($this->mappedCoreToNetMap[$networkId][$networkMeta])) { + if (isset($this->mappedIdsToNetMap[$networkId][$networkMeta])) { $isMapped = true; - return $this->mappedCoreToNetMap[$networkId]; + return $this->mappedIdsToNetMap[$networkId]; } - if(isset($this->netToCoreMap[$networkId])){ - return $this->netToCoreMap[$networkId]; + if(isset($this->netToCLegacyMap[$networkId])){ + return [$this->netToCLegacyMap[$networkId], 0]; } - if (isset($this->netToNonLegacyCoreMap[$networkId][$networkMeta])) { - return $this->netToNonLegacyCoreMap[$networkId]; + if (isset($this->netToNonLegacyMap[$networkId])) { + return [$this->netToNonLegacyMap[$networkId], 0]; } throw new UnexpectedValueException("Unmapped network ID/metadata combination $networkId:$networkMeta"); } diff --git a/src/pocketmine/network/mcpe/protocol/LevelEventPacket.php b/src/pocketmine/network/mcpe/protocol/LevelEventPacket.php index ce7bdbab..cc7af072 100644 --- a/src/pocketmine/network/mcpe/protocol/LevelEventPacket.php +++ b/src/pocketmine/network/mcpe/protocol/LevelEventPacket.php @@ -91,7 +91,7 @@ class LevelEventPacket extends DataPacket{ public const EVENT_PARTICLE_BUBBLES = 2015; public const EVENT_PARTICLE_ARMOR_STAND_DESTROY = 2017; - public const EVENT_PARTICLE_DESTROY_MINI = 2021; //data: block runtime id + public const EVENT_PARTICLE_DESTROY_MINI = 2021; //data: block network id public const EVENT_PARTICLE_KNOCKBACK_ROAR = 2022; public const EVENT_PARTICLE_EXPLOSION = 2025; diff --git a/src/pocketmine/network/mcpe/protocol/types/UpdateSubChunkBlocksPacketEntry.php b/src/pocketmine/network/mcpe/protocol/types/UpdateSubChunkBlocksPacketEntry.php index 01c5915f..467fe841 100644 --- a/src/pocketmine/network/mcpe/protocol/types/UpdateSubChunkBlocksPacketEntry.php +++ b/src/pocketmine/network/mcpe/protocol/types/UpdateSubChunkBlocksPacketEntry.php @@ -31,7 +31,7 @@ final class UpdateSubChunkBlocksPacketEntry{ private int $x; private int $y; private int $z; - private int $blockRuntimeId; + private int $blockNetworkId; private int $flags; @@ -39,18 +39,18 @@ final class UpdateSubChunkBlocksPacketEntry{ private int $syncedUpdateEntityUniqueId; private int $syncedUpdateType; - public function __construct(int $x, int $y, int $z, int $blockRuntimeId, int $flags, int $syncedUpdateEntityUniqueId, int $syncedUpdateType){ + public function __construct(int $x, int $y, int $z, int $blockNetworkId, int $flags, int $syncedUpdateEntityUniqueId, int $syncedUpdateType){ $this->x = $x; $this->y = $y; $this->z = $z; - $this->blockRuntimeId = $blockRuntimeId; + $this->blockNetworkId = $blockNetworkId; $this->flags = $flags; $this->syncedUpdateEntityUniqueId = $syncedUpdateEntityUniqueId; $this->syncedUpdateType = $syncedUpdateType; } - public static function simple(int $x, int $y, int $z, int $blockRuntimeId) : self{ - return new self($x, $y, $z, $blockRuntimeId, UpdateBlockPacket::FLAG_NETWORK, 0, 0); + public static function simple(int $x, int $y, int $z, int $blockNetworkId) : self{ + return new self($x, $y, $z, $blockNetworkId, UpdateBlockPacket::FLAG_NETWORK, 0, 0); } public function getX() : int{ return $this->x; } @@ -59,7 +59,7 @@ public function getY() : int{ return $this->y; } public function getZ() : int{ return $this->z; } - public function getBlockRuntimeId() : int{ return $this->blockRuntimeId; } + public function getBlockNetworkId() : int{ return $this->blockNetworkId; } public function getFlags() : int{ return $this->flags; } @@ -70,17 +70,17 @@ public function getSyncedUpdateType() : int{ return $this->syncedUpdateType; } public static function read(NetworkBinaryStream $in) : self{ $x = $y = $z = 0; $in->getBlockPosition($x, $y, $z); - $blockRuntimeId = $in->getUnsignedVarInt(); + $blockNetworkId = $in->getUnsignedVarInt(); $updateFlags = $in->getUnsignedVarInt(); $syncedUpdateEntityUniqueId = $in->getUnsignedVarLong(); //this can't use the standard method because it's unsigned as opposed to the usual signed... !!!!!! $syncedUpdateType = $in->getUnsignedVarInt(); //this isn't even consistent with UpdateBlockSyncedPacket?! - return new self($x, $y, $z, $blockRuntimeId, $updateFlags, $syncedUpdateEntityUniqueId, $syncedUpdateType); + return new self($x, $y, $z, $blockNetworkId, $updateFlags, $syncedUpdateEntityUniqueId, $syncedUpdateType); } public function write(NetworkBinaryStream $out) : void{ $out->putBlockPosition($this->x, $this->y, $this->z); - $out->putUnsignedVarInt($this->blockRuntimeId); + $out->putUnsignedVarInt($this->blockNetworkId); $out->putUnsignedVarInt($this->flags); $out->putUnsignedVarLong($this->syncedUpdateEntityUniqueId); $out->putUnsignedVarInt($this->syncedUpdateType); diff --git a/src/pocketmine/network/mcpe/protocol/types/inventory/UseItemTransactionData.php b/src/pocketmine/network/mcpe/protocol/types/inventory/UseItemTransactionData.php index 4eeb041b..78014298 100644 --- a/src/pocketmine/network/mcpe/protocol/types/inventory/UseItemTransactionData.php +++ b/src/pocketmine/network/mcpe/protocol/types/inventory/UseItemTransactionData.php @@ -48,7 +48,7 @@ class UseItemTransactionData extends TransactionData{ /** @var Vector3 */ private $clickPos; /** @var int */ - private $blockRuntimeId; + private $blockNetworkId; public function getActionType() : int{ return $this->actionType; @@ -78,8 +78,8 @@ public function getClickPos() : Vector3{ return $this->clickPos; } - public function getBlockRuntimeId() : int{ - return $this->blockRuntimeId; + public function getBlockNetworkId() : int{ + return $this->blockNetworkId; } public function getTypeId() : int{ @@ -96,7 +96,7 @@ protected function decodeData(PacketSerializer $stream) : void{ $this->itemInHand = ItemStackWrapper::read($stream); $this->playerPos = $stream->getVector3(); $this->clickPos = $stream->getVector3(); - $this->blockRuntimeId = $stream->getUnsignedVarInt(); + $this->blockNetworkId = $stream->getUnsignedVarInt(); } protected function encodeData(PacketSerializer $stream) : void{ @@ -107,13 +107,13 @@ protected function encodeData(PacketSerializer $stream) : void{ $this->itemInHand->write($stream); $stream->putVector3($this->playerPos); $stream->putVector3($this->clickPos); - $stream->putUnsignedVarInt($this->blockRuntimeId); + $stream->putUnsignedVarInt($this->blockNetworkId); } /** * @param NetworkInventoryAction[] $actions */ - public static function new(array $actions, int $actionType, Vector3 $blockPos, int $face, int $hotbarSlot, ItemStackWrapper $itemInHand, Vector3 $playerPos, Vector3 $clickPos, int $blockRuntimeId) : self{ + public static function new(array $actions, int $actionType, Vector3 $blockPos, int $face, int $hotbarSlot, ItemStackWrapper $itemInHand, Vector3 $playerPos, Vector3 $clickPos, int $blockNetworkId) : self{ $result = new self; $result->actions = $actions; $result->actionType = $actionType; @@ -123,7 +123,7 @@ public static function new(array $actions, int $actionType, Vector3 $blockPos, i $result->itemInHand = $itemInHand; $result->playerPos = $playerPos; $result->clickPos = $clickPos; - $result->blockRuntimeId = $blockRuntimeId; + $result->blockNetworkId = $blockNetworkId; return $result; } } diff --git a/src/pocketmine/resources/vanilla_OLD/.gitattributes b/src/pocketmine/resources/vanilla_OLD/.gitattributes deleted file mode 100644 index e106df7d..00000000 --- a/src/pocketmine/resources/vanilla_OLD/.gitattributes +++ /dev/null @@ -1,30 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto -*.php text eol=lf -*.sh text eol=lf -*.txt text eol=lf -*.properties text eol=lf -*.json text eol=lf -*.bat text eol=crlf -*.cmd text eol=crlf -*.ps1 text eol=crlf - -# Custom for Visual Studio -*.cs diff=csharp -*.sln merge=union -*.csproj merge=union -*.vbproj merge=union -*.fsproj merge=union -*.dbproj merge=union - -# Standard to msysgit -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain diff --git a/src/pocketmine/resources/vanilla_OLD/.minify_json.php b/src/pocketmine/resources/vanilla_OLD/.minify_json.php deleted file mode 100644 index 3a1bcd38..00000000 --- a/src/pocketmine/resources/vanilla_OLD/.minify_json.php +++ /dev/null @@ -1,32 +0,0 @@ - 255, its item ID is `255 - legacyBlockId`. This means prismarine stairs = -2 and so on. - -## r12_to_current_block_map.bin -This file contains a list of mappings from legacy pre-1.13 blockstates to states of the current version. -This data is obtained by plugging the legacy states into `BlockPalette` in the vanilla BDS using [`pmmp/mapping`](https://github.com/pmmp/mapping), and writing the resulting NBT state obtained. - -#### Schema -The following structure is repeated until EOF. There is **no** length prefix, so you have to read to EOF to read all the mappings. -| type | description | -|------|-------------| -| unsigned varint32 | r12 block string ID length | -| byte[] | r12 block string ID | -| little-endian int16 | r12 block metadata | -| TAG_Compound (varint format) | current version NBT blockstate corresponding to the given r12 block | - -An example of how to read this file using the PocketMine-MP core library can be seen on the [stable branch](https://github.com/pmmp/PocketMine-MP/blob/41f7c07703bf3f7ef2d9504bbdbdf74257e75d12/src/pocketmine/network/mcpe/convert/RuntimeBlockMapping.php#L71-L86) or on the [master branch](https://github.com/pmmp/PocketMine-MP/blob/73592349cd29d91b03c2703107db859115a92e2d/src/network/mcpe/convert/RuntimeBlockMapping.php#L70-L80). - -## r16_to_current_item_map.json -This file contains mappings to translate pre-1.16.100 item IDs into post-1.16.100 item IDs. -It contains two structures: -- `simple`: these are 1:1 replacement IDs (e.g. `carrotonastick` was renamed to `carrot_on_a_stick`) -- `complex`: these are items that were previously metadata values on other items (e.g. `dye:4` is now represented by `lapis_lazuli`). - -## item_id_map.json -This file contains a mapping of all item stringy IDs to legacy numeric IDs. - -## banner_patterns.json -This file defines all the known banner pattern types and their crafting requirements. - -## recipes.json -This file defines all crafting-table, furnace and chemistry recipes. This includes recipes for the smoker, cartography table etc. - -## creativeitems.json -This file contains an ordered list of items which appear in the vanilla creative inventory with Education Edition and Experimental Gameplay enabled. - -## biome_definitions.nbt -This file contains a network-format NBT blob containing biome definitions obtained from `BiomeDefinitionListPacket`. - -## biome_id_map.json -This file contains a mapping of Minecraft string biome IDs to their legacy integer ID counterparts. While biome IDs aren't dynamic yet, it's expected they will become dynamic in the future. - -## entity_identifiers.nbt -This file contains a network-format NBT blob containing entity identifier mappings obtained from `AvailableActorIdentifiersPacket`. - -## level_sound_id_map.json -This file contains a mapping of string sound names to LevelSoundEvent IDs used by LevelSoundEventPacket. - -Note that this file may be missing some IDs (it is generated from vanilla using [pmmp/mapping](https://github.com/pmmp/mapping), and vanilla itself is missing some mappings). - -## particle_id_map.json -This file contains a mapping of string particle names to their legacy particle IDs (used for LevelEventPacket). Generated by [pmmp/mapping](https://github.com/pmmp/mapping). diff --git a/src/pocketmine/resources/vanilla_OLD/banner_patterns.json b/src/pocketmine/resources/vanilla_OLD/banner_patterns.json deleted file mode 100644 index 754238ef..00000000 --- a/src/pocketmine/resources/vanilla_OLD/banner_patterns.json +++ /dev/null @@ -1,320 +0,0 @@ -{ - "border": { - "type": "shaped", - "id": "bo", - "dye_arrangement": [ - "###", - "# #", - "###" - ] - }, - "bricks": { - "type": "shapeless", - "id": "bri", - "requires": "bricks" - }, - "circle": { - "type": "shaped", - "id": "mc", - "dye_arrangement": [ - " ", - " # ", - " " - ] - }, - "creeper": { - "type": "shapeless", - "id": "cre", - "requires": "creeper_head" - }, - "cross": { - "type": "shaped", - "id": "cr", - "dye_arrangement": [ - "# #", - " # ", - "# #" - ] - }, - "curly_border": { - "type": "shapeless", - "id": "cbo", - "requires": "vines" - }, - "diagonal_left": { - "type": "shaped", - "id": "lud", - "dye_arrangement": [ - " ", - "# ", - "## " - ] - }, - "diagonal_right": { - "type": "shaped", - "id": "rd", - "dye_arrangement": [ - " ", - " #", - " ##" - ] - }, - "diagonal_up_left": { - "type": "shaped", - "id": "ld", - "dye_arrangement": [ - "## ", - "# ", - " " - ] - }, - "diagonal_up_right": { - "type": "shaped", - "id": "rud", - "dye_arrangement": [ - " ##", - " #", - " " - ] - }, - "flower": { - "type": "shapeless", - "id": "flo", - "requires": "oxeye_daisy" - }, - "gradient": { - "type": "shaped", - "id": "gra", - "dye_arrangement": [ - "# #", - " # ", - " # " - ] - }, - "gradient_up": { - "type": "shaped", - "id": "gru", - "dye_arrangement": [ - " # ", - " # ", - "# #" - ] - }, - "half_horizontal": { - "type": "shaped", - "id": "hh", - "dye_arrangement": [ - "###", - "###", - " " - ] - }, - "half_horizontal_bottom": { - "type": "shaped", - "id": "hhb", - "dye_arrangement": [ - " ", - "###", - "###" - ] - }, - "half_vertical": { - "type": "shaped", - "id": "vh", - "dye_arrangement": [ - "## ", - "## ", - "## " - ] - }, - "half_vertical_right": { - "type": "shaped", - "id": "vhr", - "dye_arrangement": [ - " ##", - " ##", - " ##" - ] - }, - "mojang": { - "type": "shapeless", - "id": "moj", - "requires": "enchanted_golden_apple" - }, - "rhombus": { - "type": "shaped", - "id": "mr", - "dye_arrangement": [ - " # ", - "# #", - " # " - ] - }, - "skull": { - "type": "shapeless", - "id": "sku", - "requires": "wither_skeleton_skull" - }, - "small_stripes": { - "type": "shaped", - "id": "ss", - "dye_arrangement": [ - "# #", - "# #", - " " - ] - }, - "square_bottom_left": { - "type": "shaped", - "id": "bl", - "dye_arrangement": [ - " ", - " ", - "# " - ] - }, - "square_bottom_right": { - "type": "shaped", - "id": "br", - "dye_arrangement": [ - " ", - " ", - " #" - ] - }, - "square_top_left": { - "type": "shaped", - "id": "tl", - "dye_arrangement": [ - "# ", - " ", - " " - ] - }, - "square_top_right": { - "type": "shaped", - "id": "tr", - "dye_arrangement": [ - " #", - " ", - " " - ] - }, - "straight_cross": { - "type": "shaped", - "id": "sc", - "dye_arrangement": [ - " # ", - "###", - " # " - ] - }, - "stripe_bottom": { - "type": "shaped", - "id": "bs", - "dye_arrangement": [ - " ", - " ", - "###" - ] - }, - "stripe_center": { - "type": "shaped", - "id": "cs", - "dye_arrangement": [ - " # ", - " # ", - " # " - ] - }, - "stripe_downleft": { - "type": "shaped", - "id": "dls", - "dye_arrangement": [ - " #", - " # ", - "# " - ] - }, - "stripe_downright": { - "type": "shaped", - "id": "drs", - "dye_arrangement": [ - "# ", - " # ", - " #" - ] - }, - "stripe_left": { - "type": "shaped", - "id": "ls", - "dye_arrangement": [ - "# ", - "# ", - "# " - ] - }, - "stripe_middle": { - "type": "shaped", - "id": "ms", - "dye_arrangement": [ - " ", - "###", - " " - ] - }, - "stripe_right": { - "type": "shaped", - "id": "rs", - "dye_arrangement": [ - " #", - " #", - " #" - ] - }, - "stripe_top": { - "type": "shaped", - "id": "ts", - "dye_arrangement": [ - "###", - " ", - " " - ] - }, - "triangle_bottom": { - "type": "shaped", - "id": "bt", - "dye_arrangement": [ - " ", - " # ", - "# #" - ] - }, - "triangle_top": { - "type": "shaped", - "id": "tt", - "dye_arrangement": [ - "# #", - " # ", - " " - ] - }, - "triangles_bottom": { - "type": "shaped", - "id": "bts", - "dye_arrangement": [ - " ", - "# #", - " # " - ] - }, - "triangles_top": { - "type": "shaped", - "id": "tts", - "dye_arrangement": [ - " # ", - "# #", - " " - ] - } -} diff --git a/src/pocketmine/resources/vanilla_OLD/biome_definitions.nbt b/src/pocketmine/resources/vanilla_OLD/biome_definitions.nbt deleted file mode 100644 index 86dbbfbb4eb0bf1ac49e7fd38a042b367a8e126f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 41676 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