From 3c46bf01c609d4459dbcb322c53469e3adad87cc Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 2 Feb 2023 14:47:38 +0000 Subject: [PATCH 1/7] Begin removing dependence on obsolete files from BedrockData these files were only kept for backwards compatibility, and aren't actively maintained. They are only needed for legacy conversions in the modern day era. --- composer.json | 2 + composer.lock | 54 ++++++++++++++++++- src/CoreConstants.php | 2 + .../bedrock/LegacyBlockIdToStringIdMap.php | 2 +- .../bedrock/LegacyItemIdToStringIdMap.php | 2 +- 5 files changed, 59 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index c4570bb09..bd1a85af9 100644 --- a/composer.json +++ b/composer.json @@ -34,7 +34,9 @@ "adhocore/json-comment": "^1.1", "fgrosse/phpasn1": "^2.3", "netresearch/jsonmapper": "^4.0", + "pocketmine/bedrock-block-upgrade-schema": "^1.0.0", "pocketmine/bedrock-data": "~1.13.0+bedrock-1.19.50", + "pocketmine/bedrock-item-upgrade-schema": "^1.0.0", "pocketmine/bedrock-protocol": "~18.1.0+bedrock-1.19.50", "pocketmine/binaryutils": "^0.2.1", "pocketmine/callback-validator": "^1.0.2", diff --git a/composer.lock b/composer.lock index e8987fccf..6829f4a65 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2c0f273b515174abfdcef4fc4ad3c262", + "content-hash": "a9e05a8358faee33178bac5279d864f4", "packages": [ { "name": "adhocore/json-comment", @@ -248,6 +248,32 @@ }, "time": "2022-12-08T20:46:14+00:00" }, + { + "name": "pocketmine/bedrock-block-upgrade-schema", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BedrockBlockUpgradeSchema.git", + "reference": "a05ce434eb7f8c11058d26833bc975fe635b23b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BedrockBlockUpgradeSchema/zipball/a05ce434eb7f8c11058d26833bc975fe635b23b4", + "reference": "a05ce434eb7f8c11058d26833bc975fe635b23b4", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC0-1.0" + ], + "description": "Schemas describing how to upgrade saved block data in older Minecraft: Bedrock Edition world saves", + "support": { + "issues": "https://github.com/pmmp/BedrockBlockUpgradeSchema/issues", + "source": "https://github.com/pmmp/BedrockBlockUpgradeSchema/tree/1.0.0" + }, + "time": "2023-02-01T21:09:54+00:00" + }, { "name": "pocketmine/bedrock-data", "version": "1.13.0+bedrock-1.19.50", @@ -274,6 +300,32 @@ }, "time": "2022-11-30T16:19:59+00:00" }, + { + "name": "pocketmine/bedrock-item-upgrade-schema", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BedrockItemUpgradeSchema.git", + "reference": "7e53f77ea34ba30b1f94d3c24e64e19d3c4296e7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BedrockItemUpgradeSchema/zipball/7e53f77ea34ba30b1f94d3c24e64e19d3c4296e7", + "reference": "7e53f77ea34ba30b1f94d3c24e64e19d3c4296e7", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC0-1.0" + ], + "description": "JSON schemas for upgrading items found in older Minecraft: Bedrock world saves", + "support": { + "issues": "https://github.com/pmmp/BedrockItemUpgradeSchema/issues", + "source": "https://github.com/pmmp/BedrockItemUpgradeSchema/tree/1.0.0" + }, + "time": "2023-02-01T22:50:02+00:00" + }, { "name": "pocketmine/bedrock-protocol", "version": "18.1.0+bedrock-1.19.50", diff --git a/src/CoreConstants.php b/src/CoreConstants.php index 7b0345b1c..c18486237 100644 --- a/src/CoreConstants.php +++ b/src/CoreConstants.php @@ -37,4 +37,6 @@ define('pocketmine\PATH', dirname(__DIR__) . '/'); define('pocketmine\RESOURCE_PATH', dirname(__DIR__) . '/resources/'); define('pocketmine\BEDROCK_DATA_PATH', dirname(__DIR__) . '/vendor/pocketmine/bedrock-data/'); define('pocketmine\LOCALE_DATA_PATH', dirname(__DIR__) . '/vendor/pocketmine/locale-data/'); +define('pocketmine\BEDROCK_BLOCK_UPGRADE_SCHEMA_PATH', dirname(__DIR__) . '/vendor/pocketmine/bedrock-block-upgrade-schema/'); +define('pocketmine\BEDROCK_ITEM_UPGRADE_SCHEMA_PATH', dirname(__DIR__) . '/vendor/pocketmine/bedrock-item-upgrade-schema/'); define('pocketmine\COMPOSER_AUTOLOADER_PATH', dirname(__DIR__) . '/vendor/autoload.php'); diff --git a/src/data/bedrock/LegacyBlockIdToStringIdMap.php b/src/data/bedrock/LegacyBlockIdToStringIdMap.php index 35c24caf9..8b4a1365c 100644 --- a/src/data/bedrock/LegacyBlockIdToStringIdMap.php +++ b/src/data/bedrock/LegacyBlockIdToStringIdMap.php @@ -30,6 +30,6 @@ final class LegacyBlockIdToStringIdMap extends LegacyToStringBidirectionalIdMap{ use SingletonTrait; public function __construct(){ - parent::__construct(Path::join(\pocketmine\BEDROCK_DATA_PATH, 'block_id_map.json')); + parent::__construct(Path::join(\pocketmine\BEDROCK_BLOCK_UPGRADE_SCHEMA_PATH, 'block_legacy_id_map.json')); } } diff --git a/src/data/bedrock/LegacyItemIdToStringIdMap.php b/src/data/bedrock/LegacyItemIdToStringIdMap.php index 254ad96bb..9f5c257dd 100644 --- a/src/data/bedrock/LegacyItemIdToStringIdMap.php +++ b/src/data/bedrock/LegacyItemIdToStringIdMap.php @@ -30,6 +30,6 @@ final class LegacyItemIdToStringIdMap extends LegacyToStringBidirectionalIdMap{ use SingletonTrait; public function __construct(){ - parent::__construct(Path::join(\pocketmine\BEDROCK_DATA_PATH, 'item_id_map.json')); + parent::__construct(Path::join(\pocketmine\BEDROCK_ITEM_UPGRADE_SCHEMA_PATH, 'item_id_map.json')); } } From cfa1e7486a4831ca6c567a1ecdbeab0b091c6dbd Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 2 Feb 2023 15:25:03 +0000 Subject: [PATCH 2/7] Move legacy recipes and creative items in-house having them here allows BedrockData to represent latest versions freely, without being limited by technical limitations of PM4. --- resources/legacy_creativeitems.json | 4898 +++ resources/legacy_recipes.json | 49988 ++++++++++++++++++++++++++ src/Server.php | 2 +- src/inventory/CreativeInventory.php | 2 +- 4 files changed, 54888 insertions(+), 2 deletions(-) create mode 100644 resources/legacy_creativeitems.json create mode 100644 resources/legacy_recipes.json diff --git a/resources/legacy_creativeitems.json b/resources/legacy_creativeitems.json new file mode 100644 index 000000000..f4f5e4048 --- /dev/null +++ b/resources/legacy_creativeitems.json @@ -0,0 +1,4898 @@ +[ + { + "id": 5 + }, + { + "id": 5, + "damage": 1 + }, + { + "id": 5, + "damage": 2 + }, + { + "id": 5, + "damage": 3 + }, + { + "id": 5, + "damage": 4 + }, + { + "id": 5, + "damage": 5 + }, + { + "id": -242 + }, + { + "id": -243 + }, + { + "id": 139 + }, + { + "id": 139, + "damage": 1 + }, + { + "id": 139, + "damage": 2 + }, + { + "id": 139, + "damage": 3 + }, + { + "id": 139, + "damage": 4 + }, + { + "id": 139, + "damage": 5 + }, + { + "id": 139, + "damage": 12 + }, + { + "id": 139, + "damage": 7 + }, + { + "id": 139, + "damage": 8 + }, + { + "id": 139, + "damage": 6 + }, + { + "id": 139, + "damage": 9 + }, + { + "id": 139, + "damage": 13 + }, + { + "id": 139, + "damage": 10 + }, + { + "id": 139, + "damage": 11 + }, + { + "id": -277 + }, + { + "id": -297 + }, + { + "id": -278 + }, + { + "id": 85 + }, + { + "id": 85, + "damage": 1 + }, + { + "id": 85, + "damage": 2 + }, + { + "id": 85, + "damage": 3 + }, + { + "id": 85, + "damage": 4 + }, + { + "id": 85, + "damage": 5 + }, + { + "id": 113 + }, + { + "id": -256 + }, + { + "id": -257 + }, + { + "id": 107 + }, + { + "id": 183 + }, + { + "id": 184 + }, + { + "id": 185 + }, + { + "id": 187 + }, + { + "id": 186 + }, + { + "id": -258 + }, + { + "id": -259 + }, + { + "id": -180 + }, + { + "id": 67 + }, + { + "id": -179 + }, + { + "id": 53 + }, + { + "id": 134 + }, + { + "id": 135 + }, + { + "id": 136 + }, + { + "id": 163 + }, + { + "id": 164 + }, + { + "id": 109 + }, + { + "id": -175 + }, + { + "id": 128 + }, + { + "id": -177 + }, + { + "id": 180 + }, + { + "id": -176 + }, + { + "id": -169 + }, + { + "id": -172 + }, + { + "id": -170 + }, + { + "id": -173 + }, + { + "id": -171 + }, + { + "id": -174 + }, + { + "id": 108 + }, + { + "id": 114 + }, + { + "id": -184 + }, + { + "id": -178 + }, + { + "id": 156 + }, + { + "id": -185 + }, + { + "id": 203 + }, + { + "id": -2 + }, + { + "id": -3 + }, + { + "id": -4 + }, + { + "id": -254 + }, + { + "id": -255 + }, + { + "id": -276 + }, + { + "id": -292 + }, + { + "id": -275 + }, + { + "id": 324 + }, + { + "id": 427 + }, + { + "id": 428 + }, + { + "id": 429 + }, + { + "id": 430 + }, + { + "id": 431 + }, + { + "id": 330 + }, + { + "id": 755 + }, + { + "id": 756 + }, + { + "id": 96 + }, + { + "id": -149 + }, + { + "id": -146 + }, + { + "id": -148 + }, + { + "id": -145 + }, + { + "id": -147 + }, + { + "id": 167 + }, + { + "id": -246 + }, + { + "id": -247 + }, + { + "id": 101 + }, + { + "id": 20 + }, + { + "id": 241 + }, + { + "id": 241, + "damage": 8 + }, + { + "id": 241, + "damage": 7 + }, + { + "id": 241, + "damage": 15 + }, + { + "id": 241, + "damage": 12 + }, + { + "id": 241, + "damage": 14 + }, + { + "id": 241, + "damage": 1 + }, + { + "id": 241, + "damage": 4 + }, + { + "id": 241, + "damage": 5 + }, + { + "id": 241, + "damage": 13 + }, + { + "id": 241, + "damage": 9 + }, + { + "id": 241, + "damage": 3 + }, + { + "id": 241, + "damage": 11 + }, + { + "id": 241, + "damage": 10 + }, + { + "id": 241, + "damage": 2 + }, + { + "id": 241, + "damage": 6 + }, + { + "id": 102 + }, + { + "id": 160 + }, + { + "id": 160, + "damage": 8 + }, + { + "id": 160, + "damage": 7 + }, + { + "id": 160, + "damage": 15 + }, + { + "id": 160, + "damage": 12 + }, + { + "id": 160, + "damage": 14 + }, + { + "id": 160, + "damage": 1 + }, + { + "id": 160, + "damage": 4 + }, + { + "id": 160, + "damage": 5 + }, + { + "id": 160, + "damage": 13 + }, + { + "id": 160, + "damage": 9 + }, + { + "id": 160, + "damage": 3 + }, + { + "id": 160, + "damage": 11 + }, + { + "id": 160, + "damage": 10 + }, + { + "id": 160, + "damage": 2 + }, + { + "id": 160, + "damage": 6 + }, + { + "id": 65 + }, + { + "id": -165 + }, + { + "id": 44 + }, + { + "id": -166, + "damage": 2 + }, + { + "id": 44, + "damage": 3 + }, + { + "id": 182, + "damage": 5 + }, + { + "id": 158 + }, + { + "id": 158, + "damage": 1 + }, + { + "id": 158, + "damage": 2 + }, + { + "id": 158, + "damage": 3 + }, + { + "id": 158, + "damage": 4 + }, + { + "id": 158, + "damage": 5 + }, + { + "id": 44, + "damage": 5 + }, + { + "id": -166 + }, + { + "id": 44, + "damage": 1 + }, + { + "id": -166, + "damage": 3 + }, + { + "id": 182, + "damage": 6 + }, + { + "id": 182 + }, + { + "id": -166, + "damage": 4 + }, + { + "id": -162, + "damage": 1 + }, + { + "id": -162, + "damage": 6 + }, + { + "id": -162, + "damage": 7 + }, + { + "id": -162, + "damage": 4 + }, + { + "id": -162, + "damage": 5 + }, + { + "id": -162, + "damage": 3 + }, + { + "id": -162, + "damage": 2 + }, + { + "id": 44, + "damage": 4 + }, + { + "id": 44, + "damage": 7 + }, + { + "id": 182, + "damage": 7 + }, + { + "id": -162 + }, + { + "id": 44, + "damage": 6 + }, + { + "id": -166, + "damage": 1 + }, + { + "id": 182, + "damage": 1 + }, + { + "id": 182, + "damage": 2 + }, + { + "id": 182, + "damage": 3 + }, + { + "id": 182, + "damage": 4 + }, + { + "id": -264 + }, + { + "id": -265 + }, + { + "id": -282 + }, + { + "id": -293 + }, + { + "id": -284 + }, + { + "id": 45 + }, + { + "id": -302 + }, + { + "id": -303 + }, + { + "id": -304 + }, + { + "id": 98 + }, + { + "id": 98, + "damage": 1 + }, + { + "id": 98, + "damage": 2 + }, + { + "id": 98, + "damage": 3 + }, + { + "id": 206 + }, + { + "id": 168, + "damage": 2 + }, + { + "id": -274 + }, + { + "id": -280 + }, + { + "id": -281 + }, + { + "id": -279 + }, + { + "id": 4 + }, + { + "id": 48 + }, + { + "id": -183 + }, + { + "id": 24 + }, + { + "id": 24, + "damage": 1 + }, + { + "id": 24, + "damage": 2 + }, + { + "id": 24, + "damage": 3 + }, + { + "id": 179 + }, + { + "id": 179, + "damage": 1 + }, + { + "id": 179, + "damage": 2 + }, + { + "id": 179, + "damage": 3 + }, + { + "id": 173 + }, + { + "id": -139 + }, + { + "id": 41 + }, + { + "id": 42 + }, + { + "id": 133 + }, + { + "id": 57 + }, + { + "id": 22 + }, + { + "id": 155 + }, + { + "id": 155, + "damage": 2 + }, + { + "id": 155, + "damage": 1 + }, + { + "id": 155, + "damage": 3 + }, + { + "id": 168 + }, + { + "id": 168, + "damage": 1 + }, + { + "id": 165 + }, + { + "id": -220 + }, + { + "id": -221 + }, + { + "id": 170 + }, + { + "id": 216 + }, + { + "id": 112 + }, + { + "id": 215 + }, + { + "id": -270 + }, + { + "id": -222 + }, + { + "id": 35 + }, + { + "id": 35, + "damage": 8 + }, + { + "id": 35, + "damage": 7 + }, + { + "id": 35, + "damage": 15 + }, + { + "id": 35, + "damage": 12 + }, + { + "id": 35, + "damage": 14 + }, + { + "id": 35, + "damage": 1 + }, + { + "id": 35, + "damage": 4 + }, + { + "id": 35, + "damage": 5 + }, + { + "id": 35, + "damage": 13 + }, + { + "id": 35, + "damage": 9 + }, + { + "id": 35, + "damage": 3 + }, + { + "id": 35, + "damage": 11 + }, + { + "id": 35, + "damage": 10 + }, + { + "id": 35, + "damage": 2 + }, + { + "id": 35, + "damage": 6 + }, + { + "id": 171 + }, + { + "id": 171, + "damage": 8 + }, + { + "id": 171, + "damage": 7 + }, + { + "id": 171, + "damage": 15 + }, + { + "id": 171, + "damage": 12 + }, + { + "id": 171, + "damage": 14 + }, + { + "id": 171, + "damage": 1 + }, + { + "id": 171, + "damage": 4 + }, + { + "id": 171, + "damage": 5 + }, + { + "id": 171, + "damage": 13 + }, + { + "id": 171, + "damage": 9 + }, + { + "id": 171, + "damage": 3 + }, + { + "id": 171, + "damage": 11 + }, + { + "id": 171, + "damage": 10 + }, + { + "id": 171, + "damage": 2 + }, + { + "id": 171, + "damage": 6 + }, + { + "id": 237 + }, + { + "id": 237, + "damage": 8 + }, + { + "id": 237, + "damage": 7 + }, + { + "id": 237, + "damage": 15 + }, + { + "id": 237, + "damage": 12 + }, + { + "id": 237, + "damage": 14 + }, + { + "id": 237, + "damage": 1 + }, + { + "id": 237, + "damage": 4 + }, + { + "id": 237, + "damage": 5 + }, + { + "id": 237, + "damage": 13 + }, + { + "id": 237, + "damage": 9 + }, + { + "id": 237, + "damage": 3 + }, + { + "id": 237, + "damage": 11 + }, + { + "id": 237, + "damage": 10 + }, + { + "id": 237, + "damage": 2 + }, + { + "id": 237, + "damage": 6 + }, + { + "id": 236 + }, + { + "id": 236, + "damage": 8 + }, + { + "id": 236, + "damage": 7 + }, + { + "id": 236, + "damage": 15 + }, + { + "id": 236, + "damage": 12 + }, + { + "id": 236, + "damage": 14 + }, + { + "id": 236, + "damage": 1 + }, + { + "id": 236, + "damage": 4 + }, + { + "id": 236, + "damage": 5 + }, + { + "id": 236, + "damage": 13 + }, + { + "id": 236, + "damage": 9 + }, + { + "id": 236, + "damage": 3 + }, + { + "id": 236, + "damage": 11 + }, + { + "id": 236, + "damage": 10 + }, + { + "id": 236, + "damage": 2 + }, + { + "id": 236, + "damage": 6 + }, + { + "id": 82 + }, + { + "id": 172 + }, + { + "id": 159 + }, + { + "id": 159, + "damage": 8 + }, + { + "id": 159, + "damage": 7 + }, + { + "id": 159, + "damage": 15 + }, + { + "id": 159, + "damage": 12 + }, + { + "id": 159, + "damage": 14 + }, + { + "id": 159, + "damage": 1 + }, + { + "id": 159, + "damage": 4 + }, + { + "id": 159, + "damage": 5 + }, + { + "id": 159, + "damage": 13 + }, + { + "id": 159, + "damage": 9 + }, + { + "id": 159, + "damage": 3 + }, + { + "id": 159, + "damage": 11 + }, + { + "id": 159, + "damage": 10 + }, + { + "id": 159, + "damage": 2 + }, + { + "id": 159, + "damage": 6 + }, + { + "id": 220 + }, + { + "id": 228 + }, + { + "id": 227 + }, + { + "id": 235 + }, + { + "id": 232 + }, + { + "id": 234 + }, + { + "id": 221 + }, + { + "id": 224 + }, + { + "id": 225 + }, + { + "id": 233 + }, + { + "id": 229 + }, + { + "id": 223 + }, + { + "id": 231 + }, + { + "id": 219 + }, + { + "id": 222 + }, + { + "id": 226 + }, + { + "id": 201 + }, + { + "id": 201, + "damage": 2 + }, + { + "id": 214 + }, + { + "id": -227 + }, + { + "id": -230 + }, + { + "id": -232 + }, + { + "id": -233 + }, + { + "id": -234 + }, + { + "id": -235 + }, + { + "id": -236 + }, + { + "id": 3 + }, + { + "id": 3, + "damage": 1 + }, + { + "id": 60 + }, + { + "id": 2 + }, + { + "id": 198 + }, + { + "id": 243 + }, + { + "id": 110 + }, + { + "id": 1 + }, + { + "id": 15 + }, + { + "id": 14 + }, + { + "id": 56 + }, + { + "id": 21 + }, + { + "id": 73 + }, + { + "id": 16 + }, + { + "id": 129 + }, + { + "id": 153 + }, + { + "id": -288 + }, + { + "id": -271 + }, + { + "id": 13 + }, + { + "id": 1, + "damage": 1 + }, + { + "id": 1, + "damage": 3 + }, + { + "id": 1, + "damage": 5 + }, + { + "id": -273 + }, + { + "id": 1, + "damage": 2 + }, + { + "id": 1, + "damage": 4 + }, + { + "id": 1, + "damage": 6 + }, + { + "id": -291 + }, + { + "id": 12 + }, + { + "id": 12, + "damage": 1 + }, + { + "id": 81 + }, + { + "id": 17 + }, + { + "id": -10 + }, + { + "id": 17, + "damage": 1 + }, + { + "id": -5 + }, + { + "id": 17, + "damage": 2 + }, + { + "id": -6 + }, + { + "id": 17, + "damage": 3 + }, + { + "id": -7 + }, + { + "id": 162 + }, + { + "id": -8 + }, + { + "id": 162, + "damage": 1 + }, + { + "id": -9 + }, + { + "id": -225 + }, + { + "id": -240 + }, + { + "id": -226 + }, + { + "id": -241 + }, + { + "id": -212 + }, + { + "id": -212, + "damage": 8 + }, + { + "id": -212, + "damage": 1 + }, + { + "id": -212, + "damage": 9 + }, + { + "id": -212, + "damage": 2 + }, + { + "id": -212, + "damage": 10 + }, + { + "id": -212, + "damage": 3 + }, + { + "id": -212, + "damage": 11 + }, + { + "id": -212, + "damage": 4 + }, + { + "id": -212, + "damage": 12 + }, + { + "id": -212, + "damage": 5 + }, + { + "id": -212, + "damage": 13 + }, + { + "id": -299 + }, + { + "id": -300 + }, + { + "id": -298 + }, + { + "id": -301 + }, + { + "id": 18 + }, + { + "id": 18, + "damage": 1 + }, + { + "id": 18, + "damage": 2 + }, + { + "id": 18, + "damage": 3 + }, + { + "id": 161 + }, + { + "id": 161, + "damage": 1 + }, + { + "id": 6 + }, + { + "id": 6, + "damage": 1 + }, + { + "id": 6, + "damage": 2 + }, + { + "id": 6, + "damage": 3 + }, + { + "id": 6, + "damage": 4 + }, + { + "id": 6, + "damage": 5 + }, + { + "id": -218 + }, + { + "id": 295 + }, + { + "id": 361 + }, + { + "id": 362 + }, + { + "id": 458 + }, + { + "id": 296 + }, + { + "id": 457 + }, + { + "id": 392 + }, + { + "id": 394 + }, + { + "id": 391 + }, + { + "id": 396 + }, + { + "id": 260 + }, + { + "id": 322 + }, + { + "id": 466 + }, + { + "id": 103 + }, + { + "id": 360 + }, + { + "id": 382 + }, + { + "id": 477 + }, + { + "id": 86 + }, + { + "id": -155 + }, + { + "id": 91 + }, + { + "id": 736 + }, + { + "id": 31, + "damage": 2 + }, + { + "id": 175, + "damage": 3 + }, + { + "id": 31, + "damage": 1 + }, + { + "id": 175, + "damage": 2 + }, + { + "id": 760 + }, + { + "id": -131, + "damage": 3 + }, + { + "id": -131, + "damage": 1 + }, + { + "id": -131, + "damage": 2 + }, + { + "id": -131 + }, + { + "id": -131, + "damage": 4 + }, + { + "id": -131, + "damage": 11 + }, + { + "id": -131, + "damage": 9 + }, + { + "id": -131, + "damage": 10 + }, + { + "id": -131, + "damage": 8 + }, + { + "id": -131, + "damage": 12 + }, + { + "id": -133, + "damage": 3 + }, + { + "id": -133, + "damage": 1 + }, + { + "id": -133, + "damage": 2 + }, + { + "id": -133 + }, + { + "id": -133, + "damage": 4 + }, + { + "id": -134, + "damage": 3 + }, + { + "id": -134, + "damage": 1 + }, + { + "id": -134, + "damage": 2 + }, + { + "id": -134 + }, + { + "id": -134, + "damage": 4 + }, + { + "id": 335 + }, + { + "id": -130 + }, + { + "id": -223 + }, + { + "id": -224 + }, + { + "id": 37 + }, + { + "id": 38 + }, + { + "id": 38, + "damage": 1 + }, + { + "id": 38, + "damage": 2 + }, + { + "id": 38, + "damage": 3 + }, + { + "id": 38, + "damage": 4 + }, + { + "id": 38, + "damage": 5 + }, + { + "id": 38, + "damage": 6 + }, + { + "id": 38, + "damage": 7 + }, + { + "id": 38, + "damage": 8 + }, + { + "id": 38, + "damage": 9 + }, + { + "id": 38, + "damage": 10 + }, + { + "id": 175 + }, + { + "id": 175, + "damage": 1 + }, + { + "id": 175, + "damage": 4 + }, + { + "id": 175, + "damage": 5 + }, + { + "id": -216 + }, + { + "id": 351, + "damage": 19 + }, + { + "id": 351, + "damage": 7 + }, + { + "id": 351, + "damage": 8 + }, + { + "id": 351, + "damage": 16 + }, + { + "id": 351, + "damage": 17 + }, + { + "id": 351, + "damage": 1 + }, + { + "id": 351, + "damage": 14 + }, + { + "id": 351, + "damage": 11 + }, + { + "id": 351, + "damage": 10 + }, + { + "id": 351, + "damage": 2 + }, + { + "id": 351, + "damage": 6 + }, + { + "id": 351, + "damage": 12 + }, + { + "id": 351, + "damage": 18 + }, + { + "id": 351, + "damage": 5 + }, + { + "id": 351, + "damage": 13 + }, + { + "id": 351, + "damage": 9 + }, + { + "id": 351 + }, + { + "id": 351, + "damage": 3 + }, + { + "id": 351, + "damage": 4 + }, + { + "id": 351, + "damage": 15 + }, + { + "id": 106 + }, + { + "id": -231 + }, + { + "id": -287 + }, + { + "id": 111 + }, + { + "id": 32 + }, + { + "id": -163 + }, + { + "id": 80 + }, + { + "id": 79 + }, + { + "id": 174 + }, + { + "id": -11 + }, + { + "id": 78 + }, + { + "id": 365 + }, + { + "id": 319 + }, + { + "id": 363 + }, + { + "id": 423 + }, + { + "id": 411 + }, + { + "id": 349 + }, + { + "id": 460 + }, + { + "id": 461 + }, + { + "id": 462 + }, + { + "id": 39 + }, + { + "id": 40 + }, + { + "id": -228 + }, + { + "id": -229 + }, + { + "id": 99, + "damage": 14 + }, + { + "id": 100, + "damage": 14 + }, + { + "id": 99, + "damage": 15 + }, + { + "id": 99 + }, + { + "id": 344 + }, + { + "id": 338 + }, + { + "id": 353 + }, + { + "id": 367 + }, + { + "id": 352 + }, + { + "id": 30 + }, + { + "id": 375 + }, + { + "id": 52 + }, + { + "id": 97 + }, + { + "id": 97, + "damage": 1 + }, + { + "id": 97, + "damage": 2 + }, + { + "id": 97, + "damage": 3 + }, + { + "id": 97, + "damage": 4 + }, + { + "id": 97, + "damage": 5 + }, + { + "id": 122 + }, + { + "id": -159 + }, + { + "id": 383, + "damage": 10 + }, + { + "id": 383, + "damage": 122 + }, + { + "id": 383, + "damage": 11 + }, + { + "id": 383, + "damage": 12 + }, + { + "id": 383, + "damage": 13 + }, + { + "id": 383, + "damage": 14 + }, + { + "id": 383, + "damage": 28 + }, + { + "id": 383, + "damage": 22 + }, + { + "id": 383, + "damage": 75 + }, + { + "id": 383, + "damage": 16 + }, + { + "id": 383, + "damage": 19 + }, + { + "id": 383, + "damage": 30 + }, + { + "id": 383, + "damage": 18 + }, + { + "id": 383, + "damage": 29 + }, + { + "id": 383, + "damage": 23 + }, + { + "id": 383, + "damage": 24 + }, + { + "id": 383, + "damage": 25 + }, + { + "id": 383, + "damage": 26 + }, + { + "id": 383, + "damage": 27 + }, + { + "id": 383, + "damage": 111 + }, + { + "id": 383, + "damage": 112 + }, + { + "id": 383, + "damage": 108 + }, + { + "id": 383, + "damage": 109 + }, + { + "id": 383, + "damage": 31 + }, + { + "id": 383, + "damage": 74 + }, + { + "id": 383, + "damage": 113 + }, + { + "id": 383, + "damage": 121 + }, + { + "id": 383, + "damage": 33 + }, + { + "id": 383, + "damage": 38 + }, + { + "id": 383, + "damage": 39 + }, + { + "id": 383, + "damage": 34 + }, + { + "id": 383, + "damage": 48 + }, + { + "id": 383, + "damage": 46 + }, + { + "id": 383, + "damage": 37 + }, + { + "id": 383, + "damage": 35 + }, + { + "id": 383, + "damage": 32 + }, + { + "id": 383, + "damage": 36 + }, + { + "id": 383, + "damage": 47 + }, + { + "id": 383, + "damage": 110 + }, + { + "id": 383, + "damage": 17 + }, + { + "id": 383, + "damage": 40 + }, + { + "id": 383, + "damage": 45 + }, + { + "id": 383, + "damage": 49 + }, + { + "id": 383, + "damage": 50 + }, + { + "id": 383, + "damage": 55 + }, + { + "id": 383, + "damage": 42 + }, + { + "id": 383, + "damage": 125 + }, + { + "id": 383, + "damage": 124 + }, + { + "id": 383, + "damage": 123 + }, + { + "id": 383, + "damage": 126 + }, + { + "id": 383, + "damage": 127 + }, + { + "id": 383, + "damage": 41 + }, + { + "id": 383, + "damage": 43 + }, + { + "id": 383, + "damage": 54 + }, + { + "id": 383, + "damage": 57 + }, + { + "id": 383, + "damage": 104 + }, + { + "id": 383, + "damage": 105 + }, + { + "id": 383, + "damage": 15 + }, + { + "id": 383, + "damage": 118 + }, + { + "id": 383, + "damage": 44 + }, + { + "id": 383, + "damage": 58 + }, + { + "id": 383, + "damage": 114 + }, + { + "id": 383, + "damage": 59 + }, + { + "id": 49 + }, + { + "id": -289 + }, + { + "id": 7 + }, + { + "id": 88 + }, + { + "id": 87 + }, + { + "id": 213 + }, + { + "id": 372 + }, + { + "id": 121 + }, + { + "id": 200 + }, + { + "id": 240 + }, + { + "id": 432 + }, + { + "id": 433 + }, + { + "id": 19 + }, + { + "id": 19, + "damage": 1 + }, + { + "id": -132 + }, + { + "id": -132, + "damage": 1 + }, + { + "id": -132, + "damage": 2 + }, + { + "id": -132, + "damage": 3 + }, + { + "id": -132, + "damage": 4 + }, + { + "id": -132, + "damage": 8 + }, + { + "id": -132, + "damage": 9 + }, + { + "id": -132, + "damage": 10 + }, + { + "id": -132, + "damage": 11 + }, + { + "id": -132, + "damage": 12 + }, + { + "id": 298 + }, + { + "id": 302 + }, + { + "id": 306 + }, + { + "id": 314 + }, + { + "id": 310 + }, + { + "id": 748 + }, + { + "id": 299 + }, + { + "id": 303 + }, + { + "id": 307 + }, + { + "id": 315 + }, + { + "id": 311 + }, + { + "id": 749 + }, + { + "id": 300 + }, + { + "id": 304 + }, + { + "id": 308 + }, + { + "id": 316 + }, + { + "id": 312 + }, + { + "id": 750 + }, + { + "id": 301 + }, + { + "id": 305 + }, + { + "id": 309 + }, + { + "id": 317 + }, + { + "id": 313 + }, + { + "id": 751 + }, + { + "id": 268 + }, + { + "id": 272 + }, + { + "id": 267 + }, + { + "id": 283 + }, + { + "id": 276 + }, + { + "id": 743 + }, + { + "id": 271 + }, + { + "id": 275 + }, + { + "id": 258 + }, + { + "id": 286 + }, + { + "id": 279 + }, + { + "id": 746 + }, + { + "id": 270 + }, + { + "id": 274 + }, + { + "id": 257 + }, + { + "id": 285 + }, + { + "id": 278 + }, + { + "id": 745 + }, + { + "id": 269 + }, + { + "id": 273 + }, + { + "id": 256 + }, + { + "id": 284 + }, + { + "id": 277 + }, + { + "id": 744 + }, + { + "id": 290 + }, + { + "id": 291 + }, + { + "id": 292 + }, + { + "id": 294 + }, + { + "id": 293 + }, + { + "id": 747 + }, + { + "id": 261 + }, + { + "id": 471 + }, + { + "id": 262 + }, + { + "id": 262, + "damage": 6 + }, + { + "id": 262, + "damage": 7 + }, + { + "id": 262, + "damage": 8 + }, + { + "id": 262, + "damage": 9 + }, + { + "id": 262, + "damage": 10 + }, + { + "id": 262, + "damage": 11 + }, + { + "id": 262, + "damage": 12 + }, + { + "id": 262, + "damage": 13 + }, + { + "id": 262, + "damage": 14 + }, + { + "id": 262, + "damage": 15 + }, + { + "id": 262, + "damage": 16 + }, + { + "id": 262, + "damage": 17 + }, + { + "id": 262, + "damage": 18 + }, + { + "id": 262, + "damage": 19 + }, + { + "id": 262, + "damage": 20 + }, + { + "id": 262, + "damage": 21 + }, + { + "id": 262, + "damage": 22 + }, + { + "id": 262, + "damage": 23 + }, + { + "id": 262, + "damage": 24 + }, + { + "id": 262, + "damage": 25 + }, + { + "id": 262, + "damage": 26 + }, + { + "id": 262, + "damage": 27 + }, + { + "id": 262, + "damage": 28 + }, + { + "id": 262, + "damage": 29 + }, + { + "id": 262, + "damage": 30 + }, + { + "id": 262, + "damage": 31 + }, + { + "id": 262, + "damage": 32 + }, + { + "id": 262, + "damage": 33 + }, + { + "id": 262, + "damage": 34 + }, + { + "id": 262, + "damage": 35 + }, + { + "id": 262, + "damage": 36 + }, + { + "id": 262, + "damage": 37 + }, + { + "id": 262, + "damage": 38 + }, + { + "id": 262, + "damage": 39 + }, + { + "id": 262, + "damage": 40 + }, + { + "id": 262, + "damage": 41 + }, + { + "id": 262, + "damage": 42 + }, + { + "id": 262, + "damage": 43 + }, + { + "id": 513 + }, + { + "id": 366 + }, + { + "id": 320 + }, + { + "id": 364 + }, + { + "id": 424 + }, + { + "id": 412 + }, + { + "id": 350 + }, + { + "id": 463 + }, + { + "id": 297 + }, + { + "id": 282 + }, + { + "id": 459 + }, + { + "id": 413 + }, + { + "id": 393 + }, + { + "id": 357 + }, + { + "id": 400 + }, + { + "id": 354 + }, + { + "id": 464 + }, + { + "id": 346 + }, + { + "id": 398 + }, + { + "id": 757 + }, + { + "id": 332 + }, + { + "id": 359 + }, + { + "id": 259 + }, + { + "id": 420 + }, + { + "id": 347 + }, + { + "id": 345 + }, + { + "id": 395 + }, + { + "id": 395, + "damage": 2 + }, + { + "id": 329 + }, + { + "id": 416 + }, + { + "id": 417 + }, + { + "id": 418 + }, + { + "id": 419 + }, + { + "id": 455 + }, + { + "id": 469 + }, + { + "id": 444 + }, + { + "id": 450 + }, + { + "id": 374 + }, + { + "id": 384 + }, + { + "id": 373 + }, + { + "id": 373, + "damage": 1 + }, + { + "id": 373, + "damage": 2 + }, + { + "id": 373, + "damage": 3 + }, + { + "id": 373, + "damage": 4 + }, + { + "id": 373, + "damage": 5 + }, + { + "id": 373, + "damage": 6 + }, + { + "id": 373, + "damage": 7 + }, + { + "id": 373, + "damage": 8 + }, + { + "id": 373, + "damage": 9 + }, + { + "id": 373, + "damage": 10 + }, + { + "id": 373, + "damage": 11 + }, + { + "id": 373, + "damage": 12 + }, + { + "id": 373, + "damage": 13 + }, + { + "id": 373, + "damage": 14 + }, + { + "id": 373, + "damage": 15 + }, + { + "id": 373, + "damage": 16 + }, + { + "id": 373, + "damage": 17 + }, + { + "id": 373, + "damage": 18 + }, + { + "id": 373, + "damage": 19 + }, + { + "id": 373, + "damage": 20 + }, + { + "id": 373, + "damage": 21 + }, + { + "id": 373, + "damage": 22 + }, + { + "id": 373, + "damage": 23 + }, + { + "id": 373, + "damage": 24 + }, + { + "id": 373, + "damage": 25 + }, + { + "id": 373, + "damage": 26 + }, + { + "id": 373, + "damage": 27 + }, + { + "id": 373, + "damage": 28 + }, + { + "id": 373, + "damage": 29 + }, + { + "id": 373, + "damage": 30 + }, + { + "id": 373, + "damage": 31 + }, + { + "id": 373, + "damage": 32 + }, + { + "id": 373, + "damage": 33 + }, + { + "id": 373, + "damage": 34 + }, + { + "id": 373, + "damage": 35 + }, + { + "id": 373, + "damage": 36 + }, + { + "id": 373, + "damage": 37 + }, + { + "id": 373, + "damage": 38 + }, + { + "id": 373, + "damage": 39 + }, + { + "id": 373, + "damage": 40 + }, + { + "id": 373, + "damage": 41 + }, + { + "id": 373, + "damage": 42 + }, + { + "id": 438 + }, + { + "id": 438, + "damage": 1 + }, + { + "id": 438, + "damage": 2 + }, + { + "id": 438, + "damage": 3 + }, + { + "id": 438, + "damage": 4 + }, + { + "id": 438, + "damage": 5 + }, + { + "id": 438, + "damage": 6 + }, + { + "id": 438, + "damage": 7 + }, + { + "id": 438, + "damage": 8 + }, + { + "id": 438, + "damage": 9 + }, + { + "id": 438, + "damage": 10 + }, + { + "id": 438, + "damage": 11 + }, + { + "id": 438, + "damage": 12 + }, + { + "id": 438, + "damage": 13 + }, + { + "id": 438, + "damage": 14 + }, + { + "id": 438, + "damage": 15 + }, + { + "id": 438, + "damage": 16 + }, + { + "id": 438, + "damage": 17 + }, + { + "id": 438, + "damage": 18 + }, + { + "id": 438, + "damage": 19 + }, + { + "id": 438, + "damage": 20 + }, + { + "id": 438, + "damage": 21 + }, + { + "id": 438, + "damage": 22 + }, + { + "id": 438, + "damage": 23 + }, + { + "id": 438, + "damage": 24 + }, + { + "id": 438, + "damage": 25 + }, + { + "id": 438, + "damage": 26 + }, + { + "id": 438, + "damage": 27 + }, + { + "id": 438, + "damage": 28 + }, + { + "id": 438, + "damage": 29 + }, + { + "id": 438, + "damage": 30 + }, + { + "id": 438, + "damage": 31 + }, + { + "id": 438, + "damage": 32 + }, + { + "id": 438, + "damage": 33 + }, + { + "id": 438, + "damage": 34 + }, + { + "id": 438, + "damage": 35 + }, + { + "id": 438, + "damage": 36 + }, + { + "id": 438, + "damage": 37 + }, + { + "id": 438, + "damage": 38 + }, + { + "id": 438, + "damage": 39 + }, + { + "id": 438, + "damage": 40 + }, + { + "id": 438, + "damage": 41 + }, + { + "id": 438, + "damage": 42 + }, + { + "id": 441 + }, + { + "id": 441, + "damage": 1 + }, + { + "id": 441, + "damage": 2 + }, + { + "id": 441, + "damage": 3 + }, + { + "id": 441, + "damage": 4 + }, + { + "id": 441, + "damage": 5 + }, + { + "id": 441, + "damage": 6 + }, + { + "id": 441, + "damage": 7 + }, + { + "id": 441, + "damage": 8 + }, + { + "id": 441, + "damage": 9 + }, + { + "id": 441, + "damage": 10 + }, + { + "id": 441, + "damage": 11 + }, + { + "id": 441, + "damage": 12 + }, + { + "id": 441, + "damage": 13 + }, + { + "id": 441, + "damage": 14 + }, + { + "id": 441, + "damage": 15 + }, + { + "id": 441, + "damage": 16 + }, + { + "id": 441, + "damage": 17 + }, + { + "id": 441, + "damage": 18 + }, + { + "id": 441, + "damage": 19 + }, + { + "id": 441, + "damage": 20 + }, + { + "id": 441, + "damage": 21 + }, + { + "id": 441, + "damage": 22 + }, + { + "id": 441, + "damage": 23 + }, + { + "id": 441, + "damage": 24 + }, + { + "id": 441, + "damage": 25 + }, + { + "id": 441, + "damage": 26 + }, + { + "id": 441, + "damage": 27 + }, + { + "id": 441, + "damage": 28 + }, + { + "id": 441, + "damage": 29 + }, + { + "id": 441, + "damage": 30 + }, + { + "id": 441, + "damage": 31 + }, + { + "id": 441, + "damage": 32 + }, + { + "id": 441, + "damage": 33 + }, + { + "id": 441, + "damage": 34 + }, + { + "id": 441, + "damage": 35 + }, + { + "id": 441, + "damage": 36 + }, + { + "id": 441, + "damage": 37 + }, + { + "id": 441, + "damage": 38 + }, + { + "id": 441, + "damage": 39 + }, + { + "id": 441, + "damage": 40 + }, + { + "id": 441, + "damage": 41 + }, + { + "id": 441, + "damage": 42 + }, + { + "id": 280 + }, + { + "id": 355 + }, + { + "id": 355, + "damage": 8 + }, + { + "id": 355, + "damage": 7 + }, + { + "id": 355, + "damage": 15 + }, + { + "id": 355, + "damage": 12 + }, + { + "id": 355, + "damage": 14 + }, + { + "id": 355, + "damage": 1 + }, + { + "id": 355, + "damage": 4 + }, + { + "id": 355, + "damage": 5 + }, + { + "id": 355, + "damage": 13 + }, + { + "id": 355, + "damage": 9 + }, + { + "id": 355, + "damage": 3 + }, + { + "id": 355, + "damage": 11 + }, + { + "id": 355, + "damage": 10 + }, + { + "id": 355, + "damage": 2 + }, + { + "id": 355, + "damage": 6 + }, + { + "id": 50 + }, + { + "id": -268 + }, + { + "id": -156 + }, + { + "id": -208 + }, + { + "id": -269 + }, + { + "id": 58 + }, + { + "id": -200 + }, + { + "id": -201 + }, + { + "id": -202 + }, + { + "id": -219 + }, + { + "id": 720 + }, + { + "id": 801 + }, + { + "id": 61 + }, + { + "id": -196 + }, + { + "id": -198 + }, + { + "id": -272 + }, + { + "id": 238, + "damage": 8 + }, + { + "id": 238 + }, + { + "id": 238, + "damage": 12 + }, + { + "id": 238, + "damage": 4 + }, + { + "id": 379 + }, + { + "id": 145 + }, + { + "id": 145, + "damage": 4 + }, + { + "id": 145, + "damage": 8 + }, + { + "id": -195 + }, + { + "id": 116 + }, + { + "id": 47 + }, + { + "id": -194 + }, + { + "id": 380 + }, + { + "id": -213 + }, + { + "id": 54 + }, + { + "id": 146 + }, + { + "id": 130 + }, + { + "id": -203 + }, + { + "id": 205 + }, + { + "id": 218 + }, + { + "id": 218, + "damage": 8 + }, + { + "id": 218, + "damage": 7 + }, + { + "id": 218, + "damage": 15 + }, + { + "id": 218, + "damage": 12 + }, + { + "id": 218, + "damage": 14 + }, + { + "id": 218, + "damage": 1 + }, + { + "id": 218, + "damage": 4 + }, + { + "id": 218, + "damage": 5 + }, + { + "id": 218, + "damage": 13 + }, + { + "id": 218, + "damage": 9 + }, + { + "id": 218, + "damage": 3 + }, + { + "id": 218, + "damage": 11 + }, + { + "id": 218, + "damage": 10 + }, + { + "id": 218, + "damage": 2 + }, + { + "id": 218, + "damage": 6 + }, + { + "id": 425 + }, + { + "id": 25 + }, + { + "id": 84 + }, + { + "id": 500 + }, + { + "id": 501 + }, + { + "id": 502 + }, + { + "id": 503 + }, + { + "id": 504 + }, + { + "id": 505 + }, + { + "id": 506 + }, + { + "id": 507 + }, + { + "id": 508 + }, + { + "id": 509 + }, + { + "id": 510 + }, + { + "id": 511 + }, + { + "id": 759 + }, + { + "id": 348 + }, + { + "id": 89 + }, + { + "id": 123 + }, + { + "id": 169 + }, + { + "id": 323 + }, + { + "id": 472 + }, + { + "id": 473 + }, + { + "id": 474 + }, + { + "id": 475 + }, + { + "id": 476 + }, + { + "id": 753 + }, + { + "id": 754 + }, + { + "id": 321 + }, + { + "id": 389 + }, + { + "id": 737 + }, + { + "id": 390 + }, + { + "id": 281 + }, + { + "id": 325 + }, + { + "id": 325, + "damage": 1 + }, + { + "id": 325, + "damage": 8 + }, + { + "id": 325, + "damage": 10 + }, + { + "id": 325, + "damage": 2 + }, + { + "id": 325, + "damage": 3 + }, + { + "id": 325, + "damage": 4 + }, + { + "id": 325, + "damage": 5 + }, + { + "id": 397, + "damage": 3 + }, + { + "id": 397, + "damage": 2 + }, + { + "id": 397, + "damage": 4 + }, + { + "id": 397, + "damage": 5 + }, + { + "id": 397 + }, + { + "id": 397, + "damage": 1 + }, + { + "id": 138 + }, + { + "id": -206 + }, + { + "id": -157 + }, + { + "id": -197 + }, + { + "id": 120 + }, + { + "id": 263 + }, + { + "id": 263, + "damage": 1 + }, + { + "id": 264 + }, + { + "id": 452 + }, + { + "id": 265 + }, + { + "id": 752 + }, + { + "id": 742 + }, + { + "id": 371 + }, + { + "id": 266 + }, + { + "id": 388 + }, + { + "id": 406 + }, + { + "id": 337 + }, + { + "id": 336 + }, + { + "id": 405 + }, + { + "id": 409 + }, + { + "id": 422 + }, + { + "id": 465 + }, + { + "id": 467 + }, + { + "id": 468 + }, + { + "id": 470 + }, + { + "id": 287 + }, + { + "id": 288 + }, + { + "id": 318 + }, + { + "id": 289 + }, + { + "id": 334 + }, + { + "id": 415 + }, + { + "id": 414 + }, + { + "id": 385 + }, + { + "id": 369 + }, + { + "id": 377 + }, + { + "id": 378 + }, + { + "id": 376 + }, + { + "id": 437 + }, + { + "id": 445 + }, + { + "id": 370 + }, + { + "id": 341 + }, + { + "id": 368 + }, + { + "id": 381 + }, + { + "id": 399 + }, + { + "id": 208 + }, + { + "id": 426 + }, + { + "id": 339 + }, + { + "id": 340 + }, + { + "id": 386 + }, + { + "id": 36 + }, + { + "id": -12 + }, + { + "id": -13 + }, + { + "id": -14 + }, + { + "id": -15 + }, + { + "id": -16 + }, + { + "id": -17 + }, + { + "id": -18 + }, + { + "id": -19 + }, + { + "id": -20 + }, + { + "id": -21 + }, + { + "id": -22 + }, + { + "id": -23 + }, + { + "id": -24 + }, + { + "id": -25 + }, + { + "id": -26 + }, + { + "id": -27 + }, + { + "id": -28 + }, + { + "id": -29 + }, + { + "id": -30 + }, + { + "id": -31 + }, + { + "id": -32 + }, + { + "id": -33 + }, + { + "id": -34 + }, + { + "id": -35 + }, + { + "id": -36 + }, + { + "id": -37 + }, + { + "id": -38 + }, + { + "id": -39 + }, + { + "id": -40 + }, + { + "id": -41 + }, + { + "id": -42 + }, + { + "id": -43 + }, + { + "id": -44 + }, + { + "id": -45 + }, + { + "id": -46 + }, + { + "id": -47 + }, + { + "id": -48 + }, + { + "id": -49 + }, + { + "id": -50 + }, + { + "id": -51 + }, + { + "id": -52 + }, + { + "id": -53 + }, + { + "id": -54 + }, + { + "id": -55 + }, + { + "id": -56 + }, + { + "id": -57 + }, + { + "id": -58 + }, + { + "id": -59 + }, + { + "id": -60 + }, + { + "id": -61 + }, + { + "id": -62 + }, + { + "id": -63 + }, + { + "id": -64 + }, + { + "id": -65 + }, + { + "id": -66 + }, + { + "id": -67 + }, + { + "id": -68 + }, + { + "id": -69 + }, + { + "id": -70 + }, + { + "id": -71 + }, + { + "id": -72 + }, + { + "id": -73 + }, + { + "id": -74 + }, + { + "id": -75 + }, + { + "id": -76 + }, + { + "id": -77 + }, + { + "id": -78 + }, + { + "id": -79 + }, + { + "id": -80 + }, + { + "id": -81 + }, + { + "id": -82 + }, + { + "id": -83 + }, + { + "id": -84 + }, + { + "id": -85 + }, + { + "id": -86 + }, + { + "id": -87 + }, + { + "id": -88 + }, + { + "id": -89 + }, + { + "id": -90 + }, + { + "id": -91 + }, + { + "id": -92 + }, + { + "id": -93 + }, + { + "id": -94 + }, + { + "id": -95 + }, + { + "id": -96 + }, + { + "id": -97 + }, + { + "id": -98 + }, + { + "id": -99 + }, + { + "id": -100 + }, + { + "id": -101 + }, + { + "id": -102 + }, + { + "id": -103 + }, + { + "id": -104 + }, + { + "id": -105 + }, + { + "id": -106 + }, + { + "id": -107 + }, + { + "id": -108 + }, + { + "id": -109 + }, + { + "id": -110 + }, + { + "id": -111 + }, + { + "id": -112 + }, + { + "id": -113 + }, + { + "id": -114 + }, + { + "id": -115 + }, + { + "id": -116 + }, + { + "id": -117 + }, + { + "id": -118 + }, + { + "id": -119 + }, + { + "id": -120 + }, + { + "id": -121 + }, + { + "id": -122 + }, + { + "id": -123 + }, + { + "id": -124 + }, + { + "id": -125 + }, + { + "id": -126 + }, + { + "id": -127 + }, + { + "id": -128 + }, + { + "id": -129 + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA=" + }, + { + "id": 403, + "nbt_b64": "CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA=" + }, + { + "id": 333 + }, + { + "id": 333, + "damage": 1 + }, + { + "id": 333, + "damage": 2 + }, + { + "id": 333, + "damage": 3 + }, + { + "id": 333, + "damage": 4 + }, + { + "id": 333, + "damage": 5 + }, + { + "id": 66 + }, + { + "id": 27 + }, + { + "id": 28 + }, + { + "id": 126 + }, + { + "id": 328 + }, + { + "id": 342 + }, + { + "id": 408 + }, + { + "id": 407 + }, + { + "id": 331 + }, + { + "id": 152 + }, + { + "id": 76 + }, + { + "id": 69 + }, + { + "id": 143 + }, + { + "id": -144 + }, + { + "id": -141 + }, + { + "id": -143 + }, + { + "id": -140 + }, + { + "id": -142 + }, + { + "id": 77 + }, + { + "id": -260 + }, + { + "id": -261 + }, + { + "id": -296 + }, + { + "id": 131 + }, + { + "id": 72 + }, + { + "id": -154 + }, + { + "id": -151 + }, + { + "id": -153 + }, + { + "id": -150 + }, + { + "id": -152 + }, + { + "id": -262 + }, + { + "id": -263 + }, + { + "id": 70 + }, + { + "id": 147 + }, + { + "id": 148 + }, + { + "id": -295 + }, + { + "id": 251 + }, + { + "id": 151 + }, + { + "id": 356 + }, + { + "id": 404 + }, + { + "id": 410 + }, + { + "id": 125, + "damage": 3 + }, + { + "id": 23, + "damage": 3 + }, + { + "id": 33, + "damage": 1 + }, + { + "id": 29, + "damage": 1 + }, + { + "id": 46 + }, + { + "id": 421 + }, + { + "id": -204 + }, + { + "id": 446 + }, + { + "id": 446, + "damage": 8 + }, + { + "id": 446, + "damage": 7 + }, + { + "id": 446, + "damage": 15 + }, + { + "id": 446, + "damage": 12 + }, + { + "id": 446, + "damage": 14 + }, + { + "id": 446, + "damage": 1 + }, + { + "id": 446, + "damage": 4 + }, + { + "id": 446, + "damage": 5 + }, + { + "id": 446, + "damage": 13 + }, + { + "id": 446, + "damage": 9 + }, + { + "id": 446, + "damage": 3 + }, + { + "id": 446, + "damage": 11 + }, + { + "id": 446, + "damage": 10 + }, + { + "id": 446, + "damage": 2 + }, + { + "id": 446, + "damage": 6 + }, + { + "id": 446, + "damage": 15, + "nbt_b64": "CgAAAwQAVHlwZQEAAAAA" + }, + { + "id": 434 + }, + { + "id": 434, + "damage": 1 + }, + { + "id": 434, + "damage": 2 + }, + { + "id": 434, + "damage": 3 + }, + { + "id": 434, + "damage": 4 + }, + { + "id": 434, + "damage": 5 + }, + { + "id": 434, + "damage": 6 + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 401, + "nbt_b64": "CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA" + }, + { + "id": 402, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d\/wA=" + }, + { + "id": 402, + "damage": 8, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H\/wA=" + }, + { + "id": 402, + "damage": 7, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d\/wA=" + }, + { + "id": 402, + "damage": 15, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw\/wA=" + }, + { + "id": 402, + "damage": 12, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6\/wA=" + }, + { + "id": 402, + "damage": 14, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5\/wA=" + }, + { + "id": 402, + "damage": 1, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w\/wA=" + }, + { + "id": 402, + "damage": 4, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8\/wA=" + }, + { + "id": 402, + "damage": 5, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ\/wA=" + }, + { + "id": 402, + "damage": 13, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H\/wA=" + }, + { + "id": 402, + "damage": 9, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz\/wA=" + }, + { + "id": 402, + "damage": 3, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD\/wA=" + }, + { + "id": 402, + "damage": 11, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+\/wA=" + }, + { + "id": 402, + "damage": 10, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA\/wA=" + }, + { + "id": 402, + "damage": 2, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe\/wA=" + }, + { + "id": 402, + "damage": 6, + "nbt_b64": "CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW\/wA=" + }, + { + "id": 758 + }, + { + "id": -239 + }, + { + "id": 741 + } +] \ No newline at end of file diff --git a/resources/legacy_recipes.json b/resources/legacy_recipes.json new file mode 100644 index 000000000..0647aad0c --- /dev/null +++ b/resources/legacy_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/Server.php b/src/Server.php index 71e43b155..0fc467bef 100644 --- a/src/Server.php +++ b/src/Server.php @@ -959,7 +959,7 @@ class Server{ $this->commandMap = new SimpleCommandMap($this); - $this->craftingManager = CraftingManagerFromDataHelper::make(Path::join(\pocketmine\BEDROCK_DATA_PATH, "recipes.json")); + $this->craftingManager = CraftingManagerFromDataHelper::make(Path::join(\pocketmine\RESOURCE_PATH, "legacy_recipes.json")); $this->resourceManager = new ResourcePackManager(Path::join($this->getDataPath(), "resource_packs"), $this->logger); diff --git a/src/inventory/CreativeInventory.php b/src/inventory/CreativeInventory.php index 8037e6091..25d3152a4 100644 --- a/src/inventory/CreativeInventory.php +++ b/src/inventory/CreativeInventory.php @@ -37,7 +37,7 @@ final class CreativeInventory{ private array $creative = []; private function __construct(){ - $creativeItems = json_decode(Filesystem::fileGetContents(Path::join(\pocketmine\BEDROCK_DATA_PATH, "creativeitems.json")), true); + $creativeItems = json_decode(Filesystem::fileGetContents(Path::join(\pocketmine\RESOURCE_PATH, "legacy_creativeitems.json")), true); foreach($creativeItems as $data){ $item = Item::jsonDeserialize($data); From 981385cf4a3b1ab5d9aabbeed4294ed2ee79bebb Mon Sep 17 00:00:00 2001 From: alvin0319 Date: Sat, 4 Feb 2023 23:04:31 +0900 Subject: [PATCH 3/7] GeneratorManager: Removed redundant Closure wrapping (#5551) --- src/world/generator/GeneratorManager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/generator/GeneratorManager.php b/src/world/generator/GeneratorManager.php index a00edd559..180450b72 100644 --- a/src/world/generator/GeneratorManager.php +++ b/src/world/generator/GeneratorManager.php @@ -40,7 +40,7 @@ final class GeneratorManager{ private array $list = []; public function __construct(){ - $this->addGenerator(Flat::class, "flat", \Closure::fromCallable(function(string $preset) : ?InvalidGeneratorOptionsException{ + $this->addGenerator(Flat::class, "flat", function(string $preset) : ?InvalidGeneratorOptionsException{ if($preset === ""){ return null; } @@ -50,7 +50,7 @@ final class GeneratorManager{ }catch(InvalidGeneratorOptionsException $e){ return $e; } - })); + }); $this->addGenerator(Normal::class, "normal", fn() => null); $this->addGenerator(Normal::class, "default", fn() => null); $this->addGenerator(Nether::class, "hell", fn() => null); From 811352e2ef1c8ea744d1454b5058a4947a0a8741 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Feb 2023 11:50:10 +0000 Subject: [PATCH 4/7] Bump build/php from `c658506` to `f51e954` (#5555) Bumps [build/php](https://github.com/pmmp/php-build-scripts) from `c658506` to `f51e954`. - [Release notes](https://github.com/pmmp/php-build-scripts/releases) - [Commits](https://github.com/pmmp/php-build-scripts/compare/c6585061ca9b2f5aed7d030aae583fc3de9b2557...f51e954743d32aba515a91b2d8b7e6a65e4ac064) --- updated-dependencies: - dependency-name: build/php dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build/php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/php b/build/php index c6585061c..f51e95474 160000 --- a/build/php +++ b/build/php @@ -1 +1 @@ -Subproject commit c6585061ca9b2f5aed7d030aae583fc3de9b2557 +Subproject commit f51e954743d32aba515a91b2d8b7e6a65e4ac064 From 8d2a9ce67cda6c13340151da2898d7e4d1d08cfa Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 6 Feb 2023 12:09:19 +0000 Subject: [PATCH 5/7] Clean PHPStan baselines --- tests/phpstan/configs/actual-problems.neon | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/phpstan/configs/actual-problems.neon b/tests/phpstan/configs/actual-problems.neon index 87fbb0eba..90ec78b19 100644 --- a/tests/phpstan/configs/actual-problems.neon +++ b/tests/phpstan/configs/actual-problems.neon @@ -20,11 +20,6 @@ parameters: count: 1 path: ../../../src/Server.php - - - message: "#^Parameter \\#1 \\$input of function yaml_parse expects string, string\\|false given\\.$#" - count: 1 - path: ../../../src/Server.php - - message: "#^Cannot cast mixed to int\\.$#" count: 2 @@ -580,11 +575,6 @@ parameters: count: 1 path: ../../../src/inventory/CreativeInventory.php - - - message: "#^Parameter \\#1 \\$json of function json_decode expects string, string\\|false given\\.$#" - count: 1 - path: ../../../src/inventory/CreativeInventory.php - - message: "#^Parameter \\#2 \\$recipe of class pocketmine\\\\event\\\\inventory\\\\CraftItemEvent constructor expects pocketmine\\\\crafting\\\\CraftingRecipe, pocketmine\\\\crafting\\\\CraftingRecipe\\|null given\\.$#" count: 1 From 8912a97be7e9cdc20512e30256ce58e7aad03018 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 6 Feb 2023 12:11:42 +0000 Subject: [PATCH 6/7] Update Composer dependencies --- composer.lock | 52 +++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/composer.lock b/composer.lock index e8987fccf..9ae4cab1d 100644 --- a/composer.lock +++ b/composer.lock @@ -2309,16 +2309,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.28", + "version": "9.6.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "954ca3113a03bf780d22f07bf055d883ee04b65e" + "reference": "e7b1615e3e887d6c719121c6d4a44b0ab9645555" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/954ca3113a03bf780d22f07bf055d883ee04b65e", - "reference": "954ca3113a03bf780d22f07bf055d883ee04b65e", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e7b1615e3e887d6c719121c6d4a44b0ab9645555", + "reference": "e7b1615e3e887d6c719121c6d4a44b0ab9645555", "shasum": "" }, "require": { @@ -2360,7 +2360,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.5-dev" + "dev-master": "9.6-dev" } }, "autoload": { @@ -2391,7 +2391,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.28" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.3" }, "funding": [ { @@ -2407,7 +2407,7 @@ "type": "tidelift" } ], - "time": "2023-01-14T12:32:24+00:00" + "time": "2023-02-04T13:37:15+00:00" }, { "name": "sebastian/cli-parser", @@ -2775,16 +2775,16 @@ }, { "name": "sebastian/environment", - "version": "5.1.4", + "version": "5.1.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7" + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", "shasum": "" }, "require": { @@ -2826,7 +2826,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4" + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" }, "funding": [ { @@ -2834,7 +2834,7 @@ "type": "github" } ], - "time": "2022-04-03T09:37:03+00:00" + "time": "2023-02-03T06:03:51+00:00" }, { "name": "sebastian/exporter", @@ -3148,16 +3148,16 @@ }, { "name": "sebastian/recursion-context", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", "shasum": "" }, "require": { @@ -3196,10 +3196,10 @@ } ], "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" }, "funding": [ { @@ -3207,7 +3207,7 @@ "type": "github" } ], - "time": "2020-10-26T13:17:30+00:00" + "time": "2023-02-03T06:07:39+00:00" }, { "name": "sebastian/resource-operations", @@ -3266,16 +3266,16 @@ }, { "name": "sebastian/type", - "version": "3.2.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e" + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", - "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", "shasum": "" }, "require": { @@ -3310,7 +3310,7 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.2.0" + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" }, "funding": [ { @@ -3318,7 +3318,7 @@ "type": "github" } ], - "time": "2022-09-12T14:47:03+00:00" + "time": "2023-02-03T06:13:03+00:00" }, { "name": "sebastian/version", From 41ab698f93a5b72add7b332ec53df43430845ee7 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 6 Feb 2023 12:29:54 +0000 Subject: [PATCH 7/7] wrong filename --- src/data/bedrock/LegacyItemIdToStringIdMap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/bedrock/LegacyItemIdToStringIdMap.php b/src/data/bedrock/LegacyItemIdToStringIdMap.php index 9f5c257dd..85a2939a3 100644 --- a/src/data/bedrock/LegacyItemIdToStringIdMap.php +++ b/src/data/bedrock/LegacyItemIdToStringIdMap.php @@ -30,6 +30,6 @@ final class LegacyItemIdToStringIdMap extends LegacyToStringBidirectionalIdMap{ use SingletonTrait; public function __construct(){ - parent::__construct(Path::join(\pocketmine\BEDROCK_ITEM_UPGRADE_SCHEMA_PATH, 'item_id_map.json')); + parent::__construct(Path::join(\pocketmine\BEDROCK_ITEM_UPGRADE_SCHEMA_PATH, 'item_legacy_id_map.json')); } }