diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 050353b17..2a4f17741 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -185,6 +185,9 @@ jobs: - name: Regenerate KnownTranslation APIs run: php build/generate-known-translation-apis.php + - name: Regenerate BedrockData available files constants + run: php build/generate-bedrockdata-path-consts.php + - name: Verify code is unchanged run: | git diff diff --git a/build/generate-bedrockdata-path-consts.php b/build/generate-bedrockdata-path-consts.php new file mode 100644 index 000000000..6ad6d83fd --- /dev/null +++ b/build/generate-bedrockdata-path-consts.php @@ -0,0 +1,128 @@ + $fileName){ + fwrite($output, "\tpublic const " . constantify($fileName) . " = BEDROCK_DATA_PATH . '/$fileName';\n"); +} + +fwrite($output, "}\n"); +fclose($output); + +echo "Done. Don't forget to run CS fixup after generating code.\n"; diff --git a/changelogs/4.16-beta.md b/changelogs/4.16-beta.md new file mode 100644 index 000000000..ba6847286 --- /dev/null +++ b/changelogs/4.16-beta.md @@ -0,0 +1,45 @@ +**For Minecraft: Bedrock Edition 1.19.62** + +### Note about API versions +Plugins which don't touch the protocol and compatible with any previous 4.x.y version will also run on these releases and do not need API bumps. +Plugin developers should **only** update their required API to this version if you need the changes in this build. + +**WARNING: If your plugin uses the protocol, you're not shielded by API change constraints.** You should consider using the `mcpe-protocol` directive in `plugin.yml` as a constraint if you do. + +# 4.16.0-BETA1 +Released 4th March 2023. + +## General +- Added granular timings for packet encode, similar to the existing timings for packet decode. +- Timings now covers several areas of the network system which were previously not counted by network timings, but were counted by total timings. This provides a better insight into the performance of the network system. + +## Performance +- Improved performance of packet batch handling by avoiding unnecessary object allocations. +- Improved performance of packet broadcasting when the broadcast size is below the batch threshold. Previously, the packets would be encoded once by every recipient, but now they are encoded once and then added to the send buffer of each session in their raw form. + - This change mostly affects servers with larger maps, where players are more widely distributed. + +## Build system +- Added a new script `build/generate-bedrockdata-path-consts.php`, which must be run whenever BedrockData is updated. This script generates a class of constants with the file paths of all BedrockData files. + +## API +### `pocketmine\entity` +- The following new API methods have been added: + - `public Entity->getGravity() : float` - returns the entity's gravity acceleration in blocks/tick^2 + - `public Entity->setGravity(float $gravity) : void` - sets the entity's gravity acceleration in blocks/tick^2 + +## Internals +- Now uses [`pocketmine/bedrock-data` 2.0.0](https://github.com/pmmp/BedrockData/releases/tag/2.0.0+bedrock-1.19.60). + - This version is now used by both PM4 and PM5, reducing maintenance burden. +- Now uses [`pocketmine/bedrock-protocol` 19.3.0](https://github.com/pmmp/BedrockProtocol/releases/tag/19.3.0+bedrock-1.19.62). + - This version provides new APIs for handling packet batches which enabled improving performance and adding new features, such as detailed packet encode timings. +- Crafting recipes and creative inventory data are now loaded from `recipes/legacy_recipes.json` and `recipes/legacy_creativeitems.json` respectively. Previously, these were loaded from BedrockData directly, but BedrockData 2.0 now uses a format which can't be supported in 4.x without BC breaks. +- Added dependencies on [`pocketmine/bedrock-block-upgrade-schema`](https://github.com/pmmp/BedrockBlockUpgradeSchema) and [`pocketmine/bedrock-item-upgrade-schema`](https://github.com/pmmp/BedrockItemUpgradeSchema). These provide mapping files no longer present in BedrockData 2.0. +- Reduced and/or eliminated most usages of `PacketBatch`, since it only appeared as a throwaway object and was therefore wasting performance. +- `Compressor` now exposes `getCompressionThreshold()` instead of `willCompress()`, which allows determining whether a batch will be compressed without allocating it. +- Added `pocketmine\data\bedrock\BedrockDataFiles`, an auto-generated class of constants with the file paths of all BedrockData files. This makes it easier to locate usages, detect unused files and avoid typos. + +# 4.16.0-BETA2 +Released 4th March 2023. + +## General +- Fixed incorrect release channel for 4.16.0-BETA1. diff --git a/composer.json b/composer.json index 6a7ae8275..64e62ed28 100644 --- a/composer.json +++ b/composer.json @@ -34,8 +34,10 @@ "adhocore/json-comment": "^1.1", "fgrosse/phpasn1": "^2.3", "netresearch/jsonmapper": "^4.0", - "pocketmine/bedrock-data": "~1.14.0+bedrock-1.19.60", - "pocketmine/bedrock-protocol": "~19.2.0+bedrock-1.19.62", + "pocketmine/bedrock-block-upgrade-schema": "^1.0.0", + "pocketmine/bedrock-data": "~2.0.0+bedrock-1.19.60", + "pocketmine/bedrock-item-upgrade-schema": "^1.0.0", + "pocketmine/bedrock-protocol": "~19.3.0+bedrock-1.19.62", "pocketmine/binaryutils": "^0.2.1", "pocketmine/callback-validator": "^1.0.2", "pocketmine/classloader": "^0.2.0", diff --git a/composer.lock b/composer.lock index 1540b215b..227bb4025 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": "379b9119e336f110eef12091b79f41d5", + "content-hash": "2230c1697e4d7d490f5957b3a80d80a7", "packages": [ { "name": "adhocore/json-comment", @@ -249,17 +249,43 @@ "time": "2022-12-08T20:46:14+00:00" }, { - "name": "pocketmine/bedrock-data", - "version": "1.14.0+bedrock-1.19.60", + "name": "pocketmine/bedrock-block-upgrade-schema", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/pmmp/BedrockData.git", - "reference": "7b06234ec6e1f4fb06ad4b2f177e606c25df9b46" + "url": "https://github.com/pmmp/BedrockBlockUpgradeSchema.git", + "reference": "78c965a2316986ac0eaf3235d75efb187127e7a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pmmp/BedrockData/zipball/7b06234ec6e1f4fb06ad4b2f177e606c25df9b46", - "reference": "7b06234ec6e1f4fb06ad4b2f177e606c25df9b46", + "url": "https://api.github.com/repos/pmmp/BedrockBlockUpgradeSchema/zipball/78c965a2316986ac0eaf3235d75efb187127e7a2", + "reference": "78c965a2316986ac0eaf3235d75efb187127e7a2", + "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.1.0" + }, + "time": "2023-03-06T17:53:36+00:00" + }, + { + "name": "pocketmine/bedrock-data", + "version": "2.0.0+bedrock-1.19.60", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BedrockData.git", + "reference": "957e49b2381641af29f595e4f32ded3e76ce4723" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BedrockData/zipball/957e49b2381641af29f595e4f32ded3e76ce4723", + "reference": "957e49b2381641af29f595e4f32ded3e76ce4723", "shasum": "" }, "type": "library", @@ -270,22 +296,48 @@ "description": "Blobs of data generated from Minecraft: Bedrock Edition, used by PocketMine-MP", "support": { "issues": "https://github.com/pmmp/BedrockData/issues", - "source": "https://github.com/pmmp/BedrockData/tree/bedrock-1.19.60" + "source": "https://github.com/pmmp/BedrockData/tree/2.0.0+bedrock-1.19.60" }, - "time": "2023-02-08T18:32:01+00:00" + "time": "2023-02-23T21:25:04+00:00" }, { - "name": "pocketmine/bedrock-protocol", - "version": "19.2.0+bedrock-1.19.62", + "name": "pocketmine/bedrock-item-upgrade-schema", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/pmmp/BedrockProtocol.git", - "reference": "a156db582d0b1a6c20c9d9cc9b1df7ef907efd0b" + "url": "https://github.com/pmmp/BedrockItemUpgradeSchema.git", + "reference": "7e53f77ea34ba30b1f94d3c24e64e19d3c4296e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pmmp/BedrockProtocol/zipball/a156db582d0b1a6c20c9d9cc9b1df7ef907efd0b", - "reference": "a156db582d0b1a6c20c9d9cc9b1df7ef907efd0b", + "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": "19.3.0+bedrock-1.19.62", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BedrockProtocol.git", + "reference": "a5bf4753c7f30f781c4541918e238f5bb637e7ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BedrockProtocol/zipball/a5bf4753c7f30f781c4541918e238f5bb637e7ad", + "reference": "a5bf4753c7f30f781c4541918e238f5bb637e7ad", "shasum": "" }, "require": { @@ -317,9 +369,9 @@ "description": "An implementation of the Minecraft: Bedrock Edition protocol in PHP", "support": { "issues": "https://github.com/pmmp/BedrockProtocol/issues", - "source": "https://github.com/pmmp/BedrockProtocol/tree/19.2.0+bedrock-1.19.62" + "source": "https://github.com/pmmp/BedrockProtocol/tree/19.3.0+bedrock-1.19.62" }, - "time": "2023-02-17T16:32:49+00:00" + "time": "2023-02-19T16:11:03+00:00" }, { "name": "pocketmine/binaryutils", 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/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/Server.php b/src/Server.php index 71e43b155..e5f312f4e 100644 --- a/src/Server.php +++ b/src/Server.php @@ -891,6 +891,9 @@ class Server{ if($this->configGroup->getPropertyInt("network.batch-threshold", 256) >= 0){ $netCompressionThreshold = $this->configGroup->getPropertyInt("network.batch-threshold", 256); } + if($netCompressionThreshold < 0){ + $netCompressionThreshold = null; + } $netCompressionLevel = $this->configGroup->getPropertyInt("network.compression-level", 6); if($netCompressionLevel < 1 || $netCompressionLevel > 9){ @@ -959,7 +962,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); @@ -1378,14 +1381,16 @@ class Server{ * * @param bool|null $sync Compression on the main thread (true) or workers (false). Default is automatic (null). */ - public function prepareBatch(PacketBatch $stream, Compressor $compressor, ?bool $sync = null) : CompressBatchPromise{ + public function prepareBatch(PacketBatch $stream, Compressor $compressor, ?bool $sync = null, ?TimingsHandler $timings = null) : CompressBatchPromise{ + $timings ??= Timings::$playerNetworkSendCompress; try{ - Timings::$playerNetworkSendCompress->startTiming(); + $timings->startTiming(); $buffer = $stream->getBuffer(); if($sync === null){ - $sync = !($this->networkCompressionAsync && $compressor->willCompress($buffer)); + $threshold = $compressor->getCompressionThreshold(); + $sync = !$this->networkCompressionAsync || $threshold === null || strlen($stream->getBuffer()) < $threshold; } $promise = new CompressBatchPromise(); @@ -1398,7 +1403,7 @@ class Server{ return $promise; }finally{ - Timings::$playerNetworkSendCompress->stopTiming(); + $timings->stopTiming(); } } diff --git a/src/VersionInfo.php b/src/VersionInfo.php index 84c712e65..9314226b2 100644 --- a/src/VersionInfo.php +++ b/src/VersionInfo.php @@ -31,9 +31,9 @@ use function str_repeat; final class VersionInfo{ public const NAME = "PocketMine-MP"; - public const BASE_VERSION = "4.15.4"; + public const BASE_VERSION = "4.16.0-BETA3"; public const IS_DEVELOPMENT_BUILD = true; - public const BUILD_CHANNEL = "stable"; + public const BUILD_CHANNEL = "beta"; private function __construct(){ //NOOP diff --git a/src/data/bedrock/BedrockDataFiles.php b/src/data/bedrock/BedrockDataFiles.php new file mode 100644 index 000000000..2c9350ca3 --- /dev/null +++ b/src/data/bedrock/BedrockDataFiles.php @@ -0,0 +1,50 @@ +server->broadcastPackets($this->hasSpawned, [SetActorMotionPacket::create($this->id, $this->getMotion())]); } + public function getGravity() : float{ + return $this->gravity; + } + + public function setGravity(float $gravity) : void{ + Utils::checkFloatNotInfOrNaN("gravity", $gravity); + $this->gravity = $gravity; + } + public function hasGravity() : bool{ return $this->gravityEnabled; } 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); diff --git a/src/network/mcpe/ChunkRequestTask.php b/src/network/mcpe/ChunkRequestTask.php index f66614099..b1d18eb2b 100644 --- a/src/network/mcpe/ChunkRequestTask.php +++ b/src/network/mcpe/ChunkRequestTask.php @@ -33,6 +33,7 @@ use pocketmine\network\mcpe\protocol\serializer\PacketSerializerContext; use pocketmine\network\mcpe\protocol\types\ChunkPosition; use pocketmine\network\mcpe\serializer\ChunkSerializer; use pocketmine\scheduler\AsyncTask; +use pocketmine\utils\BinaryStream; use pocketmine\world\format\Chunk; use pocketmine\world\format\io\FastChunkSerializer; @@ -72,7 +73,10 @@ class ChunkRequestTask extends AsyncTask{ $subCount = ChunkSerializer::getSubChunkCount($chunk) + ChunkSerializer::LOWER_PADDING_SIZE; $encoderContext = new PacketSerializerContext(GlobalItemTypeDictionary::getInstance()->getDictionary()); $payload = ChunkSerializer::serializeFullChunk($chunk, RuntimeBlockMapping::getInstance(), $encoderContext, $this->tiles); - $this->setResult($this->compressor->compress(PacketBatch::fromPackets($encoderContext, LevelChunkPacket::create(new ChunkPosition($this->chunkX, $this->chunkZ), $subCount, false, null, $payload))->getBuffer())); + + $stream = new BinaryStream(); + PacketBatch::encodePackets($stream, $encoderContext, [LevelChunkPacket::create(new ChunkPosition($this->chunkX, $this->chunkZ), $subCount, false, null, $payload)]); + $this->setResult($this->compressor->compress($stream->getBuffer())); } public function onError() : void{ diff --git a/src/network/mcpe/NetworkSession.php b/src/network/mcpe/NetworkSession.php index ebc943960..04512e349 100644 --- a/src/network/mcpe/NetworkSession.php +++ b/src/network/mcpe/NetworkSession.php @@ -120,6 +120,7 @@ use pocketmine\player\XboxLivePlayerInfo; use pocketmine\Server; use pocketmine\timings\Timings; use pocketmine\utils\AssumptionFailedError; +use pocketmine\utils\BinaryStream; use pocketmine\utils\ObjectSet; use pocketmine\utils\TextFormat; use pocketmine\utils\Utils; @@ -176,7 +177,7 @@ class NetworkSession{ private ?EncryptionContext $cipher = null; - /** @var Packet[] */ + /** @var string[] */ private array $sendBuffer = []; /** @@ -358,56 +359,67 @@ class NetworkSession{ return; } - if($this->incomingPacketBatchBudget <= 0){ - $this->updatePacketBudget(); - if($this->incomingPacketBatchBudget <= 0){ - throw new PacketHandlingException("Receiving packets too fast"); - } - } - $this->incomingPacketBatchBudget--; - - if($this->cipher !== null){ - Timings::$playerNetworkReceiveDecrypt->startTiming(); - try{ - $payload = $this->cipher->decrypt($payload); - }catch(DecryptionException $e){ - $this->logger->debug("Encrypted packet: " . base64_encode($payload)); - throw PacketHandlingException::wrap($e, "Packet decryption error"); - }finally{ - Timings::$playerNetworkReceiveDecrypt->stopTiming(); - } - } - - if($this->enableCompression){ - Timings::$playerNetworkReceiveDecompress->startTiming(); - try{ - $decompressed = $this->compressor->decompress($payload); - }catch(DecompressionException $e){ - $this->logger->debug("Failed to decompress packet: " . base64_encode($payload)); - throw PacketHandlingException::wrap($e, "Compressed packet batch decode error"); - }finally{ - Timings::$playerNetworkReceiveDecompress->stopTiming(); - } - }else{ - $decompressed = $payload; - } - + Timings::$playerNetworkReceive->startTiming(); try{ - foreach((new PacketBatch($decompressed))->getPackets($this->packetPool, $this->packetSerializerContext, 1300) as [$packet, $buffer]){ - if($packet === null){ - $this->logger->debug("Unknown packet: " . base64_encode($buffer)); - throw new PacketHandlingException("Unknown packet received"); - } - try{ - $this->handleDataPacket($packet, $buffer); - }catch(PacketHandlingException $e){ - $this->logger->debug($packet->getName() . ": " . base64_encode($buffer)); - throw PacketHandlingException::wrap($e, "Error processing " . $packet->getName()); + if($this->incomingPacketBatchBudget <= 0){ + $this->updatePacketBudget(); + if($this->incomingPacketBatchBudget <= 0){ + throw new PacketHandlingException("Receiving packets too fast"); } } - }catch(PacketDecodeException $e){ - $this->logger->logException($e); - throw PacketHandlingException::wrap($e, "Packet batch decode error"); + $this->incomingPacketBatchBudget--; + + if($this->cipher !== null){ + Timings::$playerNetworkReceiveDecrypt->startTiming(); + try{ + $payload = $this->cipher->decrypt($payload); + }catch(DecryptionException $e){ + $this->logger->debug("Encrypted packet: " . base64_encode($payload)); + throw PacketHandlingException::wrap($e, "Packet decryption error"); + }finally{ + Timings::$playerNetworkReceiveDecrypt->stopTiming(); + } + } + + if($this->enableCompression){ + Timings::$playerNetworkReceiveDecompress->startTiming(); + try{ + $decompressed = $this->compressor->decompress($payload); + }catch(DecompressionException $e){ + $this->logger->debug("Failed to decompress packet: " . base64_encode($payload)); + throw PacketHandlingException::wrap($e, "Compressed packet batch decode error"); + }finally{ + Timings::$playerNetworkReceiveDecompress->stopTiming(); + } + }else{ + $decompressed = $payload; + } + + try{ + $stream = new BinaryStream($decompressed); + $count = 0; + foreach(PacketBatch::decodeRaw($stream) as $buffer){ + if(++$count > 1300){ + throw new PacketHandlingException("Too many packets in batch"); + } + $packet = $this->packetPool->getPacket($buffer); + if($packet === null){ + $this->logger->debug("Unknown packet: " . base64_encode($buffer)); + throw new PacketHandlingException("Unknown packet received"); + } + try{ + $this->handleDataPacket($packet, $buffer); + }catch(PacketHandlingException $e){ + $this->logger->debug($packet->getName() . ": " . base64_encode($buffer)); + throw PacketHandlingException::wrap($e, "Error processing " . $packet->getName()); + } + } + }catch(PacketDecodeException $e){ + $this->logger->logException($e); + throw PacketHandlingException::wrap($e, "Packet batch decode error"); + } + }finally{ + Timings::$playerNetworkReceive->stopTiming(); } } @@ -469,7 +481,7 @@ class NetworkSession{ return false; } - $this->addToSendBuffer($packet); + $this->addToSendBuffer(self::encodePacketTimed(PacketSerializer::encoder($this->packetSerializerContext), $packet)); if($immediate){ $this->flushSendBuffer(true); } @@ -483,34 +495,49 @@ class NetworkSession{ /** * @internal */ - public function addToSendBuffer(ClientboundPacket $packet) : void{ - $timings = Timings::getSendDataPacketTimings($packet); + public static function encodePacketTimed(PacketSerializer $serializer, ClientboundPacket $packet) : string{ + $timings = Timings::getEncodeDataPacketTimings($packet); $timings->startTiming(); try{ - $this->sendBuffer[] = $packet; + $packet->encode($serializer); + return $serializer->getBuffer(); }finally{ $timings->stopTiming(); } } + /** + * @internal + */ + public function addToSendBuffer(string $buffer) : void{ + $this->sendBuffer[] = $buffer; + } + private function flushSendBuffer(bool $immediate = false) : void{ if(count($this->sendBuffer) > 0){ - $syncMode = null; //automatic - if($immediate){ - $syncMode = true; - }elseif($this->forceAsyncCompression){ - $syncMode = false; - } + Timings::$playerNetworkSend->startTiming(); + try{ + $syncMode = null; //automatic + if($immediate){ + $syncMode = true; + }elseif($this->forceAsyncCompression){ + $syncMode = false; + } - $batch = PacketBatch::fromPackets($this->packetSerializerContext, ...$this->sendBuffer); - if($this->enableCompression){ - $promise = $this->server->prepareBatch($batch, $this->compressor, $syncMode); - }else{ - $promise = new CompressBatchPromise(); - $promise->resolve($batch->getBuffer()); + $stream = new BinaryStream(); + PacketBatch::encodeRaw($stream, $this->sendBuffer); + + if($this->enableCompression){ + $promise = $this->server->prepareBatch(new PacketBatch($stream->getBuffer()), $this->compressor, $syncMode, Timings::$playerNetworkSendCompressSessionBuffer); + }else{ + $promise = new CompressBatchPromise(); + $promise->resolve($stream->getBuffer()); + } + $this->sendBuffer = []; + $this->queueCompressedNoBufferFlush($promise, $immediate); + }finally{ + Timings::$playerNetworkSend->stopTiming(); } - $this->sendBuffer = []; - $this->queueCompressedNoBufferFlush($promise, $immediate); } } @@ -523,35 +550,45 @@ class NetworkSession{ } public function queueCompressed(CompressBatchPromise $payload, bool $immediate = false) : void{ - $this->flushSendBuffer($immediate); //Maintain ordering if possible - $this->queueCompressedNoBufferFlush($payload, $immediate); + Timings::$playerNetworkSend->startTiming(); + try{ + $this->flushSendBuffer($immediate); //Maintain ordering if possible + $this->queueCompressedNoBufferFlush($payload, $immediate); + }finally{ + Timings::$playerNetworkSend->stopTiming(); + } } private function queueCompressedNoBufferFlush(CompressBatchPromise $payload, bool $immediate = false) : void{ - if($immediate){ - //Skips all queues - $this->sendEncoded($payload->getResult(), true); - }else{ - $this->compressedQueue->enqueue($payload); - $payload->onResolve(function(CompressBatchPromise $payload) : void{ - if($this->connected && $this->compressedQueue->bottom() === $payload){ - $this->compressedQueue->dequeue(); //result unused - $this->sendEncoded($payload->getResult()); + Timings::$playerNetworkSend->startTiming(); + try{ + if($immediate){ + //Skips all queues + $this->sendEncoded($payload->getResult(), true); + }else{ + $this->compressedQueue->enqueue($payload); + $payload->onResolve(function(CompressBatchPromise $payload) : void{ + if($this->connected && $this->compressedQueue->bottom() === $payload){ + $this->compressedQueue->dequeue(); //result unused + $this->sendEncoded($payload->getResult()); - while(!$this->compressedQueue->isEmpty()){ - /** @var CompressBatchPromise $current */ - $current = $this->compressedQueue->bottom(); - if($current->hasResult()){ - $this->compressedQueue->dequeue(); + while(!$this->compressedQueue->isEmpty()){ + /** @var CompressBatchPromise $current */ + $current = $this->compressedQueue->bottom(); + if($current->hasResult()){ + $this->compressedQueue->dequeue(); - $this->sendEncoded($current->getResult()); - }else{ - //can't send any more queued until this one is ready - break; + $this->sendEncoded($current->getResult()); + }else{ + //can't send any more queued until this one is ready + break; + } } } - } - }); + }); + } + }finally{ + Timings::$playerNetworkSend->stopTiming(); } } diff --git a/src/network/mcpe/StandardPacketBroadcaster.php b/src/network/mcpe/StandardPacketBroadcaster.php index 9cba70739..f1009d23b 100644 --- a/src/network/mcpe/StandardPacketBroadcaster.php +++ b/src/network/mcpe/StandardPacketBroadcaster.php @@ -24,21 +24,34 @@ declare(strict_types=1); namespace pocketmine\network\mcpe; use pocketmine\network\mcpe\protocol\serializer\PacketBatch; +use pocketmine\network\mcpe\protocol\serializer\PacketSerializer; use pocketmine\Server; +use pocketmine\timings\Timings; +use pocketmine\utils\BinaryStream; +use function count; use function spl_object_id; +use function strlen; final class StandardPacketBroadcaster implements PacketBroadcaster{ public function __construct(private Server $server){} public function broadcastPackets(array $recipients, array $packets) : void{ - $buffers = []; + $packetBufferTotalLengths = []; + $packetBuffers = []; $compressors = []; + /** @var NetworkSession[][][] $targetMap */ $targetMap = []; foreach($recipients as $recipient){ $serializerContext = $recipient->getPacketSerializerContext(); $bufferId = spl_object_id($serializerContext); - if(!isset($buffers[$bufferId])){ - $buffers[$bufferId] = PacketBatch::fromPackets($serializerContext, ...$packets); + if(!isset($packetBuffers[$bufferId])){ + $packetBufferTotalLengths[$bufferId] = 0; + $packetBuffers[$bufferId] = []; + foreach($packets as $packet){ + $buffer = NetworkSession::encodePacketTimed(PacketSerializer::encoder($serializerContext), $packet); + $packetBufferTotalLengths[$bufferId] += strlen($buffer); + $packetBuffers[$bufferId][] = $buffer; + } } //TODO: different compressors might be compatible, it might not be necessary to split them up by object @@ -49,20 +62,26 @@ final class StandardPacketBroadcaster implements PacketBroadcaster{ } foreach($targetMap as $bufferId => $compressorMap){ - $buffer = $buffers[$bufferId]; foreach($compressorMap as $compressorId => $compressorTargets){ $compressor = $compressors[$compressorId]; - if(!$compressor->willCompress($buffer->getBuffer())){ - foreach($compressorTargets as $target){ - foreach($packets as $pk){ - $target->addToSendBuffer($pk); - } - } - }else{ - $promise = $this->server->prepareBatch($buffer, $compressor); + + $threshold = $compressor->getCompressionThreshold(); + if(count($compressorTargets) > 1 && $threshold !== null && $packetBufferTotalLengths[$bufferId] >= $threshold){ + //do not prepare shared batch unless we're sure it will be compressed + $stream = new BinaryStream(); + PacketBatch::encodeRaw($stream, $packetBuffers[$bufferId]); + $batchBuffer = $stream->getBuffer(); + + $promise = $this->server->prepareBatch(new PacketBatch($batchBuffer), $compressor, timings: Timings::$playerNetworkSendCompressBroadcast); foreach($compressorTargets as $target){ $target->queueCompressed($promise); } + }else{ + foreach($compressorTargets as $target){ + foreach($packetBuffers[$bufferId] as $packetBuffer){ + $target->addToSendBuffer($packetBuffer); + } + } } } } diff --git a/src/network/mcpe/cache/StaticPacketCache.php b/src/network/mcpe/cache/StaticPacketCache.php index 4cf878fc3..88a522600 100644 --- a/src/network/mcpe/cache/StaticPacketCache.php +++ b/src/network/mcpe/cache/StaticPacketCache.php @@ -23,13 +23,13 @@ declare(strict_types=1); namespace pocketmine\network\mcpe\cache; +use pocketmine\data\bedrock\BedrockDataFiles; use pocketmine\network\mcpe\protocol\AvailableActorIdentifiersPacket; use pocketmine\network\mcpe\protocol\BiomeDefinitionListPacket; use pocketmine\network\mcpe\protocol\serializer\NetworkNbtSerializer; use pocketmine\network\mcpe\protocol\types\CacheableNbt; use pocketmine\utils\Filesystem; use pocketmine\utils\SingletonTrait; -use Symfony\Component\Filesystem\Path; class StaticPacketCache{ use SingletonTrait; @@ -43,8 +43,8 @@ class StaticPacketCache{ private static function make() : self{ return new self( - BiomeDefinitionListPacket::create(self::loadCompoundFromFile(Path::join(\pocketmine\BEDROCK_DATA_PATH, 'biome_definitions.nbt'))), - AvailableActorIdentifiersPacket::create(self::loadCompoundFromFile(Path::join(\pocketmine\BEDROCK_DATA_PATH, 'entity_identifiers.nbt'))) + BiomeDefinitionListPacket::create(self::loadCompoundFromFile(BedrockDataFiles::BIOME_DEFINITIONS_NBT)), + AvailableActorIdentifiersPacket::create(self::loadCompoundFromFile(BedrockDataFiles::ENTITY_IDENTIFIERS_NBT)) ); } diff --git a/src/network/mcpe/compression/Compressor.php b/src/network/mcpe/compression/Compressor.php index e15c7eb85..a299f4eb0 100644 --- a/src/network/mcpe/compression/Compressor.php +++ b/src/network/mcpe/compression/Compressor.php @@ -24,13 +24,20 @@ declare(strict_types=1); namespace pocketmine\network\mcpe\compression; interface Compressor{ - - public function willCompress(string $data) : bool; - /** * @throws DecompressionException */ public function decompress(string $payload) : string; public function compress(string $payload) : string; + + /** + * Returns the minimum size of packet batch that the compressor will attempt to compress. + * + * The compressor's output **MUST** still be valid input for the decompressor even if the compressor input is + * below this threshold. + * However, it may choose to use a cheaper compression option (e.g. zlib level 0, which simply wraps the data and + * doesn't attempt to compress it) to avoid wasting CPU time. + */ + public function getCompressionThreshold() : ?int; } diff --git a/src/network/mcpe/compression/ZlibCompressor.php b/src/network/mcpe/compression/ZlibCompressor.php index a9ad2718e..317a64451 100644 --- a/src/network/mcpe/compression/ZlibCompressor.php +++ b/src/network/mcpe/compression/ZlibCompressor.php @@ -48,12 +48,12 @@ final class ZlibCompressor implements Compressor{ public function __construct( private int $level, - private int $minCompressionSize, + private ?int $minCompressionSize, private int $maxDecompressionSize ){} - public function willCompress(string $data) : bool{ - return $this->minCompressionSize > -1 && strlen($data) >= $this->minCompressionSize; + public function getCompressionThreshold() : ?int{ + return $this->minCompressionSize; } /** @@ -72,11 +72,12 @@ final class ZlibCompressor implements Compressor{ } public function compress(string $payload) : string{ + $compressible = $this->minCompressionSize !== null && strlen($payload) >= $this->minCompressionSize; if(function_exists('libdeflate_deflate_compress')){ - return $this->willCompress($payload) ? + return $compressible ? libdeflate_deflate_compress($payload, $this->level) : self::zlib_encode($payload, 0); } - return self::zlib_encode($payload, $this->willCompress($payload) ? $this->level : 0); + return self::zlib_encode($payload, $compressible ? $this->level : 0); } } diff --git a/src/network/mcpe/convert/GlobalItemTypeDictionary.php b/src/network/mcpe/convert/GlobalItemTypeDictionary.php index 0795d2fde..a5a00235d 100644 --- a/src/network/mcpe/convert/GlobalItemTypeDictionary.php +++ b/src/network/mcpe/convert/GlobalItemTypeDictionary.php @@ -23,12 +23,12 @@ declare(strict_types=1); namespace pocketmine\network\mcpe\convert; +use pocketmine\data\bedrock\BedrockDataFiles; use pocketmine\network\mcpe\protocol\serializer\ItemTypeDictionary; use pocketmine\network\mcpe\protocol\types\ItemTypeEntry; use pocketmine\utils\AssumptionFailedError; use pocketmine\utils\Filesystem; use pocketmine\utils\SingletonTrait; -use Symfony\Component\Filesystem\Path; use function is_array; use function is_bool; use function is_int; @@ -39,7 +39,7 @@ final class GlobalItemTypeDictionary{ use SingletonTrait; private static function make() : self{ - $data = Filesystem::fileGetContents(Path::join(\pocketmine\BEDROCK_DATA_PATH, 'required_item_list.json')); + $data = Filesystem::fileGetContents(BedrockDataFiles::REQUIRED_ITEM_LIST_JSON); $table = json_decode($data, true); if(!is_array($table)){ throw new AssumptionFailedError("Invalid item list format"); diff --git a/src/network/mcpe/convert/ItemTranslator.php b/src/network/mcpe/convert/ItemTranslator.php index 375199601..8342db61f 100644 --- a/src/network/mcpe/convert/ItemTranslator.php +++ b/src/network/mcpe/convert/ItemTranslator.php @@ -23,13 +23,13 @@ declare(strict_types=1); namespace pocketmine\network\mcpe\convert; +use pocketmine\data\bedrock\BedrockDataFiles; use pocketmine\data\bedrock\LegacyItemIdToStringIdMap; use pocketmine\network\mcpe\protocol\serializer\ItemTypeDictionary; use pocketmine\utils\AssumptionFailedError; use pocketmine\utils\Filesystem; use pocketmine\utils\SingletonTrait; use pocketmine\utils\Utils; -use Symfony\Component\Filesystem\Path; use function array_key_exists; use function is_array; use function is_numeric; @@ -67,7 +67,7 @@ final class ItemTranslator{ private array $complexNetToCoreMapping = []; private static function make() : self{ - $data = Filesystem::fileGetContents(Path::join(\pocketmine\BEDROCK_DATA_PATH, 'r16_to_current_item_map.json')); + $data = Filesystem::fileGetContents(BedrockDataFiles::R16_TO_CURRENT_ITEM_MAP_JSON); $json = json_decode($data, true); if(!is_array($json) || !isset($json["simple"], $json["complex"]) || !is_array($json["simple"]) || !is_array($json["complex"])){ throw new AssumptionFailedError("Invalid item table format"); diff --git a/src/network/mcpe/convert/RuntimeBlockMapping.php b/src/network/mcpe/convert/RuntimeBlockMapping.php index 53b146be6..b7c78a20b 100644 --- a/src/network/mcpe/convert/RuntimeBlockMapping.php +++ b/src/network/mcpe/convert/RuntimeBlockMapping.php @@ -25,6 +25,7 @@ namespace pocketmine\network\mcpe\convert; use pocketmine\block\Block; use pocketmine\block\BlockLegacyIds; +use pocketmine\data\bedrock\BedrockDataFiles; use pocketmine\data\bedrock\LegacyBlockIdToStringIdMap; use pocketmine\nbt\tag\CompoundTag; use pocketmine\network\mcpe\protocol\serializer\NetworkNbtSerializer; @@ -32,7 +33,6 @@ use pocketmine\network\mcpe\protocol\serializer\PacketSerializer; use pocketmine\network\mcpe\protocol\serializer\PacketSerializerContext; use pocketmine\utils\Filesystem; use pocketmine\utils\SingletonTrait; -use Symfony\Component\Filesystem\Path; /** * @internal @@ -49,8 +49,8 @@ final class RuntimeBlockMapping{ private static function make() : self{ return new self( - Path::join(\pocketmine\BEDROCK_DATA_PATH, "canonical_block_states.nbt"), - Path::join(\pocketmine\BEDROCK_DATA_PATH, "r12_to_current_block_map.bin") + BedrockDataFiles::CANONICAL_BLOCK_STATES_NBT, + BedrockDataFiles::R12_TO_CURRENT_BLOCK_MAP_BIN ); } diff --git a/src/timings/Timings.php b/src/timings/Timings.php index 1f8426969..1faab0ea1 100644 --- a/src/timings/Timings.php +++ b/src/timings/Timings.php @@ -52,6 +52,10 @@ abstract class Timings{ public static $playerNetworkSend; /** @var TimingsHandler */ public static $playerNetworkSendCompress; + + public static TimingsHandler $playerNetworkSendCompressBroadcast; + public static TimingsHandler $playerNetworkSendCompressSessionBuffer; + /** @var TimingsHandler */ public static $playerNetworkSendEncrypt; /** @var TimingsHandler */ @@ -127,6 +131,9 @@ abstract class Timings{ /** @var TimingsHandler[] */ private static array $packetHandleTimingMap = []; + /** @var TimingsHandler[] */ + private static array $packetEncodeTimingMap = []; + /** @var TimingsHandler[] */ public static $packetSendTimingMap = []; /** @var TimingsHandler[] */ @@ -150,6 +157,8 @@ abstract class Timings{ self::$playerNetworkSend = new TimingsHandler("Player Network Send"); self::$playerNetworkSendCompress = new TimingsHandler(self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "Player Network Send - Compression", self::$playerNetworkSend); + self::$playerNetworkSendCompressBroadcast = new TimingsHandler(self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "Player Network Send - Compression (Broadcast)", self::$playerNetworkSendCompress); + self::$playerNetworkSendCompressSessionBuffer = new TimingsHandler(self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "Player Network Send - Compression (Session Buffer)", self::$playerNetworkSendCompress); self::$playerNetworkSendEncrypt = new TimingsHandler(self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "Player Network Send - Encryption", self::$playerNetworkSend); self::$playerNetworkReceive = new TimingsHandler("Player Network Receive"); @@ -231,8 +240,7 @@ abstract class Timings{ public static function getReceiveDataPacketTimings(ServerboundPacket $pk) : TimingsHandler{ $pid = $pk->pid(); if(!isset(self::$packetReceiveTimingMap[$pid])){ - $pkName = (new \ReflectionClass($pk))->getShortName(); - self::$packetReceiveTimingMap[$pid] = new TimingsHandler(self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "receivePacket - " . $pkName . " [0x" . dechex($pid) . "]", self::$playerNetworkReceive); + self::$packetReceiveTimingMap[$pid] = new TimingsHandler(self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "receivePacket - " . $pk->getName() . " [0x" . dechex($pid) . "]", self::$playerNetworkReceive); } return self::$packetReceiveTimingMap[$pid]; @@ -254,11 +262,18 @@ abstract class Timings{ ); } + public static function getEncodeDataPacketTimings(ClientboundPacket $pk) : TimingsHandler{ + $pid = $pk->pid(); + return self::$packetEncodeTimingMap[$pid] ??= new TimingsHandler( + self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "Encode - " . $pk->getName() . " [0x" . dechex($pid) . "]", + self::getSendDataPacketTimings($pk) + ); + } + public static function getSendDataPacketTimings(ClientboundPacket $pk) : TimingsHandler{ $pid = $pk->pid(); if(!isset(self::$packetSendTimingMap[$pid])){ - $pkName = (new \ReflectionClass($pk))->getShortName(); - self::$packetSendTimingMap[$pid] = new TimingsHandler(self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "sendPacket - " . $pkName . " [0x" . dechex($pid) . "]", self::$playerNetworkSend); + self::$packetSendTimingMap[$pid] = new TimingsHandler(self::INCLUDED_BY_OTHER_TIMINGS_PREFIX . "sendPacket - " . $pk->getName() . " [0x" . dechex($pid) . "]", self::$playerNetworkSend); } return self::$packetSendTimingMap[$pid]; 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);